/* =============================================================
   La Cava Winery – Stylesheet
   Toskana-Palette: Weinrot, Creme, Olive, Gold
   ============================================================= */

:root {
  --wine:        #6e1423;   /* tiefes Weinrot (Logo) */
  --wine-dark:   #4a0d18;
  --terracotta:  #b5532a;
  --olive:       #5b6236;
  --gold:        #b2904c;
  --gold-soft:   rgba(178,144,76,0.45);
  --cream:       #f9f5ee;
  --cream-2:     #f0e9da;
  --ink:         #2a241e;
  --muted:       #6e6358;
  --white:       #ffffff;
  --paper:       #fffdf8;
  --line:        rgba(44,38,32,0.09);

  --font-display: "Bodoni MT", "Bodoni Moda", "Didot", "Cormorant Garamond", Georgia, serif;
  --font-head: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --radius: 2px;
  --shadow: 0 22px 60px -26px rgba(40,20,15,0.28);
  --shadow-soft: 0 14px 38px -22px rgba(40,20,15,0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
body.is-loaded { opacity: 1; }

::selection { background: rgba(178,144,76,0.28); color: var(--wine-dark); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: #c4b596; border-radius: 6px; border: 3px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.14; margin: 0 0 0.45em; letter-spacing: 0.004em; font-feature-settings: "liga" 1, "dlig" 1, "swsh" 1; }
h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); color: var(--wine); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1.15em; }
a { color: var(--wine); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.kicker::after { content: ""; width: 38px; height: 1px; background: var(--gold-soft); }
.section-head .kicker { justify-content: center; }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-block;
  padding: 0.95em 2.2em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  border: 1px solid var(--wine);
  transition: all 0.3s var(--ease);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.6rem; }
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: var(--wine-dark); border-color: var(--wine-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: var(--paper); color: var(--wine); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--white); }

/* ----------------------- Header ----------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 244, 236, 0.82);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, border-color 0.4s;
  padding: 1rem 0;
}
.site-header.is-scrolled { background: rgba(248,244,236,0.97); box-shadow: 0 12px 34px -20px rgba(40,20,15,0.5); border-color: var(--line); padding: 0.6rem 0; }
/* Header spannt fast über die volle Breite – Logo nah am Rand */
.site-header .container { width: auto; max-width: none; margin: 0; padding: 0 clamp(0.9rem, 2vw, 1.6rem); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; }

/* Zentrierte Kopfzeile: Ortsangabe */
.header-tagline {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: "Bodoni BT", "Bodoni MT", "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 0.8rem; letter-spacing: 0.14em; color: #161616;
  white-space: nowrap; pointer-events: none;
}
@media (max-width: 820px) { .header-tagline { display: none; } }

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { width: 50px; height: 50px; transition: width 0.4s, height 0.4s; }
.is-scrolled .brand img { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: #161616; letter-spacing: 0.2em; text-transform: uppercase;
}

/* Navigation immer als ausklappbares Overlay (nur Menü-Symbol sichtbar) */
.nav-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(360px, 86vw);
  background: var(--cream); display: flex; flex-direction: column; align-items: flex-start;
  list-style: none; margin: 0; padding: 7rem 2.6rem 2.6rem; gap: 1.5rem; transform: translateX(100%);
  transition: transform 0.45s var(--ease); box-shadow: -24px 0 60px -30px rgba(40,20,15,0.5);
  overflow-y: auto; z-index: 90; border-left: 1px solid var(--line);
}
.nav-menu.is-open { transform: translateX(0); }
.nav-menu a {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.16em; position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-menu a:hover { color: var(--wine); }
.nav-menu a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; gap: 0.15rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.2rem; background: rgba(255,255,255,0.6); }
.lang-switch button {
  border: none; background: transparent; cursor: pointer;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--muted); padding: 0.35em 0.75em; border-radius: 999px; transition: all 0.25s;
}
.lang-switch button:hover { color: var(--wine); }
.lang-switch button.is-active { background: var(--wine); color: var(--white); }

.nav-toggle {
  display: block; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--wine); margin: 5px 0; transition: 0.3s; }

/* ----------------------- Hero ----------------------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; color: var(--white); text-align: center;
  background: linear-gradient(rgba(40,20,15,0.45), rgba(40,20,15,0.55)),
              url("../images/SGRF6182-scaled.jpg") center/cover no-repeat;
}
/* Start-Hero (Homepage): Panorama-Foto des Weinguts.
   Die Datei hero-villa.jpg in assets/images/ ablegen – siehe README. */
/* Start-Hero: komplettes Panorama als Vollbild – volle Breite, ohne Rahmen/Beschnitt */
/* Hero unter den fixierten Header schieben, damit der obere Bildrand (Himmel & Meer) sichtbar bleibt */
#hero.hero-full { min-height: 0; height: auto; display: block; background: none; padding-top: 92px; }
.hero-full::before { content: none; }
/* Hero: volle Breite, komplettes Bild – der ganze obere Rand (Himmel & Meer) bleibt sichtbar */
.hero-full .hero-img { display: block; width: 100%; height: auto; object-position: center top; }
.hero-full .hero-content {
  position: absolute; inset: 0; z-index: 2; max-width: none; margin: 0; padding: 2rem 1.2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-full::after {
  content: ""; position: absolute; top: 92px; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(rgba(30,16,12,0.20), rgba(30,16,12,0.42));
}
.hero-full .scroll-hint { z-index: 2; }
/* Auf kleinen Bildschirmen Mindesthöhe + Beschnitt, damit der Text Platz hat */
@media (max-width: 700px) {
  #hero.hero-full { min-height: 80vh; }
  .hero-full .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(18,9,7,0.42) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 7rem 1rem 4rem; }
.hero .kicker { color: var(--gold); justify-content: center; }
.hero h1 { color: var(--white); font-weight: 500; letter-spacing: 0.015em; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero p {
  font-family: var(--font-head); font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-style: italic;
  font-weight: 400; line-height: 1.5; color: rgba(255,255,255,0.94); margin: 0 auto 2.4rem; max-width: 620px;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px;
}
.scroll-hint::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,0.8); border-radius: 2px;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* Kürzerer Hero für Unterseiten */
.hero.hero-sub { min-height: 62vh; }
.hero.hero-sub .hero-content { padding-top: 8rem; padding-bottom: 3rem; }

/* ----------------------- Sections ----------------------- */
.section { padding: 7.5rem 0; }
.section.alt { background: var(--cream-2); }
.section.dark { background: var(--wine); color: var(--cream); }
.section.dark h2 { color: var(--white); }
.section.dark .kicker { color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .kicker { justify-content: center; }
/* Logo-Ornament: Mandala-Marke flankiert von feinen Goldlinien */
.section-head h2::after {
  content: ""; display: block; width: 210px; height: 30px; margin: 1.3rem auto 0;
  background:
    url("../images/LAC-logo-CMYK-rot-rz-rund.png") center / 30px 30px no-repeat,
    linear-gradient(to right,
      var(--gold-soft) 0, var(--gold-soft) calc(50% - 26px),
      transparent calc(50% - 26px), transparent calc(50% + 26px),
      var(--gold-soft) calc(50% + 26px), var(--gold-soft) 100%) left center / 100% 1px no-repeat;
}
/* Auf dunklen Abschnitten schlichte helle Linie (Logo-Rot würde untergehen) */
.section.dark .section-head h2::after {
  width: 56px; height: 1px; background: rgba(255,255,255,0.4);
}
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 1.4rem; }
.section.dark .section-head p { color: rgba(255,255,255,0.85); }

/* Two-column layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text h2 { margin-bottom: 0.7rem; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }

.quote {
  font-family: var(--font-head); font-size: clamp(1.6rem, 2.6vw, 2rem); font-style: italic;
  font-weight: 400; line-height: 1.4;
  color: var(--wine); border-left: 1px solid var(--gold-soft); padding-left: 1.5rem; margin: 2rem 0;
}
.section.dark .quote { color: var(--white); border-color: var(--gold); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 2.4rem 2rem;
  border: 1px solid var(--line); border-top: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--wine); margin-bottom: 0.3rem; }
.card .price { font-family: var(--font-head); font-weight: 600; color: var(--terracotta); margin-bottom: 0.2rem; font-size: 1.35rem; }
.card .card-meta {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--olive);
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

.feature { background: var(--paper); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.feature h3 { color: var(--wine); font-size: 1.3rem; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* Gallery – füllt immer die volle Breite (auto-fit streckt vorhandene Bilder) */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 3rem; }
.gallery img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; transition: transform 0.5s var(--ease), filter 0.4s; }
.gallery img:hover { transform: scale(1.02); filter: brightness(1.04) saturate(1.05); }

.hours { background: var(--paper); border-radius: var(--radius); padding: 1.8rem 2rem; border: 1px solid var(--line); box-shadow: var(--shadow-soft); margin-bottom: 3rem; }
.hours h3 { color: var(--wine); margin-bottom: 0.6rem; }
.hours ul { list-style: none; margin: 0; padding: 0; }
.hours li { padding: 0.35rem 0; border-bottom: 1px dashed var(--cream-2); color: var(--muted); }
.hours li:last-child { border-bottom: none; }

/* Winzer-Raster (Enoteca-Partner) */
.winery-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.winery-grid li {
  background: var(--paper); border-radius: var(--radius);
  border: 1px solid var(--line); border-left: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-head); font-size: 1.45rem; color: var(--wine);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.winery-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.winery-grid a { display: block; padding: 1.5rem 1.7rem; color: inherit; text-decoration: none; }
.winery-grid a:hover { color: var(--terracotta); }
.winery-grid a[target="_blank"]::after {
  content: "\2197"; font-family: var(--font-body); font-size: 0.82rem; color: var(--gold);
  margin-left: 0.5em; vertical-align: 0.18em; transition: transform 0.2s var(--ease);
}
.winery-grid li:hover a[target="_blank"]::after { color: var(--terracotta); }

/* Events / Veranstaltungen */
.event-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.event-filters button {
  border: 1px solid var(--wine); background: transparent; color: var(--wine);
  padding: 0.6em 1.4em; border-radius: 999px; cursor: pointer; font-weight: 600;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; transition: all 0.25s;
}
.event-filters button:hover { background: var(--cream-2); }
.event-filters button.is-active { background: var(--wine); color: var(--white); }

.event-list { display: grid; gap: 1.4rem; max-width: 860px; margin: 0 auto; }
.event-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.8rem; align-items: start;
  background: var(--paper); border-radius: var(--radius); padding: 1.9rem 2.1rem;
  border: 1px solid var(--line); border-left: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-soft); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-date {
  font-family: var(--font-head); color: var(--wine); font-size: 1.15rem; line-height: 1.3;
  font-weight: 600; border-right: 1px solid var(--cream-2); padding-right: 1rem;
}
.event-body h3 { color: var(--ink); margin-bottom: 0.4rem; }
.event-body p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.event-badge {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; padding: 0.25em 0.7em; border-radius: 999px; margin-bottom: 0.7rem;
}
.event-badge.lacava { background: var(--wine); color: var(--white); }
.event-badge.enoteca { background: var(--olive); color: var(--white); }
.event-empty { text-align: center; color: var(--muted); padding: 2rem; }

@media (max-width: 560px) {
  .event-card { grid-template-columns: 1fr; gap: 0.6rem; }
  .event-date { border-right: none; border-bottom: 1px solid var(--cream-2); padding: 0 0 0.6rem; }
}

/* Weine */
.wine-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.wine-card {
  background: var(--paper); border: 1px solid var(--line); border-top: 1px solid var(--gold-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wine-photo {
  position: relative; height: 320px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(var(--cream), var(--cream-2)); overflow: hidden;
}
.wine-photo .ph-logo { width: 88px; height: 88px; opacity: 0.16; }
.wine-photo img:not(.ph-logo) {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1.6rem;
}
.wine-body { padding: 1.9rem 1.8rem 2.1rem; }
.wine-body h3 { color: var(--wine); margin-bottom: 0.1rem; }
.wine-cat {
  display: block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem;
  font-weight: 600; color: var(--gold); margin-bottom: 0.9rem;
}
.wine-tag {
  font-family: var(--font-head); font-style: italic; font-size: 1.2rem; color: var(--terracotta);
  line-height: 1.35; margin-bottom: 1.2rem;
}
.wine-spec { font-size: 0.92rem; color: var(--muted); margin: 0 0 0.7rem; }
.wine-spec:last-child { margin-bottom: 0; }
.wine-spec strong { color: var(--ink); font-weight: 600; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.6rem 1.8rem; max-width: 980px; margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  position: relative; width: 168px; height: 168px; margin: 0 auto 1.2rem;
  border-radius: 50%; overflow: hidden; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-photo .monogram {
  font-family: var(--font-head); font-size: 2.7rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.04em;
}
.team-card h3 { color: var(--wine); margin-bottom: 0.2rem; font-size: 1.45rem; }
.team-role {
  color: var(--olive); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.13em; font-weight: 600; margin: 0;
}

/* Logo section */
.logo-feature { text-align: center; }
.logo-feature img { width: 200px; margin: 0 auto 2rem; }

/* ----------------------- Contact ----------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info p { margin: 0; }
.contact-block { margin-bottom: 1.6rem; }
.contact-block .label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: var(--gold); font-weight: 700; display: block; margin-bottom: 0.3rem; }
.contact-person { font-style: italic; color: var(--muted); margin-bottom: 2rem; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--wine); color: var(--white);
  transition: transform 0.2s, background 0.2s;
}
.social-links a:hover { transform: translateY(-3px); background: var(--terracotta); color: var(--white); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

/* Map consent box */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.map-consent { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 340px; background: var(--cream-2); padding: 2rem; flex-direction: column; gap: 1rem; }
.map-consent p { color: var(--muted); max-width: 320px; margin: 0; font-size: 0.95rem; }
.map-wrap iframe { width: 100%; min-height: 340px; display: block; }

/* ----------------------- Footer ----------------------- */
.site-footer { background: var(--wine-dark); color: rgba(255,255,255,0.85); padding: 4.5rem 0 2rem; }
.footer-top { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); letter-spacing: 0.2em; text-transform: uppercase; }
.site-footer p { color: rgba(255,255,255,0.7); max-width: 340px; font-size: 0.95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--gold); }

/* ----------------------- Lightbox ----------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; background: rgba(20,10,8,0.92); padding: 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }

/* ----------------------- Legal pages ----------------------- */
.legal { padding: 8rem 0 5rem; max-width: 820px; }
.legal h1 { color: var(--wine); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal p { color: var(--ink); }
.legal .back-link { display: inline-block; margin-top: 2.5rem; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 920px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-media { order: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 4.5rem 0; }
  .hero-cta { flex-direction: column; }
  .header-actions .brand-name { display: none; }
}

/* ----------------------- Scroll-Reveal ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}
