/* ============ CLCG DESIGN TOKENS v2 — keep in sync across all site index.html files ============ */
:root {
  --teal: #45a29b;
  --teal-dark: #2f7d77;
  --teal-deep: #1f4e4a;
  --ink: #142726;
  --body: #3d4f4e;
  --sage: #dde9e7;
  --sage-soft: #eef4f2;
  --cream: #f7f6f2;
  --white: #ffffff;
  --gold: #d9a441;
  --brand: var(--teal);
  --brand-dark: var(--teal-dark);
  --accent: var(--gold);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 2px 8px rgba(42, 39, 35, 0.06), 0 12px 32px rgba(42, 39, 35, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* ============ END TOKENS ============ */

/* KIVA identity — hunter green, warm taupe grounds, one orange ramp.
   The mark and the CTA share a single hue family (20-26°) separated by
   lightness, not hue: ember-300 carries the K, ember-500/700 the buttons.
   Verified WCAG AA — brand on paper 8.90 · white on brand 9.77 ·
   white on ember-500 4.93 · white K on mark midpoint 3.70 (large text). */
:root {
  --hunter: #2C4A3B;
  --hunter-light: #56796A;
  --hunter-deep: #1B3026;
  --taupe: #DFD6C9;
  --taupe-soft: #EFE9E0;

  --ember-300: #EE8C43;
  --ember-500: #B8521E;
  --ember-600: #A84A18;
  --ember-700: #8A3A11;

  --brand: var(--hunter);
  --brand-dark: var(--hunter-deep);
  --accent: var(--ember-500);
  --accent-dark: var(--ember-700);
  /* retire the inherited 39° gold so one warm family runs the whole page */
  --gold: var(--ember-500);
  --ink: #2A2723;
  --body: #4E4941;
  --sage: var(--taupe);
  --sage-soft: var(--taupe-soft);
  --cream: #F7F4EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.2; font-weight: 600; }
a { color: var(--brand-dark); }
img { max-width: 100%; height: auto; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 3px;
}

/* CLCG SHARED PATTERNS: reveal */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  [data-reveal].in { opacity: 1; transform: none; }
}
[data-reveal].d1 { transition-delay: 0.08s; }
[data-reveal].d2 { transition-delay: 0.16s; }
[data-reveal].d3 { transition-delay: 0.24s; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
body.scrolled .nav {
  border-bottom-color: rgba(42, 39, 35, 0.08);
  box-shadow: 0 4px 20px rgba(42, 39, 35, 0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-brand .mark { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
.nav-brand .word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}
.nav-brand .word small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a.link {
  text-decoration: none;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a.link:hover { color: var(--brand-dark); }
.nav-links a.link[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 600;
  box-shadow: 0 2px 0 0 var(--brand);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 39, 35, 0.18);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(42, 39, 35, 0.1);
    box-shadow: 0 18px 30px rgba(42, 39, 35, 0.12);
    padding: 0.4rem 0 0.8rem;
  }
  body.menu-open .nav-links { display: flex; }
  body.menu-open .nav-toggle .icon-open { display: none; }
  body.menu-open .nav-toggle .icon-close { display: block; }
  .nav-links a.link {
    padding: 0.85rem 1.5rem;
    font-size: 1.02rem;
  }
  .nav-links a.link[aria-current="page"] {
    box-shadow: inset 3px 0 0 0 var(--brand);
    background: var(--sage-soft);
  }
  .nav-links .nav-cta { margin: 0.6rem 1.5rem 0; justify-content: center; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 6px 20px rgba(184, 82, 30, 0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(184, 82, 30, 0.38); }
.btn-ghost {
  background: var(--white);
  color: var(--brand-dark);
  border: 1.5px solid rgba(44, 74, 59, 0.45);
}
.btn-ghost:hover { border-color: var(--brand); background: var(--sage-soft); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Hero (home) */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 340px at 8% 0%, rgba(223, 214, 201, 0.95), transparent 70%),
    radial-gradient(560px 340px at 95% 10%, rgba(223, 214, 201, 0.85), transparent 70%),
    var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42, 39, 35, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(44, 74, 59, 0.35);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(42, 39, 35, 0.06);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  margin: 1.3rem 0 1.1rem;
  letter-spacing: -0.015em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--brand-dark), var(--brand) 70%, var(--hunter-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p { font-size: 1.08rem; margin-bottom: 1.9rem; max-width: 540px; }
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  background: linear-gradient(135deg, var(--sage), rgba(44, 74, 59, 0.22));
  border-radius: var(--radius);
}
.hero-media img, .hero-media svg.ph {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(42, 39, 35, 0.22);
  display: block;
}
.hero-media .chip {
  position: absolute;
  z-index: 1;
  bottom: 1.1rem;
  left: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(42, 39, 35, 0.16);
}
.hero-media .chip svg { width: 15px; height: 15px; color: var(--gold); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.6rem 1.5rem 3rem;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(223, 214, 201, 0.95), transparent 70%),
    radial-gradient(520px 300px at 90% 20%, rgba(223, 214, 201, 0.8), transparent 70%),
    var(--cream);
}
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); letter-spacing: -0.015em; margin-bottom: 0.9rem; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* Quick facts bar */
.facts {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: var(--white);
  padding: 1.3rem 1.5rem;
}
.facts-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.facts a { color: var(--white); }
.facts span { display: inline-flex; align-items: center; gap: 0.55rem; }
.facts svg { width: 17px; height: 17px; opacity: 0.85; flex-shrink: 0; }

/* Generic sections */
.section { max-width: 1120px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.section.tint { max-width: none; background: var(--sage-soft); }
.section.tint > .section-inner { max-width: 1120px; margin: 0 auto; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 2.75rem; }
.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-head h2, .split h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-top: 0.5rem; }
.section-head p { margin-top: 0.8rem; }

/* Split (text + media) */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}
.split h2 { margin: 0.5rem 0 1rem; }
.split p { margin-bottom: 1rem; }
.split img, .split svg.ph {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: block;
}

/* Card grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.card-grid.wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.info-card {
  background: var(--white);
  border: 1px solid rgba(42, 39, 35, 0.06);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-soft);
  margin-bottom: 1rem;
}
.info-card .icon svg { width: 21px; height: 21px; color: var(--brand); }
.info-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.info-card p { font-size: 0.95rem; }
.info-card ul { list-style: none; margin-top: 0.6rem; }
.info-card ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}
.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.55;
}

/* Dot list (outside cards) */
ul.dot-list { list-style: none; }
ul.dot-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}
ul.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.55;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}
.trust-strip .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(44, 74, 59, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(42, 39, 35, 0.05);
}
.trust-strip .pill svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }

/* Daily rhythm timeline */
.timeline { max-width: 720px; margin: 0 auto; }
.timeline .slot {
  position: relative;
  padding: 0 0 2rem 2.4rem;
  border-left: 2px solid rgba(44, 74, 59, 0.3);
  margin-left: 0.6rem;
}
.timeline .slot:last-child { padding-bottom: 0.4rem; }
.timeline .slot::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--cream);
}
.timeline .slot .time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.timeline .slot h3 { font-size: 1.15rem; margin: 0.25rem 0 0.35rem; }
.timeline .slot p { font-size: 0.97rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.4rem;
}
.gallery-grid figure {
  background: var(--white);
  border: 1px solid rgba(42, 39, 35, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 0.85rem 1.1rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.gallery-grid figcaption small {
  display: block;
  font-weight: 500;
  color: var(--body);
  font-size: 0.8rem;
}
.gallery-note {
  max-width: 640px;
  margin: 2.2rem auto 0;
  text-align: center;
  background: var(--white);
  border: 1px dashed rgba(44, 74, 59, 0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
}

/* Forms (Netlify tour form) */
.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(42, 39, 35, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.4rem 2.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field label .req { color: var(--accent-dark); }
.field .hint { display: block; font-size: 0.8rem; font-weight: 400; color: var(--body); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(42, 39, 35, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(44, 74, 59, 0.35);
  outline-offset: 0;
  border-color: var(--brand);
  background: var(--white);
}
.field.full { grid-column: 1 / -1; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-foot .alt { font-size: 0.92rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Contact */
.contact-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  overflow: hidden;
}
.contact-card .pane { padding: 2.5rem 2.2rem; }
.contact-card .pane.left { background: linear-gradient(150deg, var(--sage-soft), var(--white)); }
.contact-card h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 0.4rem; }
.contact-card .subhead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-dark);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.contact-card .pane.left p { max-width: 400px; margin-bottom: 0.8rem; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(42, 39, 35, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 0.75rem;
}
a.contact-line:hover { border-color: var(--brand); background: var(--sage-soft); }
div.contact-line { cursor: default; }
.contact-line .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line .ic svg { width: 17px; height: 17px; color: var(--brand); }
.contact-line > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.contact-line small { display: block; font-weight: 500; color: var(--body); font-size: 0.78rem; }

/* Map */
.map-wrap {
  max-width: 980px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 39, 35, 0.08);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* Tour band */
.tour-band {
  background:
    radial-gradient(500px 300px at 85% 20%, rgba(184, 82, 30, 0.34), transparent 70%),
    linear-gradient(120deg, var(--ink), var(--brand-dark));
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.tour-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 0.7rem; }
.tour-band p { max-width: 560px; margin: 0 auto 1.8rem; color: rgba(255, 255, 255, 0.88); }
.tour-band .cta-row { justify-content: center; }
.tour-band .btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.tour-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

/* Mobile sticky tour CTA — keeps "Schedule a Tour" persistent on phones */
.mobile-cta { display: none; }
@media (max-width: 820px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    gap: 0.7rem;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(247, 244, 238, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(42, 39, 35, 0.12);
    box-shadow: 0 -6px 18px rgba(42, 39, 35, 0.1);
  }
  .mobile-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  body { padding-bottom: 74px; }
}

/* Footer */
footer {
  background: var(--brand-dark);
  color: #F2EFE8;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
  opacity: 0.75;
}
.foot-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  font-size: 0.92rem;
}
.foot-inner h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #CFDCC0;
  margin-bottom: 0.8rem;
}
.foot-inner ul { list-style: none; }
.foot-inner li { margin-bottom: 0.45rem; }
footer a { color: #F7F4EE; }
footer a:hover { color: var(--white); }
.foot-brand .word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}
.foot-brand p { margin-top: 0.5rem; max-width: 280px; color: #F2EFE8; }
.foot-legal {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #E3E9D8;
}

.foot-legal .credit { display: inline-flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.foot-legal .credit a { text-decoration: underline; text-underline-offset: 2px; }

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.4rem;
}
.quote {
  background: var(--white);
  border: 1px solid rgba(42, 39, 35, 0.07);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.quote .stars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 0;
  margin-bottom: 0.9rem;
}
.quote .stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--ember-500);
}
.quote blockquote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 1.2rem;
  flex: 1;
}
.quote figcaption {
  border-top: 1px solid rgba(42, 39, 35, 0.09);
  padding-top: 0.9rem;
  font-size: 0.92rem;
}
.quote figcaption .who { font-weight: 600; color: var(--ink); display: block; }
.quote figcaption .role { color: var(--body); font-size: 0.86rem; }
.quote figcaption .src {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--body);
  opacity: 0.85;
}
.quote figcaption .src svg { width: 13px; height: 13px; }
