/* Infos block */
.infos-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  margin-bottom: 6rem;
}
.infos-block .infos-head h2 {
  font-family: "Lwiw", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0a3d40;
  text-align: left;
  margin: 0;
}
.infos-block .infos-head .kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a3d40;
  margin: 12px 0 0;
  line-height: 1.4;
}
.infos-block .infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.infos-block .infos-col .label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a3d40;
  margin: 0 0 32px;
  line-height: 1.3;
}
.infos-block .infos-col .hours {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 32px;
  row-gap: 14px;
  margin: 0;
  color: #0a3d40;
}
.infos-block .infos-col .hours > div {
  display: contents;
}
.infos-block .infos-col .hours dt {
  font-family: "Cormorant Garamond", "Lwiw", Georgia, serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.1;
}
.infos-block .infos-col .hours dd {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0;
  align-self: center;
}
.infos-block .infos-col .contact-line {
  font-family: "Cormorant Garamond", "Lwiw", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0 0 18px;
  color: #0a3d40;
}
.infos-block .infos-col .contact-line:last-child {
  margin-bottom: 0;
}
.infos-block .infos-col .contact-line a {
  display: inline;
  margin: 0;
  color: #0a3d40;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.infos-block .infos-col .contact-line a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .infos-block { padding: 0 24px; }
  .infos-block .infos-head h2 { font-size: 4.5rem; }
  .infos-block .infos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .infos-block .infos-col .hours dt { font-size: 1.8rem; }
  .infos-block .infos-col .hours dd { font-size: 1.2rem; }
  .infos-block .infos-col .contact-line { font-size: 1.8rem; }
}

/* Layout 03 — Horizontal Bands (Lido Lupo menu) */

.L3 {
  --bg: #ffe600;
  --bg-2: #ffd500;
  --ink: #0a3d40;
  --ink-soft: #1f6a6d;
  --accent: #1fb3b8;
  --accent-2: #e85a2a;
  --rule: #0a3d40;

  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: "Lwiw", "Cormorant Garamond", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

.L3 * { box-sizing: border-box; }

.L3 .hero {
  padding: 56px 56px 44px;
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.L3 .hero .meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 30%, transparent);
}

.L3 .hero h1 {
  font-family: "Lwiw", "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 128px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 22px 0 6px;
  text-align: left;
  color: var(--bg);
}

.L3 .hero .tag {
  font-family: "Cormorant Garamond", "Lwiw", Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.04em;
  opacity: 1;
  max-width: 520px;
  margin: 0;
  line-height: 1.3em;
}

.L3 .hero .waves {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 280px;
  height: 280px;
  opacity: 0.18;
  pointer-events: none;
  color: currentColor;
}

.L3 .band .footnote {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}

.L3 .band {
  padding: 28px 56px 30px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.L3 .band:nth-of-type(even) { background: var(--bg-2); }

.L3 .band .label { position: sticky; top: 10px; }

.L3 .band h2 {
  font-family: "Lwiw", "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.0;
  margin: 0;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  text-align: left;
  color: var(--ink);
}

.L3 .band .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  display: block;
  margin-bottom: 6px;
}

.L3 .band .kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  margin-bottom: 0;
}

.L3 .band ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 4px;
}

.L3 .band ul.single { grid-template-columns: 1fr; }

.L3 .band li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}

.L3 .band .item-name {
  font-family: "Cormorant Garamond", "Lwiw", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.L3 .band .dots {
  border-bottom: 1.5px dotted var(--ink-soft);
  transform: translateY(-4px);
  min-width: 14px;
}

.L3 .band .price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--ink);
  white-space: nowrap;
}

.L3 .band .item-desc {
  display: block;
  font-family: "Cormorant Garamond", "Lwiw", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 1px;
  grid-column: 1 / -1;
  line-height: 1.3;
}

.L3 .foot {
  padding: 20px 56px;
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Reset link styling within L3 (override global) */
.L3 a {
  display: inline;
  margin: 0;
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .L3 .hero { padding: 36px 28px 28px; }
  .L3 .hero h1 { font-size: 72px; }
  .L3 .hero .tag { font-size: 15px; }

  .L3 .band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 28px 26px;
  }
  .L3 .band .label { position: static; }
  .L3 .band ul { grid-template-columns: 1fr; }

  .L3 .foot {
    padding: 16px 28px;
    flex-direction: column;
    gap: 6px;
  }
}
