/* ============================================================
   RIGI Restaurant & Steakhouse — Arth
   Palette derived from the logo: charcoal #111110, brass gold,
   warm off-white. Typography: Cinzel (display) + Lora (text).
   ============================================================ */

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-normal-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-normal-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-italic-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}

:root {
  --bg: #111110;
  --bg-soft: #171511;
  --bg-card: #15130f;
  --ink: #e9dfcf;
  --ink-dim: #b5a88f;
  --gold: #c2a061;
  --gold-bright: #d8b877;
  --gold-dim: #8a6f45;
  --line: rgba(194, 160, 97, 0.28);
  --line-soft: rgba(194, 160, 97, 0.14);
  --red: #9e2b28;
  --display: 'Cinzel', 'Times New Roman', serif;
  --text: 'Lora', Georgia, serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--ink); }

::selection { background: var(--gold-dim); color: #fff; }

/* ---------- ornament: thin gold rule with diamond (from the logo) ---------- */

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 1.6rem auto;
  width: min(320px, 60%);
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
.ornament--left { justify-content: flex-start; margin-left: 0; }
.ornament--left::before { display: none; }

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.kicker {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.lead {
  font-size: clamp(20px, 2.1vw, 23px);
  line-height: 1.7;
  color: var(--ink);
}

p + p { margin-top: 1.1em; }

.muted { color: var(--ink-dim); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--pad);
  height: 92px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(17, 17, 16, 0.94);
  border-bottom-color: var(--line-soft);
  height: 72px;
}

.brand {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  transition: top 0.35s ease;
}
.brand img {
  display: block;
  width: auto;
  height: clamp(96px, 11vw, 148px);
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55));
  transition: height 0.35s ease;
}
.site-header.is-scrolled .brand { top: 8px; }
.site-header.is-scrolled .brand img { height: 56px; }

.site-nav { display: flex; flex: 1; justify-content: space-between; align-items: center; }
.site-nav__group { display: flex; gap: clamp(1rem, 2.6vw, 2.4rem); align-items: center; }
.site-nav a {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--gold-bright); }
.site-nav a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 55;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav-toggle:hover { background: var(--gold); border-color: var(--gold); color: #14110b; }

@media (max-width: 560px) {
  .brand img { height: 98px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 52;
    width: min(78vw, 340px);
    background: #14120e;
    border-left: 1px solid var(--line-soft);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__group { flex-direction: column; gap: 2.2rem; }
  .site-nav a { font-size: 17px; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86);
}
.hero::after {
  /* functional scrim for text legibility */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,16,0.55) 0%, rgba(17,17,16,0.28) 45%, rgba(17,17,16,0.88) 100%);
}
.hero__inner { padding: 140px var(--pad) 90px; max-width: 900px; }

.hero h1 {
  font-size: clamp(27px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.18;
}
@media (max-width: 480px) {
  .hero h1 { font-size: 25px; letter-spacing: 0.04em; }
}
.hero .lead { max-width: 620px; margin: 1.4rem auto 0; color: var(--ink); }

.hero__cta {
  margin-top: 2.6rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  place-items: end start;
  isolation: isolate;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: -10% 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,16,0.5) 0%, rgba(17,17,16,0.2) 45%, rgba(17,17,16,0.92) 100%);
}
.page-hero__inner { padding: 160px var(--pad) 64px; max-width: 1000px; }
.page-hero h1 { font-size: clamp(28px, 4.4vw, 58px); line-height: 1.15; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-dim);
  padding: 17px 34px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #14110b; }
.btn--solid { background: var(--gold); border-color: var(--gold); color: #14110b; }
.btn--solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #14110b; }

/* ---------- layout blocks ---------- */

.section { padding: clamp(4.5rem, 9vw, 8.5rem) var(--pad); }
.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.section--flush { padding-bottom: 0; }
.section--soft { background: var(--bg-soft); }

.wrap { max-width: 1240px; margin: 0 auto; }
.wrap--narrow { max-width: 820px; }

.section-title {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}
.section-title--xl { font-size: clamp(34px, 5vw, 72px); }

/* two-column editorial */
.editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.editorial--flip > :first-child { order: 2; }
.editorial figure { position: relative; }
.editorial figure img { width: 100%; height: auto; border: 1px solid var(--line-soft); }
.editorial figcaption {
  font-size: 15px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  margin-top: 0.9rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial--flip > :first-child { order: 0; }
}

/* facts strip — capacity figures under the editorial */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
}
@media (max-width: 720px) { .facts { grid-template-columns: 1fr; } }

.fact {
  background: var(--bg);
  padding: clamp(1.8rem, 3vw, 2.8rem) clamp(1.2rem, 2vw, 2rem);
  text-align: center;
}
.fact__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.fact__label {
  display: block;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-dim);
}

/* full-bleed image band */
.band {
  position: relative;
  min-height: 68svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.band__media { position: absolute; inset: -14% 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 17, 16, 0.45);
}
.band__inner { padding: 4rem var(--pad); max-width: 1180px; }
/* German compounds are long: at 72px with 0.14em tracking inside an 880px
   column, "Schnell, ehrlich, wahrschaft" broke into three lines and ate the
   whole viewport. Wider column, calmer tracking and a lower cap keep it to one
   or two lines; `balance` splits those two evenly instead of leaving one word
   stranded. */
.band h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0.07em;
  text-wrap: balance;
}
@media (max-width: 480px) { .band h2 { font-size: 26px; letter-spacing: 0.05em; } }
.band .lead { margin-top: 1.2rem; }

/* cuts / cards row */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 900px) { .trio { grid-template-columns: 1fr; } }

.cut-card { display: block; color: var(--ink); }
.cut-card figure { overflow: hidden; border: 1px solid var(--line-soft); }
.cut-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.cut-card:hover img { transform: scale(1.045); }
.cut-card h3 {
  font-size: 23px;
  margin-top: 1.3rem;
  letter-spacing: 0.12em;
}
.cut-card p { color: var(--ink-dim); font-size: 17px; margin-top: 0.5rem; }
.cut-card .more {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cut-card:hover .more { color: var(--gold-bright); }

/* full-bleed photo mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mosaic figure { overflow: hidden; margin: 0; }
.mosaic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.mosaic figure:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .mosaic { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mosaic { grid-template-columns: 1fr; } }

/* services grid */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (max-width: 1000px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

.service {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 3.2rem);
}
.service .icon { width: 56px; height: 56px; color: var(--gold); margin-bottom: 1.4rem; }
.service .icon svg { width: 100%; height: 100%; }
.service h3 { font-size: 21px; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.service p { color: var(--ink-dim); font-size: 17.5px; }

/* ---------- menu (Essen & Trinken) ---------- */

.menu-section { margin-top: clamp(3rem, 6vw, 5rem); }
.menu-section:first-child { margin-top: 0; }
.menu-section > h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 0.4rem;
}
.menu-note { color: var(--ink-dim); font-style: italic; font-size: 17px; margin-bottom: 2rem; }

.menu-list { list-style: none; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.4rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.06em;
}
.menu-item .name small {
  font-family: var(--text);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-left: 0.6rem;
}
.menu-item .desc { grid-column: 1; color: var(--ink-dim); font-size: 17px; line-height: 1.6; }
.menu-item .price {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold-bright);
  white-space: nowrap;
}

.menu-sub + .menu-sub { margin-top: 2.4rem; }
.menu-sub h3 {
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 6rem);
}
@media (max-width: 860px) { .menu-cols { grid-template-columns: 1fr; } }

/* ---------- voucher ---------- */

.voucher-steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
@media (max-width: 860px) { .voucher-steps { grid-template-columns: 1fr; } }
.voucher-step { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.voucher-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.voucher-step h3 { font-size: 20px; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.voucher-step p { color: var(--ink-dim); font-size: 17.5px; }

/* ---------- faq ---------- */

.faq-list { border-top: 1px solid var(--line-soft); }

.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--gold-bright); }

.faq-item summary .faq-icon {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.faq-item summary .faq-icon::before { width: 12px; height: 1px; }
.faq-item summary .faq-icon::after {
  width: 1px;
  height: 12px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item[open] summary .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer { max-width: 680px; padding: 0 0 1.7rem; color: var(--ink-dim); font-size: 17.5px; line-height: 1.7; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-block h3 {
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.contact-block + .contact-block { margin-top: 2.4rem; }
.contact-block a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-block a:hover { color: var(--gold-bright); }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.65rem 0; border-bottom: 1px solid var(--line-soft); font-size: 18px; }
.hours td:last-child { text-align: right; color: var(--ink); white-space: nowrap; }
.hours td:first-child { color: var(--ink-dim); }
.hours tr:last-child td { border-bottom: none; }
.hours td small { display: block; font-size: 15px; color: var(--gold); letter-spacing: 0.04em; }

.contact-form label {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.4rem 0 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--text);
  font-size: 18px;
  padding: 14px 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button { margin-top: 1.8rem; cursor: pointer; }

.map-band { position: relative; }
.map-band iframe {
  display: block;
  width: 100%;
  height: min(70svh, 560px);
  border: 0;
  filter: grayscale(0.35) contrast(1.02);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.2rem;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer p, .site-footer li { color: var(--ink-dim); font-size: 17px; line-height: 1.8; }
.site-footer ul { list-style: none; }
.site-footer li a { color: var(--ink-dim); }
.site-footer li a:hover { color: var(--gold-bright); }
.footer-brand { margin-bottom: 1.1rem; }
.footer-brand img { display: block; width: auto; height: 132px; }
.footer-bottom {
  max-width: 1240px;
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--ink-dim);
  font-size: 15.5px;
}
.footer-bottom a { color: var(--gold); }

/* ---------- reveal (GSAP adds motion; safe without JS) ---------- */

.reveal { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- tabs (Speisekarte / Getränke) ---------- */

.tabs__bar {
  display: flex;
  gap: clamp(1.3rem, 3vw, 2.6rem);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs__bar::-webkit-scrollbar { display: none; }
.tabs__bar button {
  flex: 0 0 auto;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-dim);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0 0 0.85rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs__bar button:hover { color: var(--ink); }
.tabs__bar button[aria-selected="true"] {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}
.tabs__panel { padding-top: clamp(2.2rem, 5vw, 3.4rem); }
.tabs__panel[hidden] { display: none; }
.tabs__panel > .menu-section:first-child { margin-top: 0; }

/* ---------- Weinkarte ---------- */

.wine-group + .wine-group { margin-top: clamp(3rem, 6vw, 4.5rem); }
.wine-group > h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: 0.1em;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.wine-units {
  display: flex;
  gap: 1.1rem;
  font-family: var(--text);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.wine-units i, .wine__price i {
  font-style: normal;
  display: inline-block;
  min-width: 68px;
  text-align: right;
}
@media (max-width: 560px) { .wine-units { display: none; } }

.wine {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0 clamp(1.1rem, 3vw, 2rem);
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.wine:last-child { border-bottom: none; }
.wine__shot { grid-column: 1; grid-row: 1 / span 3; width: 78px; height: auto; display: block; align-self: start; }
.wine__head, .wine__origin, .wine__note { grid-column: 2; }
.wine__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1.4rem;
  align-items: baseline;
}
.wine__name { font-family: var(--display); font-size: 20px; letter-spacing: 0.05em; }
.wine__name span {
  font-family: var(--text);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}
.wine__price {
  display: flex;
  gap: 1.1rem;
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold-bright);
  white-space: nowrap;
}
.wine__grape { grid-column: 1; color: var(--ink-dim); font-size: 16px; }
.wine__origin { font-size: 16px; margin-top: 0.45rem; }
.wine__origin b { color: var(--gold); font-weight: 400; letter-spacing: 0.04em; }
.wine__note { color: var(--ink-dim); font-size: 16px; line-height: 1.62; margin-top: 0.5rem; }
@media (max-width: 560px) {
  .wine { grid-template-columns: 58px 1fr; }
  .wine__shot { width: 58px; }
  .wine__head { grid-template-columns: 1fr; }
  .wine__price { margin-top: 0.4rem; }
  .wine__price i { min-width: 0; text-align: left; }
  .wine__price i:not(:empty)::after { content: ' CHF'; font-size: 13px; color: var(--ink-dim); }
}

/* ---------- button rows / stitched tab sections ---------- */

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn-row--center { justify-content: center; }
.section--tabs-head { padding-bottom: 0; }
.section--tabs-tail { padding-top: 0; }

/* ---------- Neueroeffnung splash (rendered instead of the site) ---------- */

.soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.soon__media { position: absolute; inset: 0; z-index: -2; }
.soon__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.86); }
.soon::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,16,0.55) 0%, rgba(17,17,16,0.28) 45%, rgba(17,17,16,0.88) 100%);
}
.soon__inner { padding: clamp(1.8rem, 4.1vh, 4.5rem) var(--pad) clamp(2rem, 4.1vh, 5rem); max-width: 740px; }
.soon__logo { width: auto; height: clamp(76px, 13vh, 132px); margin: 0 auto clamp(1rem, 2.4vh, 1.8rem); }
.soon__kicker {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.soon h1 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-wrap: balance;
  font-size: clamp(25px, min(4.6vw, 6.4vh), 58px);
}
.soon__ornament {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  width: min(320px, 60%);
  margin: clamp(0.8rem, 1.6vh, 1.4rem) auto;
}
.soon__ornament::before, .soon__ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.soon__ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.soon__ornament span { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: none; }
.soon__lead {
  max-width: 620px;
  margin: clamp(0.8rem, 1.6vh, 1.3rem) auto 0;
  font-size: clamp(17px, 2.3vh, 21px);
  line-height: 1.62;
}
.soon__date {
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 25px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: clamp(1rem, 2.1vh, 1.7rem);
}
.soon__cta { margin-top: clamp(1.3rem, 2.8vh, 2.2rem); line-height: 1; }
.soon__contact { margin-top: clamp(1.2rem, 2.6vh, 2rem); font-size: 17px; line-height: 1.95; color: var(--ink-dim); }
.soon__credit { margin-top: clamp(1.3rem, 2.8vh, 2.4rem); font-size: 14px; line-height: 1.6; color: var(--ink-dim); letter-spacing: 0.06em; }
@media (max-height: 700px) {
  .soon__inner { padding-top: 1.5rem; padding-bottom: 2rem; }
  .soon__logo { height: 62px; margin-bottom: 0.8rem; }
  .soon__kicker { font-size: 13px; margin-bottom: 0.7rem; }
  .soon__ornament { margin: 0.7rem auto; }
  .soon__lead { margin-top: 0.7rem; font-size: 16px; line-height: 1.55; }
  .soon__date { font-size: 17px; margin-top: 1rem; }
  .soon__cta { margin-top: 1.2rem; }
  .soon__contact { margin-top: 1rem; font-size: 16px; line-height: 1.7; }
  .soon__credit { margin-top: 1.1rem; }
}
