/* ============================================================
   Teahouse Partners — Strategic Advisory
   Palette: warm tea/parchment + deep evergreen + Blue Ridge haze + brass
   Type: Fraunces (display serif) + Inter (UI sans)
   ============================================================ */

:root {
  /* paper / ink */
  --paper:      #f6f1e7;
  --paper-2:    #efe8d9;
  --paper-3:    #e7decb;
  --ink:        #211d17;
  --ink-soft:   #4f483d;
  --ink-faint:  #756c5d;
  --line:       rgba(33, 29, 23, 0.12);
  --line-soft:  rgba(33, 29, 23, 0.07);

  /* evergreen */
  --forest:      #1f3b34;
  --forest-2:    #2c4f47;
  --forest-deep: #182d28;

  /* blue ridge haze */
  --haze:    #6f8ba0;
  --haze-2:  #9db4c1;
  --haze-3:  #c4d2da;

  /* brass / tea-gold accent */
  --brass:     #b07c33;
  --brass-2:   #c79a52;
  --brass-ink: #8a5d22;   /* text-grade accent for contrast on light */
  --cream:     #f3ecdd;   /* warm light for text on dark */
  --cream-soft:#d8cdb6;

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

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(24, 45, 40, 0.06), 0 2px 8px rgba(24, 45, 40, 0.05);
  --shadow:    0 6px 24px rgba(24, 45, 40, 0.10), 0 2px 6px rgba(24, 45, 40, 0.06);
  --shadow-lg: 0 22px 50px rgba(24, 45, 40, 0.16), 0 6px 16px rgba(24, 45, 40, 0.08);

  --container: 1140px;
  --gutter: clamp(20px, 5vw, 56px);

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

/* ---------------- reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--brass-2); color: #1c1404; }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--forest); color: var(--cream);
  padding: 10px 18px; border-radius: 0 0 10px 10px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------------- typography helpers ---------------- */
.eyebrow, .section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-ink);
}
.section-eyebrow.on-dark, .eyebrow.on-dark { color: var(--brass-2); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--forest);
  font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3rem);
}
.section-title.on-dark { color: var(--cream); }

.section-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 1rem;
}
.section-lead.on-dark { color: var(--cream-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.section-head .section-eyebrow { margin-bottom: 0.9rem; display: block; }
.section-head .section-title + .section-lead { margin-top: 1.25rem; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: rgba(247, 242, 232, 0.55); color: var(--forest);
  border-color: rgba(31, 59, 52, 0.45);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.btn-ghost:hover { border-color: var(--forest); transform: translateY(-2px); background: rgba(247, 242, 232, 0.85); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header[data-elevated="true"] {
  background: rgba(246, 241, 231, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(33,29,23,0.05), 0 8px 24px rgba(24,45,40,0.06);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; flex: none; color: var(--forest); }
.brand-mark .bm-ring { fill: none; stroke: currentColor; stroke-width: 1.4; opacity: 0.35; }
.brand-mark .bm-ridge-back { fill: var(--haze); opacity: 0.85; }
.brand-mark .bm-ridge-front { fill: var(--forest); }
.brand-mark .bm-steam { fill: none; stroke: var(--brass); stroke-width: 1.4; stroke-linecap: round; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.18rem;
  color: var(--forest); letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-ink); font-weight: 600; margin-top: 2px;
}

.site-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a {
  display: inline-block; padding: 0.5em 0.9em; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a:hover { color: var(--forest); background: rgba(31,59,52,0.05); }
.nav-cta {
  margin-left: 8px;
  background: var(--forest); color: var(--cream) !important;
  border-radius: 999px !important; padding: 0.6em 1.25em !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--forest-2) !important; }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 110px; padding-bottom: 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ridges { width: 100%; height: 100%; }
/* atmospheric haze scrim — lightens the text zone, fades before the deep ridges */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg,
    rgba(247, 242, 232, 0.72) 0%,
    rgba(247, 242, 232, 0.30) 30%,
    rgba(247, 242, 232, 0.08) 50%,
    rgba(247, 242, 232, 0) 66%);
}

/* ---- swappable hero scenes (toggle via <body data-hero="…">) ---- */
.hero-scene { position: absolute; inset: 0; }
.hero-scene svg { width: 100%; height: 100%; display: block; }
.hero-scene--ridges   { display: none; }   /* hidden by default */
.hero-scene--teahouse { display: block; }  /* shown by default   */
[data-hero="ridges"] .hero-scene--teahouse { display: none; }
[data-hero="ridges"] .hero-scene--ridges   { display: block; }

/* teahouse position — far right on wide screens (clear of the copy),
   nudged toward centre on narrow screens so it survives the SVG crop */
.th-cluster { transform-box: fill-box; transform-origin: center; transform: translate(0px, 4px); }
/* on phones: smaller and tucked toward centre-right so it stays a quiet accent */
@media (max-width: 720px) {
  .th-cluster { transform: translate(-235px, 22px) scale(0.72); }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(247, 242, 232, 0.82) 0%,
      rgba(247, 242, 232, 0.50) 34%,
      rgba(247, 242, 232, 0.18) 58%,
      rgba(247, 242, 232, 0) 82%);
  }
}

/* ambient motion for the teahouse scene — slow, nonchalant */
.th-mist { will-change: transform; }
.th-mist-a { animation: th-drift-a 44s ease-in-out infinite alternate; }
.th-mist-b { animation: th-drift-b 60s ease-in-out infinite alternate; }
@keyframes th-drift-a { from { transform: translateX(-26px); } to { transform: translateX(48px); } }
@keyframes th-drift-b { from { transform: translateX(36px); } to { transform: translateX(-30px); } }

.th-puff {
  transform-box: fill-box; transform-origin: center;
  opacity: 0; animation: th-rise 7.5s ease-out infinite;
}
.th-steam .th-puff:nth-child(1) { animation-delay: 0s; }
.th-steam .th-puff:nth-child(2) { animation-delay: 1.9s; }
.th-steam .th-puff:nth-child(3) { animation-delay: 3.6s; }
.th-steam .th-puff:nth-child(4) { animation-delay: 5.2s; }
@keyframes th-rise {
  0%   { opacity: 0;    transform: translateY(2px) scale(0.6); }
  18%  { opacity: 0.5; }
  60%  { opacity: 0.26; }
  100% { opacity: 0;    transform: translateY(-44px) translateX(7px) scale(1.55); }
}

.th-win { animation: th-glow 5.5s ease-in-out infinite; }
@keyframes th-glow { 0%, 100% { opacity: 0.78; } 50% { opacity: 1; } }

.th-birds { will-change: transform; animation: th-fly 40s linear infinite; }
@keyframes th-fly {
  0%   { transform: translate(0, 0);        opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translate(150px, -16px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .th-mist-a, .th-mist-b, .th-puff, .th-win, .th-birds { animation: none; }
  .th-puff { opacity: 0.3; }
  .th-birds { opacity: 0.45; }
}

.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem, 1.5rem + 4.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--forest-deep);
  max-width: 16ch;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--brass-ink);
}
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1.08rem, 1rem + 0.6vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.6;
}
.hero-sub strong { color: var(--forest); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(31,59,52,0.4);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue-dot {
  width: 4px; height: 8px; border-radius: 3px; background: var(--forest);
  animation: scrollcue 1.8s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ============================================================
   PROOF / CREDIBILITY BAND
   ============================================================ */
.proof {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(3rem, 6vw, 4.6rem);
  position: relative;
}
.stat-grid {
  list-style: none; display: grid; gap: clamp(1.6rem, 3vw, 2.2rem);
  grid-template-columns: repeat(4, 1fr);
}
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 1.4rem + 2vw, 3rem);
  line-height: 1; color: #fff; letter-spacing: -0.02em;
}
.stat-num .stat-unit { font-size: 0.42em; color: var(--brass-2); margin-left: 2px; letter-spacing: 0; }
.stat-label { font-size: 0.96rem; color: var(--cream-soft); line-height: 1.45; max-width: 24ch; }

.proof-companies {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(243, 236, 221, 0.16);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px;
}
.proof-label {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-2); font-weight: 600;
}
.company-list { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; }
.company-list span {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 500;
  color: var(--cream); opacity: 0.92; white-space: nowrap;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: clamp(4.5rem, 9vw, 8rem); }
.about-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: clamp(2.4rem, 5vw, 5rem); align-items: start;
}
.about-media { position: sticky; top: 110px; }
.portrait-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--paper-3), var(--haze-3));
  border: 1px solid var(--line);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  border-radius: inherit; pointer-events: none;
}
.portrait-frame img { width: 100%; height: auto; display: block; }
.portrait-caption { margin-top: 1rem; }
.portrait-caption figcaption { display: flex; flex-direction: column; gap: 2px; }
.portrait-caption strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); font-weight: 600; }
.portrait-caption span { font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass-ink); font-weight: 600; }

.about-body .section-title { margin-top: 0.9rem; max-width: 18ch; }
.prose { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.prose p { color: var(--ink-soft); font-size: 1.06rem; }
.prose strong { color: var(--ink); font-weight: 600; }

.about-facts {
  list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem;
  border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.about-facts li { font-size: 0.98rem; color: var(--ink-soft); }
.fact-key {
  display: inline-block; min-width: 96px; font-weight: 600; color: var(--forest);
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-right: 6px;
}

/* ============================================================
   EXPERTISE CARDS
   ============================================================ */
.expertise {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(157,180,193,0.16), transparent 60%),
    var(--paper-2);
  border-block: 1px solid var(--line-soft);
}
.card-grid {
  list-style: none; display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(176,124,51,0.4); }
.card-icon {
  font-size: 1.4rem; color: var(--brass); line-height: 1;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(199,154,82,0.16), rgba(111,139,160,0.12));
  border: 1px solid rgba(176,124,51,0.2);
}
.card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.24rem;
  color: var(--forest); line-height: 1.2; margin-top: 0.3rem;
}
.card p { font-size: 0.99rem; color: var(--ink-soft); }

/* ============================================================
   EXPERIENCE TIMELINE
   ============================================================ */
.experience { padding-block: clamp(4.5rem, 9vw, 8rem); }
.timeline { list-style: none; position: relative; max-width: 820px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--haze-2), var(--brass-2), var(--haze-2));
  opacity: 0.55;
}
.tl-item { position: relative; padding-left: 44px; padding-bottom: 2.4rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brass);
  box-shadow: 0 0 0 4px rgba(176,124,51,0.12);
}
.tl-meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 0.3rem; }
.tl-co { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--brass-ink); letter-spacing: 0.01em; }
.tl-years { font-size: 0.82rem; color: var(--ink-faint); font-weight: 500; letter-spacing: 0.04em; }
.tl-role { font-size: 1.16rem; font-weight: 600; color: var(--forest); line-height: 1.3; }
.tl-desc { margin-top: 0.4rem; color: var(--ink-soft); font-size: 1rem; max-width: 62ch; }

/* ============================================================
   PERSPECTIVES
   ============================================================ */
.perspectives {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background:
    radial-gradient(100% 70% at 0% 100%, rgba(157,180,193,0.18), transparent 55%),
    var(--paper-2);
  border-top: 1px solid var(--line-soft);
}
.quote-block {
  max-width: 900px; margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center; padding-inline: clamp(0px, 3vw, 40px);
}
.quote-block blockquote p {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.35rem);
  line-height: 1.32; color: var(--forest); letter-spacing: -0.01em;
}
.quote-block cite {
  display: block; margin-top: 1.4rem; font-style: normal;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-ink); font-weight: 600;
}
.quote-block cite::before { content: "— "; }

.perspectives-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.perspectives-intro .section-eyebrow { display: block; margin-bottom: 0.8rem; }
.perspectives-intro .section-title { margin-bottom: 0; }

.venue-list { list-style: none; display: flex; flex-direction: column; }
.venue-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 1.05rem 0; border-top: 1px solid var(--line);
}
.venue-list li:last-child { border-bottom: 1px solid var(--line); }
.venue-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--forest); }
.venue-topic { font-size: 0.92rem; color: var(--ink-faint); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--forest-2) 0%, var(--forest) 45%, var(--forest-deep) 100%);
  color: var(--cream);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.contact-bg { position: absolute; inset: auto 0 0 0; z-index: 0; line-height: 0; }
.contact-bg .ridges--footer { width: 100%; height: auto; }
.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}
.contact-intro .section-eyebrow { display: block; margin-bottom: 0.9rem; }
.contact-intro .section-title { margin-bottom: 1.2rem; }
.contact-meta {
  list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.7rem;
}
.contact-meta li { display: flex; align-items: center; gap: 12px; color: var(--cream-soft); font-size: 1rem; }
.contact-meta span { color: var(--brass-2); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: rgba(243, 236, 221, 0.06);
  border: 1px solid rgba(243, 236, 221, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  backdrop-filter: blur(4px);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.04em; color: var(--cream); }
.field .opt { color: var(--cream-soft); font-weight: 400; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem;
  color: var(--cream);
  background: rgba(20, 36, 32, 0.5);
  border: 1px solid rgba(243, 236, 221, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.7em 0.85em;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c79a52' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85em center; padding-right: 2.4em;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(216,205,182,0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass-2);
  background: rgba(20, 36, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(199,154,82,0.22);
}
.field select option { color: #1c1a14; background: var(--paper); }

.form-foot { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.2rem; }
.contact-form .btn-primary { background: var(--brass); color: #20150a; }
.contact-form .btn-primary:hover { background: var(--brass-2); }
.form-note { font-size: 0.9rem; color: var(--cream-soft); min-height: 1.2em; }
.form-note.is-success { color: #bfe3c8; }
.form-note.is-error { color: #f0c4a8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-deep); color: var(--cream-soft);
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.footer-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem 2rem;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand .bm-ring { stroke: var(--cream); opacity: 0.3; }
.footer-brand .bm-ridge-back { fill: var(--haze); }
.footer-brand .bm-ridge-front { fill: var(--cream); }
.footer-name { font-family: var(--font-display); font-size: 1.18rem; color: var(--cream); font-weight: 600; }
.footer-line { font-size: 0.86rem; color: var(--cream-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 22px; justify-content: center; }
.footer-nav a { font-size: 0.92rem; color: var(--cream-soft); transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--brass-2); }
.footer-legal { font-size: 0.82rem; color: rgba(216,205,182,0.6); text-align: right; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-cue-dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 300px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .perspectives-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 720px) {
  /* mobile nav */
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border-radius: 10px; background: transparent;
    border: 1px solid var(--line); z-index: 120;
  }
  .nav-toggle-bar { display: block; width: 20px; height: 2px; background: var(--forest); margin-inline: auto; transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: 96px 24px 32px;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a { padding: 0.85em 0.9em; font-size: 1.05rem; border-radius: 10px; }
  .nav-cta { margin-left: 0; margin-top: 10px; text-align: center; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ""; position: fixed; inset: 0; background: rgba(24,33,30,0.4); z-index: 90;
  }

  .contact-form { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 90px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
}

@media (max-width: 460px) {
  .card-grid { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
