/* =========================================================================
   LE SAINT JEAN — CAP-FERRAT · 1916
   Single CSS file — tokens / reset / base / components / pages / responsive
   Standard 10k€ — niveau Sirenuse / Mirazur / Cala di Volpe
   ========================================================================= */

/* ---------- @font-face : self-hosted ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-300italic.woff2') format('woff2-variations'),
       url('../fonts/fraunces-300italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-400.woff2') format('woff2-variations'),
       url('../fonts/fraunces-400.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2-variations'),
       url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-variable.woff2') format('woff2-variations'),
       url('../fonts/inter-tight-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Palette Côte d'Azur soleil */
  --c-sand:        #F4ECDD;
  --c-ivory:       #FAF6EC;
  --c-ink:         #1A2B3F;
  --c-ink-deep:    #0F1A2A;
  --c-blue:        #2E5879;
  --c-ocre:        #C97B3F;
  --c-ocre-dark:   #A8602D;
  --c-sepia:       #8A6A3A;
  --c-rule:        #D9CCB2;
  --c-muted:       #5A6678;

  /* Typo */
  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-tight:   'Inter Tight', 'Inter', sans-serif;

  /* Layout */
  --container:   1320px;
  --gutter:      clamp(1.5rem, 5vw, 5rem);
  --section-pad: clamp(5rem, 10vw, 10rem);
  --radius:      0;

  /* Animations */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-slow:  900ms;
  --dur-med:   400ms;
}

/* ---------- RESET MINIMAL ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- BASE ---------- */
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 3rem; /* leave room for fixed .demo-banner so footer/content not overlapped */
}
@media (min-width: 1024px) { body { font-size: 1.0625rem; } }

::selection { background: var(--c-ink); color: var(--c-sand); }

:focus-visible {
  outline: 2px solid var(--c-ocre);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--c-ink); color: var(--c-sand);
  padding: .75rem 1.25rem; font-family: var(--f-tight);
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

/* ---------- TYPOGRAPHIE ---------- */
.eyebrow {
  font-family: var(--f-tight);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 1.5rem;
}

.h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--c-ink);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--c-ink);
}

.h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
  color: var(--c-ink);
}

.lead {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.5;
  color: var(--c-ink);
  max-width: 56ch;
}

.meta {
  font-family: var(--f-tight);
  font-weight: 500;
  font-size: .8125rem;
  letter-spacing: .08em;
  color: var(--c-muted);
}

.numeral {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: .9;
  color: var(--c-sepia);
  letter-spacing: -.04em;
}

p { max-width: 64ch; }
p + p { margin-top: 1.25rem; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section--ivory { background: var(--c-ivory); }
.section--ink   { background: var(--c-ink-deep); color: var(--c-sand); }
.section--ink .h1, .section--ink .h2, .section--ink .h3 { color: var(--c-sand); }
.section--ink .eyebrow { color: var(--c-ocre); }

/* ---------- HEADER NAV ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
  transition: background var(--dur-med) ease, padding var(--dur-med) ease, border-color var(--dur-med) ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 236, 221, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: .875rem 0;
  border-bottom-color: var(--c-rule);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 1.75rem; color: var(--c-ink);
  letter-spacing: -.01em;
}
.brand .brand-sub {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .625rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--c-blue);
  display: none;
}
@media (min-width: 1024px) { .brand .brand-sub { display: inline; } }

.nav-primary { display: none; }
@media (min-width: 1024px) {
  .nav-primary {
    display: flex; gap: 2.25rem; align-items: center;
  }
  .nav-primary a {
    font-family: var(--f-tight); font-weight: 500;
    font-size: .8125rem; letter-spacing: .18em;
    text-transform: uppercase; color: var(--c-ink);
    padding: .5rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur-med) ease, color var(--dur-med) ease;
  }
  .nav-primary a:hover,
  .nav-primary a[aria-current="page"] {
    border-bottom-color: var(--c-ocre);
    color: var(--c-blue);
  }
}

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--f-tight); font-weight: 500;
    font-size: .8125rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--c-ink);
    border: 1px solid var(--c-ink);
    padding: .75rem 1.25rem;
    transition: background var(--dur-med) ease, color var(--dur-med) ease;
  }
  .nav-cta:hover { background: var(--c-ink); color: var(--c-sand); }
}

/* Burger mobile */
.nav-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--c-ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--c-sand);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) ease, visibility var(--dur-med) ease;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 2rem; color: var(--c-ink);
}
.nav-mobile .nav-mobile-tel {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--c-ink); padding: .85rem 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .nav-mobile { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--c-ink-deep);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(15, 26, 42, 0.15) 0%,
    rgba(15, 26, 42, 0.1) 40%,
    rgba(15, 26, 42, 0.55) 85%,
    rgba(15, 26, 42, 0.75) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  padding: 8rem 0 4rem;
  width: 100%;
  color: var(--c-sand);
}
@media (min-width: 1024px) {
  .hero__inner { padding: 10rem 0 6rem; }
}
.hero .eyebrow { color: var(--c-sand); opacity: .85; }
.hero .h1 { color: var(--c-sand); margin-bottom: 1.5rem; }
.hero .lead { color: rgba(244,236,221,.92); margin-bottom: 2.5rem; }

/* Hero secondaire (pages internes) */
.hero--page { min-height: 70svh; }
.hero--page .hero__inner { padding: 9rem 0 4rem; }
@media (min-width: 1024px) { .hero--page .hero__inner { padding: 12rem 0 6rem; } }

/* Hero short (contact) */
.hero--short { min-height: 50svh; }

/* ---------- BUTTONS ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.125rem 2rem;
  border: 1px solid transparent;
  transition: background var(--dur-med) ease, color var(--dur-med) ease,
              border-color var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
  text-align: center;
  line-height: 1;
}
.btn--primary {
  background: var(--c-ocre);
  color: var(--c-sand);
  border-color: var(--c-ocre);
}
.btn--primary:hover { background: var(--c-ocre-dark); border-color: var(--c-ocre-dark); }
.btn--ghost {
  border-color: rgba(244,236,221,.55);
  color: var(--c-sand);
}
.btn--ghost:hover { background: var(--c-sand); color: var(--c-ink); border-color: var(--c-sand); }
.btn--ink {
  border-color: var(--c-ink); color: var(--c-ink); background: transparent;
}
.btn--ink:hover { background: var(--c-ink); color: var(--c-sand); }
.btn--large {
  padding: 1.375rem 2.5rem;
  font-size: .875rem;
}
.btn--block { width: 100%; justify-content: center; }

.link-underline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-sand);
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-med) ease;
}
.link-underline:hover { color: var(--c-ocre); }
.section--light .link-underline { color: var(--c-ink); }

.arrow {
  display: inline-block;
  transition: transform var(--dur-med) var(--ease-out);
}
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

/* ---------- CREDIBILITY BAND ---------- */
.credband {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 0;
  padding: 3rem 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  text-align: center;
}
@media (min-width: 768px) {
  .credband { grid-template-columns: repeat(3, 1fr); gap: 0; padding: 3.5rem 0; }
  .credband > * + * { border-left: 1px solid var(--c-rule); }
}
.credband__item {
  padding: 0 1.5rem;
}
.credband__num {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1; color: var(--c-ink);
  display: block; margin-bottom: .5rem;
}
.credband__label {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-blue);
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.section-head__intro { max-width: 56ch; }

/* ---------- PILIERS (4 cards) ---------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 768px)  { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  padding: 2.5rem 1.75rem 2.5rem 0;
  border-bottom: 1px solid var(--c-rule);
}
@media (min-width: 768px) {
  .pillar { padding: 3rem 2rem 3rem 0; border-right: 1px solid var(--c-rule); }
  .pillar:nth-child(2n) { border-right: 0; padding-right: 0; }
}
@media (min-width: 1024px) {
  .pillar { padding: 3rem 2.5rem 3rem 0; }
  .pillar:nth-child(2n) { border-right: 1px solid var(--c-rule); padding-right: 2.5rem; }
  .pillar:nth-child(4n), .pillar:last-child { border-right: 0; padding-right: 0; }
}
.pillar__num {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .25em; color: var(--c-blue);
  margin-bottom: 1rem;
}
.pillar__title {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.375rem; line-height: 1.2; color: var(--c-ink);
  margin-bottom: 1rem;
}
.pillar__text {
  font-size: .9375rem; line-height: 1.65; color: var(--c-muted);
}

/* ---------- TWO-COL EDITORIAL ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .editorial { grid-template-columns: 5fr 6fr; gap: 6rem; }
  .editorial--reverse > :first-child { order: 2; }
}
.editorial__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.editorial__media--landscape img { aspect-ratio: 3/2; }

/* ---------- TIMELINE (Maison) ---------- */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--c-rule);
}
.timeline__item:last-child { border-bottom: 0; padding-bottom: 0; }
@media (min-width: 1024px) {
  .timeline__item {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.timeline__year { padding-right: 1rem; }
.timeline__year .numeral { color: var(--c-sepia); }
.timeline__caption {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 1.25rem; color: var(--c-blue);
  margin-top: 1rem; display: block;
}
.timeline__text p { font-size: 1rem; }
.timeline__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- QUOTE / TÉMOIGNAGE ---------- */
.quote {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.quote__text {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 2rem;
}
.quote__attr {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-blue);
}
.quote::before {
  content: '“';
  display: block;
  font-family: var(--f-display); font-style: italic; font-weight: 200;
  font-size: 6rem; line-height: .5;
  color: var(--c-ocre);
  margin-bottom: 1.5rem;
}

/* ---------- VILLAGE / GEO CARDS ---------- */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--c-rule);
  border: 1px solid var(--c-rule);
}
@media (min-width: 768px) { .geo-grid { grid-template-columns: repeat(3, 1fr); } }
.geo-card {
  background: var(--c-ivory);
  padding: 2.5rem 2rem;
}
.geo-card__dist {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 2.5rem; color: var(--c-blue); line-height: 1;
  margin-bottom: .75rem;
}
.geo-card__name {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-ink); margin-bottom: 1rem;
}
.geo-card__desc { font-size: .9375rem; color: var(--c-muted); }

/* ---------- SIGNATURES / DISHES LIST ---------- */
.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
.dish {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .dish { grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: baseline; padding: 3rem 0; }
}
.dish__name {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.2; color: var(--c-ink);
}
.dish__desc {
  font-size: 1rem; color: var(--c-muted); line-height: 1.7;
}
.menu-note {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 1.125rem; color: var(--c-blue);
  margin-top: 3rem; text-align: center;
}

/* ---------- CAVE — wines by region ---------- */
.region-block { margin-bottom: 5rem; }
.region-block:last-child { margin-bottom: 0; }
.wines {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 768px)  { .wines { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .wines { grid-template-columns: repeat(2, 1fr); gap: 0 4rem; } }
.wine {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--c-rule);
}
.wine__name {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 1.25rem; color: var(--c-ink);
  margin-bottom: .35rem;
}
.wine__name strong { font-weight: 400; font-style: normal; color: var(--c-blue); margin-right: .5rem; }
.wine__desc { font-size: .9375rem; color: var(--c-muted); }

/* ---------- TERRASSE moments ---------- */
.moments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px)  { .moments { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .moments { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.moment img { aspect-ratio: 1/1; object-fit: cover; width: 100%; margin-bottom: 1.5rem; }
.moment__time {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 1.5rem; color: var(--c-blue);
  margin-bottom: .25rem;
}
.moment__title {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .8125rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-ink); margin-bottom: 1rem;
}
.moment__desc { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .gallery { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.gallery__item { overflow: hidden; position: relative; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
  transition: transform 1200ms ease-out, filter 1200ms ease-out;
}
.gallery__item--tall img { aspect-ratio: 3/4; }
.gallery__item--wide img { aspect-ratio: 16/10; }
@media (hover: hover) {
  .gallery__item:hover img { transform: scale(1.04); filter: saturate(1.05); }
}

/* ---------- FORMS ---------- */
.form {
  display: grid;
  gap: 1.75rem;
  max-width: 42rem;
}
.field {
  display: grid; gap: .5rem;
}
.field label {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-blue);
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--c-rule);
  background: var(--c-ivory);
  color: var(--c-ink);
  width: 100%;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-ink);
  background: #fff;
}
.field textarea { min-height: 6rem; resize: vertical; }
.field--inline {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .field--inline { grid-template-columns: 1fr 1fr; } }
.form-note {
  font-size: .8125rem; color: var(--c-muted);
  font-style: italic;
}

/* ---------- CONTACT DATA TABLE ---------- */
.data-table {
  width: 100%;
  border-top: 1px solid var(--c-rule);
}
.data-table tr { border-bottom: 1px solid var(--c-rule); }
.data-table th,
.data-table td {
  padding: 1.25rem 0;
  text-align: left;
  vertical-align: top;
}
.data-table th {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-blue);
  width: 36%;
}
.data-table td {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 1.25rem; color: var(--c-ink);
}
.data-table td a { border-bottom: 1px solid var(--c-rule); padding-bottom: 2px; }
.data-table td a:hover { border-color: var(--c-ocre); color: var(--c-blue); }

/* ---------- MAP ---------- */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-ink-deep);
  color: var(--c-sand);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; } }
.footer-col h4 {
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-ocre);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: .75rem; }
.footer-col a {
  color: rgba(244,236,221,.78);
  font-size: .9375rem;
  transition: color var(--dur-med) ease;
}
.footer-col a:hover { color: var(--c-ocre); }
.footer-tagline {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 1.5rem; line-height: 1.35;
  color: var(--c-sand); max-width: 30ch;
  margin-bottom: 2rem;
}
.footer-brand {
  display: inline-block;
  color: var(--c-sand);
  margin-bottom: 1.25rem;
}
.footer-brand svg { width: 110px; height: 60px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(244,236,221,.12);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem;
  font-size: .8125rem;
  color: rgba(244,236,221,.55);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--c-ocre); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(15, 26, 42, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--c-sand);
  padding: .75rem var(--gutter);
  font-family: var(--f-tight); font-weight: 500;
  font-size: .75rem; letter-spacing: .08em;
  text-align: center;
  border-top: 1px solid rgba(201, 123, 63, 0.4);
}
.demo-banner strong { color: var(--c-ocre); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.divider {
  height: 1px; background: var(--c-rule);
  margin: clamp(3rem, 6vw, 5rem) 0;
  border: 0;
}
.divider--ink { background: rgba(244,236,221,.15); }

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .demo-banner, video { display: none; }
}
