/* ============================================================
   COURTSIDE KITCHEN — v2 Stylesheet
   Rebuilt to match v2 print advertisement
   Dreamweaver Split/Design View containment fixes included
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --cream-light: #FAF8F3;
  --cream: #F5F0E8;
  --cream-warm: #EDE7DA;
  --cream-deep: #E4DDCC;

  --gold: #C5A55A;
  --gold-muted: #A89050;
  --gold-deep: #9F8444;
  --gold-pale: #D4BD7A;
  --gold-bright: #D4B96A;

  --taupe: #907E56;
  --taupe-dark: #6E6040;
  --taupe-muted: #B5A88A;

  --charcoal: #2C2C2C;
  --charcoal-deep: #1A1A1A;
  --charcoal-light: #4A4A4A;
  --warm-gray: #8A8578;
  --warm-gray-lt: #B8B3A9;

  --border: #D4CFC4;
  --border-light: #E8E3D9;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1280px;
  --section-v: 100px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --dur-fast: 0.28s;
  --dur-med: 0.55s;
  --dur-slow: 0.9s;
}

/* ── RESET / DREAMWEAVER CONTAINMENT FIX ───────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── SHARED ─────────────────────────────────────────────────── */
.section-inner {
  width: min(var(--max-w), calc(100% - 96px));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ornament-line {
  width: 44px;
  height: 1px;
  background: var(--taupe-muted);
}

.ornament-line--lg {
  width: 56px;
}

.ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--taupe);
}

.ornament-dot--lg {
  width: 7px;
  height: 7px;
  background: var(--gold-deep);
}

.ornament--gold .ornament-line {
  background: var(--gold-pale);
}

.ornament--gold .ornament-dot {
  background: var(--gold);
}

.ornament--light .ornament-line {
  background: rgba(255,255,255,0.25);
}

.ornament--light .ornament-dot {
  background: rgba(255,255,255,0.55);
}

/* 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);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.32s; }
.reveal-d4 { transition-delay: 0.48s; }
.reveal-d5 { transition-delay: 0.64s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.btn--taupe {
  color: var(--taupe-dark);
  border: 1px solid var(--taupe);
}

.btn--taupe:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: rgba(110, 96, 64, 0.06);
}

.btn--gold {
  color: var(--gold);
  border: 1px solid var(--gold-muted);
}

.btn--gold:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(197, 165, 90, 0.08);
}

.btn--light {
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--light:hover {
  color: white;
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

.btn-arrow {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Standalone reservation button */
.reservation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  background: transparent;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.reservation-button:hover {
  background: rgba(197, 165, 90, 0.08);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .section-inner {
    width: min(100% - 48px, var(--max-w));
  }

  :root {
    --section-v: 64px;
  }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.site-nav.is-scrolled {
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-logo img {
  height: 36px;
  width: auto;
  max-width: 200px;
  transition: height var(--dur-med) var(--ease-out), filter var(--dur-med);
}

.site-nav:not(.is-scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--dur-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.site-nav:not(.is-scrolled) .nav-links a {
  color: rgba(255,255,255,0.72);
}

.site-nav:not(.is-scrolled) .nav-links a:hover {
  color: white;
}

.site-nav.is-scrolled .nav-links a {
  color: var(--charcoal-light);
}

.site-nav.is-scrolled .nav-links a:hover {
  color: var(--charcoal);
}

.nav-cta {
  padding: 8px 20px;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}

.site-nav:not(.is-scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.site-nav.is-scrolled .nav-cta {
  color: var(--taupe-dark);
  border-color: var(--taupe);
}

.site-nav.is-scrolled .nav-cta:hover {
  background: var(--taupe);
  color: var(--cream-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}

.site-nav:not(.is-scrolled) .nav-hamburger span {
  background: white;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--charcoal-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream-light);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast);
}

.nav-drawer a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .site-nav {
    padding: 0 24px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
}

.hero-header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--cream-light);
  text-align: center;
  padding: 88px 24px 28px;
  flex-shrink: 0;
}

.hero-header-logo {
  width: min(760px, 88vw);
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.hero-header .ornament {
  margin-bottom: 12px;
}

.hero-opening {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-festival {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero-photo {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 32%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20,16,10,0.70) 0%, rgba(20,16,10,0.20) 40%, transparent 70%),
    linear-gradient(to right, rgba(20,16,10,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 2;
  width: min(var(--max-w), calc(100% - 96px));
  padding: 0 0 52px;
}

.hero-cta {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 1.2s forwards;
}

.hero-scroll span {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out 1.4s infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-header {
    padding: 78px 16px 22px;
  }

  .hero-header-logo {
    width: min(520px, 88vw);
    max-height: 110px;
  }

  .hero-photo {
    min-height: 460px;
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-bottom: 40px;
  }

  .hero-scroll {
    right: 24px;
    bottom: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════════════════════ */
.intro {
  background: var(--cream-light);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  inset: -80px;
  background-image: url('../images/olive-branch-decor.svg');
  background-size: 300px auto;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

.intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--cream-light), transparent 16%, transparent 84%, var(--cream-light)),
    linear-gradient(to bottom, var(--cream-light), transparent 14%, transparent 86%, var(--cream-light));
  pointer-events: none;
}

.intro .section-inner {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 96px));
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.intro-subtitle {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.intro-tagline {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.intro-distinction {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .intro .section-inner {
    width: min(100% - 48px, 860px);
  }
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCE TILES
   ══════════════════════════════════════════════════════════════ */
.experiences {
  background: var(--charcoal-deep);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

.experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/olive-branch-decor.svg');
  background-size: 420px auto;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
}

.experiences::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(197, 165, 90, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(197, 165, 90, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.experiences .section-inner {
  position: relative;
  z-index: 1;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.exp-tile {
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px;
  transition: transform 0.6s var(--ease-in-out), box-shadow 0.6s var(--ease-in-out);
}

.exp-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.exp-tile-inner {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.exp-tile-logo-wrap {
  width: 100%;
  max-width: 220px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.exp-tile-logo {
  width: auto;
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
}

.exp-tile-logo-wrap svg {
  width: 180px;
  height: auto;
}

.exp-tile-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.45;
}

.exp-tile .ornament {
  margin-bottom: 18px;
}

.exp-tile-copy {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,248,243,0.58);
  margin-bottom: 28px;
  flex-grow: 1;
  max-width: 340px;
}

@media (max-width: 1024px) {
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
  }

  .exp-tile-inner {
    padding: 36px 24px 28px;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESERVATIONS
   ══════════════════════════════════════════════════════════════ */
.reservations {
  background: var(--cream);
  padding: var(--section-v) 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, transparent, var(--gold), transparent) 1;
  position: relative;
  overflow: hidden;
}

.reservations-inner {
  width: min(860px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.reservations-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.reservations-sub {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 48px;
}

.opentable-container {
  background: var(--white);
  border: 1px solid var(--border);
  min-height: 220px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.opentable-placeholder {
  text-align: center;
}

.opentable-placeholder svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  opacity: 0.3;
}

.opentable-placeholder p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray-lt);
}

.opentable-container iframe {
  width: 100%;
  max-width: 100%;
  border: none;
  min-height: 280px;
}

@media (max-width: 768px) {
  .reservations-inner {
    width: min(100% - 48px, 860px);
  }

  .opentable-container {
    padding: 24px 16px;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal-deep);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1) opacity(0.6);
  margin-bottom: 18px;
  transition: filter var(--dur-fast);
}

.footer-brand-logo:hover {
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(250,248,243,0.40);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(159,132,68,0.12);
}

.footer-social svg {
  width: 13px;
  height: 13px;
  fill: rgba(255,255,255,0.50);
  transition: fill var(--dur-fast);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

.footer-col-title {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe-muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(250,248,243,0.45);
  transition: color var(--dur-fast);
}

.footer-nav a:hover {
  color: var(--cream-light);
}

.footer-contact-item {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(250,248,243,0.45);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact-item strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-muted);
  margin-bottom: 3px;
}

.footer-contact-item a {
  transition: color var(--dur-fast);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: color var(--dur-fast);
}

.footer-legal a:hover {
  color: var(--taupe-muted);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream-light);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-top: 3px solid var(--gold);
  padding: 0;
  transform: translateY(20px);
  transition: transform var(--dur-med) var(--ease-out);
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal-header {
  background: var(--charcoal);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream-light);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
  cursor: pointer;
}

.modal-close:hover {
  color: white;
}

.modal-body {
  padding: 36px;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
  margin-bottom: 12px;
}

.modal-body .modal-effective {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.modal-footer-info {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.7;
}