/* ============================================================
   Memories Ave. Banquet Hall — styles.css
   Palette: soft white + mocha/latte + real gold, now paced with
   two deep espresso bands (All-Inclusive, Inquiry) and an
   espresso footer so the page has rhythm: light → dark → light.
   Fonts: system stacks only (no internet needed).
   To use a custom webfont later, add @font-face rules here
   pointing at local .woff2 files in a fonts/ folder, then
   update the two custom properties below.
   ============================================================ */

:root {
  /* --- Color system: white + mocha/latte + gold --- */
  --white: #ffffff;
  --off-white: #fdfbf8;      /* base page background */
  --cream: #faf6ef;          /* warm alt background */
  --latte-100: #f6efe5;      /* lightest latte band */
  --latte-200: #efe4d3;      /* latte band */

  --mocha-300: #d9c3a9;      /* light mocha */
  --mocha-400: #c9a98c;      /* latte-and-cream mocha */
  --mocha-500: #b08d6a;      /* mid mocha */
  --mocha-600: #9a7756;      /* deep mocha */
  --mocha-700: #8a6a4f;      /* deepest mocha for accents */
  --mocha-800: #5f4632;      /* heading mocha (AA on white) */

  --gold-300: #e9d5a8;       /* pale gold — the gold for text on dark */
  --gold-400: #d8bc7e;       /* light gold */
  --gold-500: #c6a15b;       /* the gold — CTAs, dividers */
  --gold-600: #b08a41;       /* deep metallic gold */
  --gold-700: #856327;       /* gold dark enough for text on white (AA) */

  --espresso: #3a2e25;       /* near-black warm text / dark band base */
  --espresso-800: #4a382b;   /* lifted espresso, dark-band gradient top */
  --espresso-900: #2c221b;   /* deepest espresso, footer / band floors */
  --ink: #3a2e25;
  --ink-soft: #6e5d4e;       /* secondary text (AA on white) */

  /* --- Dark-band surfaces (opaque, so contrast stays predictable) --- */
  --card-dark: #483a2d;          /* card on espresso band */
  --card-dark-hi: #52402f;       /* highlighted card on espresso band */
  --hairline-gold: rgba(198, 161, 91, 0.38);
  --hairline-gold-soft: rgba(198, 161, 91, 0.24);

  /* --- Gold metal gradient (borders, rules, edges) --- */
  --gold-metal: linear-gradient(120deg, var(--gold-600), var(--gold-300) 30%, var(--gold-600) 55%, var(--gold-300) 80%, var(--gold-600));
  --gold-rule: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);

  /* --- Type --- */
  --font-display: "Didot", "Bodoni 72", "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* --- Rhythm --- */
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 76px;
  --shadow-soft: 0 10px 40px rgba(95, 70, 50, 0.10);
  --shadow-lift: 0 22px 60px rgba(58, 46, 37, 0.20);
  --shadow-dark: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--mocha-700); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0 0 0.5em; letter-spacing: 0.005em; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.3rem); color: var(--mocha-800); }
h3 { font-size: 1.4rem; color: var(--mocha-800); }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }

/* ---------- Skip to main content ---------- */
.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  background: var(--gold-500);
  color: #2e2313;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-lift);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--espresso);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500) 55%, var(--gold-600));
  color: #2e2313;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 22px rgba(176, 138, 65, 0.35);
}
.btn-gold:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 30px rgba(176, 138, 65, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--mocha-800);
  border-color: rgba(138, 106, 79, 0.5);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-700); background: rgba(198, 161, 91, 0.08); }

.btn-mocha {
  background: var(--mocha-700);
  color: var(--off-white);
  box-shadow: 0 6px 22px rgba(95, 70, 50, 0.28);
}
.btn-mocha:hover { background: var(--mocha-600); }

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--gold-300); } /* eyebrow on dark bands (AA on espresso) */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2::after {
  content: "";
  display: block;
  width: 76px; height: 2px;
  margin: 0.9rem auto 0;
  background: var(--gold-rule);
}
.section-lede { color: var(--ink-soft); font-size: 1.08rem; }
/* Section head sitting on a dark band */
.section-head-light .eyebrow { color: var(--gold-300); }
.section-head-light h2 { color: var(--cream); }
.section-head-light .section-lede { color: var(--mocha-300); }

/* Gold rule under left-aligned column headings */
.why-copy h2::after,
.inquire-copy h2::after,
.contact-info h2::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  margin: 0.85rem 0 0;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

/* ---------- Trust line (social proof) ---------- */
.trust-line {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.02em;
}

/* ============================================================
   HEADER — sits at the top and scrolls away with the page
   ============================================================ */
.site-header {
  position: relative;
  z-index: 100;
  padding: 0.9rem 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--hairline-gold);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--mocha-500), var(--mocha-700));
  border: 1px solid rgba(198, 161, 91, 0.7);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--espresso); letter-spacing: 0.02em; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-700); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--espresso); text-decoration: none; font-size: 0.95rem; font-weight: 500; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.site-nav a:hover { opacity: 1; color: var(--gold-700); }
.site-nav .btn-nav { color: #2e2313; opacity: 1; padding: 0.6rem 1.4rem; }
.site-nav .btn-nav:hover { color: #2e2313; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--espresso); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — light, white and mocha with gold/champagne shimmer,
   now settling into a deeper latte at its base
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 90% 60% at 70% 15%, rgba(201, 169, 140, 0.32), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(198, 161, 91, 0.26), transparent 65%),
    linear-gradient(168deg, var(--white) 0%, var(--off-white) 45%, var(--latte-100) 78%, var(--latte-200) 100%);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; animation: drift 14s ease-in-out infinite alternate; }
.hero-glow-1 { width: 42vw; height: 42vw; min-width: 320px; min-height: 320px; background: radial-gradient(circle, rgba(198, 161, 91, 0.35), transparent 70%); top: -8%; right: -6%; }
.hero-glow-2 { width: 36vw; height: 36vw; min-width: 280px; min-height: 280px; background: radial-gradient(circle, rgba(201, 169, 140, 0.4), transparent 70%); bottom: -10%; left: -8%; animation-delay: -7s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3vw, 2vh) scale(1.12); }
}

/* Soft champagne-shimmer sparkle field, pure CSS (gold on light) */
.hero-sparkles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 28%, rgba(176, 138, 65, 0.55), transparent 100%),
    radial-gradient(1px 1px at 26% 68%, rgba(176, 138, 65, 0.4), transparent 100%),
    radial-gradient(2px 2px at 38% 18%, rgba(198, 161, 91, 0.5), transparent 100%),
    radial-gradient(1px 1px at 52% 52%, rgba(176, 138, 65, 0.35), transparent 100%),
    radial-gradient(1.5px 1.5px at 66% 30%, rgba(176, 138, 65, 0.5), transparent 100%),
    radial-gradient(1px 1px at 74% 74%, rgba(198, 161, 91, 0.4), transparent 100%),
    radial-gradient(2px 2px at 86% 44%, rgba(176, 138, 65, 0.5), transparent 100%),
    radial-gradient(1px 1px at 92% 12%, rgba(176, 138, 65, 0.35), transparent 100%),
    radial-gradient(1.5px 1.5px at 8% 84%, rgba(176, 138, 65, 0.4), transparent 100%),
    radial-gradient(1px 1px at 44% 88%, rgba(198, 161, 91, 0.35), transparent 100%);
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.35; } to { opacity: 0.9; } }

.hero-inner { position: relative; z-index: 1; max-width: 840px; }
.hero-eyebrow {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(2.7rem, 7.5vw, 5.3rem);
  color: var(--espresso);
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-700), var(--mocha-600) 55%, var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 1.6rem;
}
.hero-trust {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 auto 2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(198, 161, 91, 0.5);
  box-shadow: 0 4px 18px rgba(95, 70, 50, 0.08);
  font-size: 0.9rem; font-weight: 600;
  color: var(--mocha-800);
  letter-spacing: 0.02em;
}
.hero-trust .trust-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-note { font-size: 0.9rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(95, 70, 50, 0.35);
  border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold-600); border-radius: 2px;
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   EVENTS (light band #1 — off-white)
   ============================================================ */
.events { background: var(--off-white); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.event-card {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(198, 161, 91, 0.75); box-shadow: var(--shadow-lift); }

/* Featured card wears a true metallic gold frame */
.event-featured {
  grid-column: span 3;
  flex-direction: row;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gold-metal) border-box;
  box-shadow: 0 14px 48px rgba(95, 70, 50, 0.16);
}
.event-featured .event-art { flex: 1 1 52%; min-height: 340px; }
.event-featured .event-body { flex: 1 1 48%; justify-content: center; padding: clamp(1.8rem, 4vw, 3rem); }
.event-featured h3 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }

.event-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mocha-800);
  background: linear-gradient(120deg, var(--gold-300), var(--latte-200));
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.event-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.event-body p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }
.event-link { display: inline-block; align-self: flex-start; padding: 0.7rem 0 0.6rem; font-weight: 700; font-size: 0.92rem; text-decoration: none; color: var(--mocha-700); letter-spacing: 0.02em; }
.event-link:hover { color: var(--gold-700); }
.event-link span { transition: transform 0.2s; display: inline-block; }
.event-link:hover span { transform: translateX(4px); }

/* Event card art — elegant placeholder gradients (swap for photos later)
   All in the mocha / latte / gold family. */
.event-art {
  position: relative;
  min-height: 170px;
  display: grid; place-items: center;
}
.event-art::after {
  /* subtle sheen */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.2) 48%, transparent 60%);
}
/* Gold line-art motif floating on each gradient field */
.event-motif {
  position: relative; z-index: 1;
  width: clamp(64px, 38%, 92px); height: auto;
  color: var(--gold-300);
  filter: drop-shadow(0 3px 12px rgba(58, 46, 37, 0.28));
}
.event-featured .event-motif { width: clamp(96px, 24%, 148px); }
.art-quince      { background: radial-gradient(circle at 30% 25%, rgba(233, 213, 168, 0.7), transparent 55%), radial-gradient(circle at 75% 80%, rgba(198, 161, 91, 0.4), transparent 50%), linear-gradient(150deg, #b08d6a, #8a6a4f 70%, #6e543c); }
.art-wedding     { background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.5), transparent 55%), linear-gradient(160deg, #efe4d3, #d9c3a9 60%, #c9a98c); }
.art-sweet16     { background: radial-gradient(circle at 25% 75%, rgba(233, 213, 168, 0.6), transparent 55%), linear-gradient(140deg, #c6a15b, #b08a41 55%, #8f6b2c); }
.art-bridal      { background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.6), transparent 50%), linear-gradient(155deg, #f6efe5, #efe4d3 60%, #d9c3a9); }
.art-baby        { background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 55%), linear-gradient(150deg, #faf6ef, #e9d5a8 65%, #d8bc7e); }
.art-corporate   { background: radial-gradient(circle at 70% 70%, rgba(198, 161, 91, 0.3), transparent 55%), linear-gradient(150deg, #5f4632, #4a362a 70%, #3a2e25); }
.art-anniversary { background: radial-gradient(circle at 35% 25%, rgba(233, 213, 168, 0.55), transparent 55%), linear-gradient(150deg, #b08a41, #8a6a4f 60%, #6e543c); }
/* Darker motif ink on the light gradient fields */
.art-wedding .event-motif, .art-bridal .event-motif, .art-baby .event-motif {
  color: var(--mocha-700);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.55));
}
/* PHOTOS LATER: an <img> dropped in as the first child of any .event-art
   covers the gradient and hides the motif automatically. */
.event-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-art:has(img) .event-motif, .event-art:has(img)::after { display: none; }

/* ============================================================
   EXPERIENCE — the deep espresso band. This is the spine of the
   page: gold on dark, where the brand sings.
   ============================================================ */
.experience {
  position: relative;
  background:
    radial-gradient(ellipse 75% 55% at 12% 0%, rgba(198, 161, 91, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 45% at 92% 100%, rgba(176, 138, 65, 0.09), transparent 60%),
    linear-gradient(170deg, var(--espresso-800) 0%, var(--espresso) 55%, var(--espresso-900) 100%);
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  color: var(--latte-100);
}
/* Delicate diagonal pinstripe — texture, barely there */
.experience::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(233, 213, 168, 0.035) 0px,
    rgba(233, 213, 168, 0.035) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}
.experience > .container { position: relative; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-card {
  background: var(--card-dark);
  border: 1px solid var(--hairline-gold-soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.exp-card:hover {
  transform: translateY(-5px);
  background: var(--card-dark-hi);
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: var(--shadow-dark);
}
.exp-card h3 { color: var(--gold-300); margin-bottom: 0.5rem; }
.exp-card p { color: var(--mocha-300); font-size: 0.95rem; margin-bottom: 0; }
.exp-highlight {
  background: var(--card-dark-hi);
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--card-dark-hi), var(--card-dark-hi)) padding-box,
    linear-gradient(140deg, rgba(198, 161, 91, 0.7), rgba(198, 161, 91, 0.25) 45%, rgba(198, 161, 91, 0.7)) border-box;
}
/* Center a lone last card (7 cards in a 3-col grid) */
.exp-card:last-child:nth-child(3n + 1) { grid-column: 2; }
.exp-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(233, 213, 168, 0.16), rgba(233, 213, 168, 0.05));
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--gold-300);
  margin-bottom: 1.1rem;
}
.exp-icon svg { width: 26px; height: 26px; }
.exp-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #2e2313;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  padding: 0.3rem 0.8rem; border-radius: 999px;
}
.exp-cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.2rem); }
.exp-cta p { color: var(--mocha-300); font-size: 1.05rem; margin-bottom: 1.2rem; }

/* ============================================================
   THE SPACE (#gallery) — light relief after the dark band.
   Illustrated scene + evening vignettes; photo-free by design.
   ============================================================ */
.gallery { background: linear-gradient(180deg, var(--cream), var(--latte-100)); }

.space-scene {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(233, 213, 168, 0.30), transparent 65%),
    linear-gradient(170deg, var(--white), var(--latte-100) 92%);
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3.5vw, 2.6rem) clamp(0.9rem, 3vw, 2.4rem) clamp(1rem, 2.5vw, 1.7rem);
  box-shadow: var(--shadow-soft);
}
.scene-art { display: block; width: 100%; height: auto; }
.scene-art .ln      { fill: none; stroke: var(--gold-600); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.scene-art .ln-soft { fill: none; stroke: var(--mocha-400); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scene-art .ln-fine { fill: none; stroke: var(--gold-500); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.scene-art .fill-flame { fill: var(--gold-500); }
.scene-art .fill-spark { fill: var(--gold-400); }
.scene-art .spark { animation: sceneTwinkle 3.4s ease-in-out infinite alternate; }
@keyframes sceneTwinkle { from { opacity: 0.25; } to { opacity: 1; } }
.scene-caption {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-700);
}

.space-vignettes {
  list-style: none;
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.vignette {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.32);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.3rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vignette:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(198, 161, 91, 0.6); }
/* Grand gold display numerals give the timeline its jewelry */
.vig-num {
  display: flex; align-items: baseline; gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-600);
  background: linear-gradient(150deg, var(--gold-600), var(--gold-400) 55%, var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}
.vig-num::after {
  content: "";
  flex: 1; height: 1px;
  align-self: center;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0.6), transparent);
  -webkit-text-fill-color: initial;
}
.vignette h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.vignette p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

.gallery-note { text-align: center; margin-top: 2rem; color: var(--ink-soft); }
.gallery-note a { font-weight: 700; }

/* ============================================================
   WHY (white band, warm corner glow)
   ============================================================ */
.why {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(233, 213, 168, 0.22), transparent 60%),
    var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.why-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.why-copy .btn { margin-top: 0.6rem; }
.why-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.why-points li {
  background: var(--off-white);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 0.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-points li:hover { transform: translateX(4px); border-left-color: var(--gold-600); }
.why-points strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--mocha-800); font-weight: 600; }
.why-points span { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   TESTIMONIALS (currently unused — section returns with our own
   reviews; keeping the styles so it re-lands cleanly)
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--latte-100), var(--latte-200) 140%); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute; top: 0.2rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 4.5rem; line-height: 1;
  color: var(--mocha-300);
}
.stars { color: var(--gold-600); letter-spacing: 0.18em; font-size: 1rem; margin-bottom: 0.8rem; }
.quote-card p { color: var(--ink-soft); font-size: 0.96rem; font-style: italic; }
.quote-card footer { font-size: 0.9rem; color: var(--mocha-800); font-weight: 600; }
.quote-card cite { font-style: normal; }

/* ============================================================
   INQUIRE — the second espresso band; the white form floats on
   the dark like a lit doorway.
   ============================================================ */
.inquire {
  position: relative;
  background:
    radial-gradient(ellipse 65% 55% at 88% 8%, rgba(198, 161, 91, 0.10), transparent 60%),
    radial-gradient(ellipse 55% 45% at 5% 95%, rgba(176, 138, 65, 0.08), transparent 60%),
    linear-gradient(160deg, var(--espresso) 0%, var(--espresso-800) 55%, var(--espresso-900) 100%);
  border-top: 1px solid var(--hairline-gold);
  border-bottom: 1px solid var(--hairline-gold);
  color: var(--latte-100);
}
.inquire::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(233, 213, 168, 0.035) 0px,
    rgba(233, 213, 168, 0.035) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}
.inquire > .container { position: relative; }
.inquire-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.inquire-copy h2 { color: var(--cream); }
.inquire-copy p { color: var(--latte-100); font-size: 1.05rem; }
.inquire-copy strong { color: var(--gold-300); }
.inquire-copy a { color: var(--gold-300); font-weight: 700; }
.inquire-perks { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.8rem; }
.inquire-perks li { position: relative; padding-left: 1.9rem; color: var(--mocha-300); }
.inquire-perks li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.6 6.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.6 6.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.inquiry-form {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold-500);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; color: var(--mocha-800); }
.req { color: #b04a3e; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid rgba(198, 161, 91, 0.45);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mocha-700);
  box-shadow: 0 0 0 4px rgba(138, 106, 79, 0.16);
}
.field input.invalid, .field select.invalid { border-color: #b04a3e; box-shadow: 0 0 0 4px rgba(176, 74, 62, 0.12); }
.form-fineprint { margin: 0.9rem 0 0; font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   CONTACT (light band before the espresso footer)
   ============================================================ */
.contact {
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(233, 213, 168, 0.20), transparent 60%),
    var(--off-white);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: stretch; }
address { font-style: normal; }
.contact-line { margin-bottom: 0.7rem; color: var(--ink-soft); }
.contact-line strong { color: var(--mocha-800); font-size: 1.05rem; }
.contact-line a { font-weight: 600; }
.contact-label {
  display: inline-block;
  min-width: 56px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700);
}
.email-tbd { font-weight: 600; color: var(--mocha-700); }
.hours { margin-top: 1.6rem; }
.hours h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.hours p { color: var(--ink-soft); font-size: 0.95rem; }
.socials { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none; font-weight: 600; color: var(--mocha-800);
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(198, 161, 91, 0.5);
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s;
  font-size: 0.92rem;
}
.social-link:hover { background: var(--latte-100); border-color: var(--gold-500); }
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Responsive Google Maps embed (the site's only external element) */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  border: 1.5px solid rgba(198, 161, 91, 0.45);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(150deg, var(--latte-100), var(--latte-200)); /* shows while loading / offline */
}
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ============================================================
   FOOTER — espresso anchor with a gold hairline
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--espresso), var(--espresso-900));
  border-top: 1px solid var(--hairline-gold);
  color: var(--mocha-300);
  padding: 3rem 0 2.2rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; text-align: left; }
.footer-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin: 0; }
.footer-tag { font-size: 0.82rem; color: var(--gold-400); margin: 0; letter-spacing: 0.06em; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem 1.2rem; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.2rem; color: var(--mocha-300); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-300); }
.footer-legal { font-size: 0.78rem; color: var(--mocha-400); margin: 0; }
.footer-legal a { color: inherit; font-weight: 600; }
.footer-legal a:hover { color: var(--gold-300); }
.footer-icon-link { gap: 0.4rem; }
.footer-icon-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   LEGAL PAGES (privacy / terms / accessibility)
   Comfortable long-form reading measure on the site's existing
   type scale and colors. Header is in normal flow now, so the
   page only needs its own breathing room.
   ============================================================ */
.legal-page {
  max-width: 68ch;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
}
.legal-page h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--mocha-800);
  margin-bottom: 0.3em;
}
.legal-page h1::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  margin: 0.7rem 0 0;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.legal-page .legal-updated {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-style: italic;
  margin: 1.2rem 0 2.4rem;
}
.legal-page h2 {
  font-size: 1.5rem;
  color: var(--mocha-800);
  margin-top: 2.3em;
}
.legal-page h3 {
  font-size: 1.15rem;
  color: var(--mocha-800);
  margin-top: 1.6em;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-page ul, .legal-page ol {
  padding-left: 1.4rem;
  margin: 0 0 1.2em;
}
.legal-page li { margin-bottom: 0.5em; }
.legal-page strong { color: var(--espresso); }
.legal-page a { font-weight: 600; }
.legal-page .legal-note {
  background: var(--latte-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  margin: 1.6rem 0;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-glow, .hero-sparkles, .hero-scroll span { animation: none; }
  .scene-art .spark { animation: none; }
  .btn, .event-card, .exp-card, .vignette, .why-points li { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .event-featured { grid-column: span 2; flex-direction: column; }
  .event-featured .event-art { min-height: 240px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card:last-child:nth-child(3n + 1) { grid-column: auto; }
  .exp-card:last-child:nth-child(odd) { grid-column: span 2; }
  .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why-inner, .inquire-inner, .contact-inner { grid-template-columns: 1fr; }
  .space-vignettes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --header-h: 70px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem;
    background: linear-gradient(170deg, var(--white), var(--latte-100));
    box-shadow: -20px 0 60px rgba(95, 70, 50, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0.35s;
    z-index: 99;
    visibility: hidden;
  }
  .site-nav.open { transform: translateX(0); visibility: visible; }
  .site-nav a { font-size: 1.15rem; padding: 0.45rem 0; }
  .nav-toggle { position: relative; z-index: 100; }

  .event-grid { grid-template-columns: 1fr; }
  .event-featured { grid-column: span 1; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card:last-child:nth-child(odd) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .space-vignettes { grid-template-columns: 1fr; }
  /* Thicker scene strokes so the illustration stays crisp at phone widths */
  .scene-art .ln { stroke-width: 3.4; }
  .scene-art .ln-soft { stroke-width: 2.8; }
  .scene-art .ln-fine { stroke-width: 2.4; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero { padding-top: 4rem; }
}
