/* ==========================================================================
   LEX-DT-HOTEL — Design System
   Signature motif: the portico arch — drawn from the grand entrance archway
   found at the door of every great hotel. It frames the hero image, shapes
   the room and gallery cards, and marks the transition between sections.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink: #0f2a26;
  --forest: #163832;
  --forest-light: #1f4a41;
  --gold: #c6a15b;
  --gold-light: #e4cd9a;
  --gold-dim: #8c6f3d;
  --cream: #f7f3ea;
  --stone: #ece4d3;
  --stone-dark: #ded2b5;
  --text-dark: #1a231f;
  --text-muted: #5b6560;
  --text-on-dark: #f5f1e6;
  --text-on-dark-muted: #c7d1cb;
  --line: rgba(198, 161, 91, 0.28);
  --line-dark: rgba(245, 241, 230, 0.14);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Radii + shadow (arch-inspired: flat base, rounded top) */
  --arch: 999px 999px 8px 8px;
  --radius-card: 6px;
  --shadow-soft: 0 20px 50px -25px rgba(15, 42, 38, 0.35);
  --shadow-lift: 0 30px 60px -20px rgba(15, 42, 38, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; line-height: 1.08; }
p { margin: 0; }

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

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

section { position: relative; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.section-head p { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-light {
  border-color: rgba(245, 241, 230, 0.45);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline-dark {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-dark:hover { border-color: var(--gold-dim); background: var(--forest); color: var(--text-on-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(15, 42, 38, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.4);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand .mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: var(--arch);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
}
.brand span.dim { color: var(--gold-light); font-style: italic; font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--gold);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text-on-dark); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--text-on-dark);
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: var(--ink);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    pointer-events: none;
  }
  .nav-links a { font-size: 1.3rem; }
  body.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-toggle .icon-open { display: none; }
  body:not(.nav-open) .nav-toggle .icon-close { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(198,161,91,0.16), transparent 55%),
    linear-gradient(160deg, #0d2521 0%, #16362f 48%, #0a1e1b 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(245,241,230,0.035) 0 1px, transparent 1px 84px);
  opacity: 0.6;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem 4rem;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy .eyebrow::before { background: var(--gold-light); }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  letter-spacing: -0.01em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-copy p {
  margin-top: 1.6rem;
  max-width: 46ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}
.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 3.4rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.hero-meta div { border-left: 1px solid var(--line); padding-left: 1rem; }
.hero-meta b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.hero-meta span { font-size: 0.82rem; color: var(--text-on-dark-muted); letter-spacing: 0.03em; }

/* the arch frame — signature element */
.hero-frame {
  position: relative;
  aspect-ratio: 3 / 4.1;
  border-radius: var(--arch);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  animation: rise 1.1s var(--ease) both;
}
.hero-frame .placeholder-art {
  position: absolute; inset: 0;
}
.hero-frame::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--arch);
  box-shadow: inset 0 0 0 1px rgba(198,161,91,0.35);
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s var(--ease) infinite; }

@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-frame { order: -1; aspect-ratio: 4/3; max-width: 480px; margin-inline: auto; }
  .hero-meta { gap: 1.6rem; }
}

/* ---------- Placeholder art (no real photography supplied yet) ---------- */
.placeholder-art {
  --p1: var(--forest);
  --p2: var(--forest-light);
  background:
    linear-gradient(135deg, rgba(198,161,91,0.22), transparent 60%),
    linear-gradient(160deg, var(--p1), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-align: center;
  position: relative;
}
.placeholder-art .ph-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  padding: 1.5rem;
}
.placeholder-art svg { width: 34px; height: 34px; opacity: 0.85; }
.placeholder-art .ph-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  max-width: 20ch;
}
.placeholder-art.light { --p1: #e3dac2; --p2: var(--stone); color: var(--gold-dim); }
.placeholder-art.light .ph-label { color: var(--text-muted); }

/* ---------- About (home strip) ---------- */
.about-strip {
  background: var(--cream);
  padding: 7rem 0;
}
.about-strip .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-media .placeholder-art { position: absolute; inset: 0; }
.about-copy p { color: var(--text-muted); font-size: 1.06rem; line-height: 1.8; margin-top: 1.4rem; }
.about-copy p + p { margin-top: 1rem; }
.pillars {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar b { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); display: block; }
.pillar span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 860px) {
  .about-strip .grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
}

/* ---------- Rooms ---------- */
.rooms-section { background: var(--stone); padding: 7rem 0; }
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.room-media { aspect-ratio: 4/3; position: relative; border-radius: var(--arch) var(--arch) 0 0; overflow: hidden; }
.room-media .placeholder-art { position: absolute; inset: 0; border-radius: 0; }
.room-body { padding: 1.9rem 1.7rem 2.1rem; }
.room-body .eyebrow { font-size: 0.8rem; margin-bottom: 0.5rem; }
.room-body h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.room-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.room-facts {
  display: flex; gap: 1.1rem; flex-wrap: wrap;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--stone-dark);
}
.room-facts span { font-size: 0.78rem; color: var(--gold-dim); letter-spacing: 0.02em; display: flex; align-items: center; gap: 0.35rem; }
.room-facts svg { width: 14px; height: 14px; }
.room-body .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

@media (max-width: 960px) { .room-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .room-grid { grid-template-columns: 1fr; } }

/* ---------- Why choose us ---------- */
.features-section { padding: 7rem 0; background: var(--ink); color: var(--text-on-dark); }
.features-section .section-head p { color: var(--text-on-dark-muted); }
.features-section .eyebrow { color: var(--gold-light); }
.features-section .eyebrow::before { background: var(--gold-light); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 6px; overflow: hidden; }
.feature-card { background: var(--ink); padding: 2.4rem 1.9rem; transition: background 0.4s var(--ease); }
.feature-card:hover { background: var(--forest); }
.feature-card .icon { width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: var(--arch); display: flex; align-items: center; justify-content: center; color: var(--gold-light); margin-bottom: 1.4rem; }
.feature-card .icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-on-dark-muted); line-height: 1.6; }

@media (max-width: 960px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-section { padding: 7rem 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.gallery-item { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.gallery-item .placeholder-art { position: absolute; inset: 0; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item:nth-child(1) { border-top-left-radius: 60px; }
.gallery-item:nth-child(4) { border-top-right-radius: 60px; }

@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; } }

/* ---------- Amenities (page) ---------- */
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--stone-dark); border: 1px solid var(--stone-dark); border-radius: 6px; overflow: hidden; }
.amenity-row { background: var(--cream); padding: 2rem 2.2rem; display: flex; gap: 1.2rem; align-items: flex-start; transition: background 0.35s var(--ease); }
.amenity-row:hover { background: var(--stone); }
.amenity-row .icon { flex: none; width: 44px; height: 44px; border-radius: var(--arch); border: 1px solid var(--gold-dim); color: var(--gold-dim); display: flex; align-items: center; justify-content: center; }
.amenity-row .icon svg { width: 20px; height: 20px; }
.amenity-row h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.amenity-row p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 760px) { .amenities-list { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  color: var(--text-on-dark);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(198,161,91,0.22), transparent 55%);
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); max-width: 20ch; }
.cta-band p { color: var(--text-on-dark-muted); margin-top: 0.8rem; max-width: 42ch; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 11rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(198,161,91,0.18), transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.page-hero p { margin-top: 1.2rem; max-width: 56ch; color: var(--text-on-dark-muted); font-size: 1.05rem; line-height: 1.7; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--text-on-dark-muted); margin-bottom: 1.4rem; letter-spacing: 0.02em; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- About page specifics ---------- */
.story-section { padding: 6.5rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-copy p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; }
.story-copy p + p { margin-top: 1.2rem; }
.story-media { position: sticky; top: 7rem; aspect-ratio: 3/4; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-soft); }
.story-media .placeholder-art { position: absolute; inset: 0; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } .story-media { position: static; } }

.values-section { background: var(--stone); padding: 6.5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: var(--cream); padding: 2.4rem; border-radius: var(--radius-card); border: 1px solid var(--stone-dark); }
.value-card .num { font-family: var(--font-display); font-style: italic; color: var(--gold-dim); font-size: 1rem; }
.value-card h3 { margin-top: 0.8rem; font-size: 1.25rem; }
.value-card p { margin-top: 0.7rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-section { padding: 6.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
.contact-info-card { background: var(--forest); color: var(--text-on-dark); border-radius: 8px; padding: 3rem 2.4rem; height: fit-content; }
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 1.6rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-top: 1px solid var(--line-dark); }
.contact-line:first-of-type { border-top: none; }
.contact-line .icon { flex: none; width: 38px; height: 38px; border-radius: var(--arch); border: 1px solid var(--gold); color: var(--gold-light); display: flex; align-items: center; justify-content: center; }
.contact-line .icon svg { width: 17px; height: 17px; }
.contact-line span { display: block; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-bottom: 0.25rem; }
.contact-line a, .contact-line strong { font-size: 1rem; font-weight: 500; }
.social-row { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-row a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-on-dark-muted); transition: all 0.3s var(--ease); }
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }
.social-row svg { width: 16px; height: 16px; }

.contact-form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--text-muted); margin-bottom: 0.5rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--stone-dark);
  background: var(--cream);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-dark);
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: -0.4rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

.map-placeholder {
  margin-top: 4rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  aspect-ratio: 21/7;
  position: relative;
}
.map-placeholder .placeholder-art { position: absolute; inset: 0; border-radius: 0; }

/* ---------- Privacy policy ---------- */
.policy-section { padding: 6rem 0 7rem; }
.policy-shell {
  max-width: 820px;
  margin-inline: auto;
  background: var(--cream);
  border: 1px solid var(--stone-dark);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
}
.policy-shell .placeholder-note {
  border: 1px dashed var(--gold-dim);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.policy-shell .placeholder-note b { color: var(--forest); display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.6rem; }
.policy-toc { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; padding-top: 2rem; border-top: 1px solid var(--stone-dark); }
.policy-toc span { font-size: 0.8rem; letter-spacing: 0.03em; color: var(--gold-dim); text-transform: uppercase; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 5.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.8rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.8rem 0; font-size: 0.8rem; flex-wrap: wrap; gap: 0.8rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.35s; }

/* ---------- Utility ---------- */
.divider-arch {
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.divider-arch svg { width: 90px; height: 45px; color: var(--gold-dim); opacity: 0.6; }
