/* =========================================================
   American Glamping™ — Moonlit Sage (Custom) Palette
   Pure static CSS. Mobile-first. No build step.
   ========================================================= */

:root {
  /* ——— Moonlit Sage (Custom) ——— */
  --parchment: #F8F4EE;
  --sage:      #8BA888;
  --terracotta:#C4907A;
  --driftwood: #9B8B7A;
  --teal:      #2E8B8A; /* North Shore Pearl Teal — PRIMARY */
  --teal-deep: #256D6C;
  --teal-soft: #E7F0EF;
  --ink:       #1F2A28;
  --line:      rgba(31, 42, 40, 0.10);
  --line-soft: rgba(31, 42, 40, 0.06);

  /* Semantic */
  --bg:          var(--parchment);
  --bg-alt:      #F1ECE3;
  --fg:          var(--ink);
  --fg-muted:    var(--driftwood);
  --accent:      var(--teal);
  --accent-ink:  #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --text-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.84rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl:   clamp(1.5rem, 1.35rem + 0.7vw, 1.875rem);
  --text-2xl:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-3xl:  clamp(2.75rem, 2rem + 3.5vw, 4.5rem);
  --text-hero: clamp(3.25rem, 2.2rem + 5vw, 6rem);

  /* Space */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem; --s-12: 3rem;
  --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  --radius:   4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(31,42,40,0.04), 0 2px 8px rgba(31,42,40,0.04);
  --shadow-md: 0 4px 20px rgba(31,42,40,0.08);

  --measure: 65ch;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--teal); color: var(--parchment); }

/* Trademark superscript */
.tm {
  font-feature-settings: "sups" on;
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05em;
  letter-spacing: 0;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); letter-spacing: -0.018em; }
h3 { font-size: var(--text-xl); font-weight: 500; letter-spacing: -0.012em; }
h4 { font-size: var(--text-lg); font-weight: 500; font-family: var(--font-body); letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
}

.lede {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 54ch;
}

.display-italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

p { max-width: var(--measure); }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding-block: clamp(var(--s-20), 10vw, var(--s-32));
}

.section-head { margin-bottom: clamp(var(--s-12), 6vw, var(--s-20)); max-width: 62ch; }
.section-head .eyebrow { display: inline-block; margin-bottom: var(--s-4); }
.section-head h2 { margin-bottom: var(--s-6); }

.divider {
  width: 48px; height: 1px; background: var(--teal); opacity: 0.6;
  margin-block: var(--s-6);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--accent-ink);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  border-color: rgba(31,42,40,0.2);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(31,42,40,0.04); }
.btn-on-dark {
  background: var(--parchment);
  color: var(--teal);
}
.btn-on-dark:hover { background: #fff; }

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(248, 244, 238, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(248, 244, 238, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem;
  gap: var(--s-8);
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: -0.01em;
  line-height: 1;
  flex: 0 0 auto;
}
.brand:hover { color: var(--teal-deep); }

.nav-links {
  display: none;
  gap: var(--s-8);
  align-items: center;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--ink);
  opacity: 0.78;
  transition: opacity .2s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--teal); }

.nav-right { display: flex; align-items: center; gap: var(--s-4); }

.lang-toggle {
  display: flex;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}
.lang-toggle a { padding: 0.3rem 0.5rem; }
.lang-toggle a.active { color: var(--teal); }
.lang-toggle .sep { opacity: 0.4; padding: 0.3rem 0; }

.nav-cta { padding: 0.65rem 1.1rem; font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; }

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-right { gap: var(--s-3); }
  .nav-inner { gap: var(--s-3); }
  .brand { font-size: 1.05rem; }
  .lang-toggle { font-size: 11px; letter-spacing: 0.1em; }
  .lang-toggle a { padding: 0.3rem 0.25rem; }
}

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
}
.menu-toggle span::before { position: absolute; top: -5px; left: 0; width: 16px; }
.menu-toggle span::after  { position: absolute; top: 5px;  left: 0; width: 16px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 49;
  background: var(--parchment);
  padding: 6rem 2rem 3rem;
  display: flex; flex-direction: column; gap: var(--s-6);
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open { visibility: visible; }
@media (min-width: 960px) { .mobile-drawer { display: none; } }
.mobile-drawer.is-open { transform: translateY(0); pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-3);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: 6rem;
  padding-bottom: clamp(var(--s-16), 8vh, var(--s-24));
  color: var(--parchment);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31,42,40,0.25) 0%,
    rgba(31,42,40,0.10) 30%,
    rgba(31,42,40,0.35) 70%,
    rgba(31,42,40,0.75) 100%
  );
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero h1 {
  color: var(--parchment);
  font-weight: 300;
  max-width: 14ch;
  margin-block: var(--s-6) var(--s-8);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--parchment); font-variation-settings: "SOFT" 100; }
.hero .eyebrow { color: #E6DAC8; }
.hero .hero-sub { max-width: 52ch; color: rgba(248,244,238,0.9); font-size: var(--text-lg); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-10); }
.hero .btn-ghost { color: var(--parchment); border-color: rgba(248,244,238,0.5); }
.hero .btn-ghost:hover { border-color: var(--parchment); background: rgba(248,244,238,0.08); }

.hero-logo-mark {
  /* LOGO PLACEHOLDER geometric "AG" circle — will be swapped for client-provided SVG */
  width: 68px; height: 68px; border-radius: 50%;
  border: 1.5px solid var(--parchment);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.scroll-cue {
  position: absolute;
  bottom: var(--s-8); right: clamp(1.25rem, 4vw, 2.5rem);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.75);
  display: flex; align-items: center; gap: 0.5rem;
  z-index: 1;
}
.scroll-cue::after {
  content: ""; width: 40px; height: 1px; background: currentColor; opacity: 0.6;
}

/* =========================================================
   Ethos
   ========================================================= */
.ethos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  margin-top: var(--s-12);
}
@media (min-width: 760px) { .ethos-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-16); } }

.ethos-item .ico {
  width: 40px; height: 40px; margin-bottom: var(--s-6);
  color: var(--teal);
}
.ethos-item h3 { margin-bottom: var(--s-3); font-family: var(--font-display); font-weight: 500; }
.ethos-item p { color: var(--fg-muted); }

/* =========================================================
   Experiences
   ========================================================= */
.experiences { background: var(--bg-alt); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}
@media (min-width: 720px) { .exp-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-10) var(--s-8); } }
@media (min-width: 1100px){ .exp-grid { grid-template-columns: repeat(4, 1fr); } }

.exp-card { display: flex; flex-direction: column; }
.exp-card .img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--line-soft);
  margin-bottom: var(--s-5);
}
.exp-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.exp-card:hover img { transform: scale(1.04); }
.exp-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.exp-card p { font-size: var(--text-sm); color: var(--fg-muted); }
.exp-card .tag {
  margin-top: var(--s-4);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex; align-items: flex-start; gap: 0.5rem;
}
.exp-card .tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
  flex: 0 0 6px; margin-top: 0.5em;
}

/* =========================================================
   Gallery (bento masonry)
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: var(--s-3);
}
@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--s-4);
  }
}

.gallery-grid .tile { overflow: hidden; background: var(--line-soft); }
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.gallery-grid .tile:hover img { transform: scale(1.05); }

/* Bento spans — desktop */
@media (min-width: 720px) {
  .tile-a { grid-column: span 2; grid-row: span 2; } /* exterior — large */
  .tile-b { grid-column: span 1; grid-row: span 1; } /* breakfast */
  .tile-c { grid-column: span 1; grid-row: span 2; } /* bathtub */
  .tile-d { grid-column: span 1; grid-row: span 1; } /* lantern */
  .tile-e { grid-column: span 2; grid-row: span 2; } /* bedding */
  .tile-f { grid-column: span 2; grid-row: span 1; } /* girls */
  .tile-g { grid-column: span 2; grid-row: span 1; } /* family */
}
/* Mobile spans */
.tile-a { grid-column: span 2; grid-row: span 2; min-height: 320px; }
.tile-c, .tile-e { min-height: 200px; }

/* =========================================================
   Glamp Genius callout
   ========================================================= */
.genius {
  background: var(--teal);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.genius::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(248,244,238,0.08), transparent 60%),
    radial-gradient(ellipse at 85% 80%, rgba(196,144,122,0.15), transparent 55%);
  pointer-events: none;
}
.genius-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: var(--s-10);
  align-items: center;
}
@media (min-width: 900px) { .genius-inner { grid-template-columns: 1.1fr 1fr; gap: var(--s-16); } }

.genius h2 { color: var(--parchment); font-weight: 300; }
.genius h2 em { font-style: italic; }
.genius .eyebrow { color: rgba(248,244,238,0.85); }
.genius p { color: rgba(248,244,238,0.85); margin-block: var(--s-5); }
.genius-preview {
  aspect-ratio: 4 / 3;
  background: rgba(248,244,238,0.08);
  border: 1px solid rgba(248,244,238,0.18);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.genius-preview .preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%; height: 100%;
  opacity: 0.55;
}
.genius-preview .preview-grid span {
  border: 1px solid rgba(248,244,238,0.18);
}
.genius-preview .preview-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--parchment);
  text-align: center;
}
.preview-label small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =========================================================
   Stories / Reviews
   ========================================================= */
.stories-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-10);
}
@media (min-width: 820px) { .stories-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-12); } }

.story {
  padding-right: var(--s-6);
  border-top: 1px solid var(--line);
  padding-top: var(--s-8);
}
.stars { color: var(--terracotta); font-size: var(--text-base); letter-spacing: 0.12em; margin-bottom: var(--s-5); }
.story blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--s-6);
  font-style: italic;
}
.story cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  display: block;
  letter-spacing: 0.02em;
}
.story cite b { color: var(--ink); font-weight: 500; }

/* =========================================================
   Locations
   ========================================================= */
.locations { background: var(--bg-alt); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-10);
}
@media (min-width: 720px) { .locations-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-8); } }
@media (min-width: 1100px){ .locations-grid { grid-template-columns: repeat(4, 1fr); } }

.loc {
  border-top: 1px solid var(--line);
  padding-block: var(--s-6) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.loc .status {
  font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage);
}
.loc.now .status { color: var(--teal); }
.loc h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
}
.loc p { font-size: var(--text-sm); color: var(--fg-muted); }

/* =========================================================
   Inquiries / Form
   ========================================================= */
.form {
  display: grid; grid-template-columns: 1fr; gap: var(--s-6);
  max-width: 640px;
}
@media (min-width: 640px) { .form.two-col { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.6rem 0;
  font-size: var(--text-base);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--teal); }
.field textarea { min-height: 120px; resize: vertical; }

.form-submit { margin-top: var(--s-4); }

.inquiry-layout {
  display: grid; grid-template-columns: 1fr; gap: var(--s-16);
}
@media (min-width: 980px) { .inquiry-layout { grid-template-columns: 1fr 1.2fr; gap: var(--s-20); } }

.inquiry-aside p { color: var(--fg-muted); margin-block: var(--s-5) var(--s-6); }
.inquiry-aside .meta {
  font-size: var(--text-sm);
  color: var(--ink);
  display: flex; flex-direction: column; gap: var(--s-2);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.inquiry-aside .meta span { color: var(--fg-muted); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg-alt); }
.faq-list { margin-top: var(--s-10); border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-5);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: block;
  position: relative;
  padding-right: 2.25rem;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  margin-top: var(--s-4);
  color: var(--fg-muted);
  max-width: 72ch;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(248,244,238,0.75);
  padding-block: var(--s-20) var(--s-8);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-10);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-8); } }

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.55);
  margin-bottom: var(--s-5);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--parchment);
  margin-bottom: var(--s-4);
  display: inline-block;
}
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer a { color: rgba(248,244,238,0.75); font-size: var(--text-sm); }
.footer a:hover { color: var(--parchment); }
.footer .tagline { font-size: var(--text-sm); max-width: 40ch; margin-bottom: var(--s-6); }
.footer .address { font-size: var(--text-sm); color: rgba(248,244,238,0.55); font-style: normal; }

.socials { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(248,244,238,0.2);
  display: inline-flex; align-items: center; justify-content: center;
}
.socials a:hover { border-color: var(--parchment); }
.socials svg { width: 14px; height: 14px; }

.footer-bottom {
  margin-top: var(--s-16);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(248,244,238,0.12);
  display: flex; flex-direction: column; gap: var(--s-3);
  font-size: var(--text-xs);
  color: rgba(248,244,238,0.5);
  letter-spacing: 0.04em;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom a { color: var(--sage); }
.footer-bottom a:hover { color: var(--parchment); }

/* =========================================================
   Motion — fade-in on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Utility / small
   ========================================================= */
.muted { color: var(--fg-muted); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Inquiries page & Acquisition page shared */
.page-header {
  padding-top: 10rem; padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: var(--s-3); }
.page-header h1 {
  font-size: var(--text-3xl);
  font-weight: 300;
  max-width: 18ch;
  margin-bottom: var(--s-5);
}
.page-header p { color: var(--fg-muted); font-size: var(--text-lg); max-width: 52ch; }

/* Acquisition metric cards */
.metric-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4);
  margin-top: var(--s-10);
}
@media (min-width: 720px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }
.metric {
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
}
.metric .label {
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted);
  margin-bottom: var(--s-3);
}
.metric .value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--ink);
}
.metric .value small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}

.tech-stack {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-top: var(--s-4);
}
.chip {
  font-size: var(--text-xs);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
