/* =====================================================================
   Glenmoor Corporation — styles.css
   Private holdings & advisory group. United Kingdom.
   Aesthetic: dark-led heritage — pine, brass, ivory.
   Signature device: topographic contour lines.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Surfaces — moorland greens */
  --pine:        #0F1A14;
  --pine-2:      #15271E;
  --pine-3:      #1E3427;
  --pine-4:      #27402F;

  /* Light surfaces */
  --bone:        #F3EEE3;
  --bone-2:      #ECE5D6;
  --ivory:       #EFE9DA;

  /* Accent — antique brass */
  --brass:       #C7A859;
  --brass-2:     #DCC388;
  --brass-3:     #A8884A;

  /* Text */
  --ink:         #16271D;
  --ink-soft:    #41544A;
  --sage:        #9CB1A3;
  --sage-2:      #76897C;

  /* Lines */
  --line:        rgba(199, 168, 89, .22);
  --line-soft:   rgba(239, 233, 218, .12);
  --line-dark:   rgba(22, 39, 29, .14);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1220px;
  --gutter: clamp(1.25rem, 4.5vw, 3.25rem);
  --radius: 3px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(.22, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--pine);
  color: var(--ivory);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 1px; }

/* --------------------------- Typography ---------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.012em;
  color: var(--ivory);
  font-variation-settings: "opsz" 120;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { max-width: 70ch; }
.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ivory);
  max-width: 62ch;
}
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--ink); }
.section--light .lead { color: var(--ink-soft); }
.section--light { color: var(--ink-soft); }

/* Eyebrows — encode what a section IS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow--centered { justify-content: center; }
.eyebrow--centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow--bare::before { display: none; }

/* ----------------------------- Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: clamp(4rem, 3rem + 6vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 2.4rem + 3vw, 4.8rem); }
.section--light { background: var(--bone); color: var(--ink-soft); }
.section--bone2 { background: var(--bone-2); color: var(--ink-soft); }
.section--alt { background: var(--pine-2); }
.section--deep { background: linear-gradient(180deg, var(--pine) 0%, var(--pine-2) 100%); }

.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 1.8rem + 2vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__lede { margin-top: 1rem; color: var(--sage); font-size: 1.08rem; }
.section--light .section-head__lede { color: var(--ink-soft); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--2 { grid-template-columns: 1fr 1fr; }
@media (min-width: 880px) {
  .split { grid-template-columns: 0.92fr 1.08fr; }
}

/* ------------------------- Top bar --------------------------------- */
.topbar {
  background: var(--pine);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--sage);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__meta { letter-spacing: 0.04em; }
.topbar__meta strong { color: var(--ivory); font-weight: 500; letter-spacing: 0.08em; }
.topbar__links { display: flex; align-items: center; gap: 1.25rem; }
.topbar__link { display: inline-flex; align-items: center; gap: 0.45rem; transition: color .25s var(--ease); }
.topbar__link:hover { color: var(--brass-2); }
.topbar__link svg { width: 14px; height: 14px; }
.topbar__divider { width: 1px; height: 14px; background: var(--line-soft); }
@media (max-width: 720px) {
  .topbar__meta { display: none; }
  .topbar__links .topbar__divider,
  .topbar__link[href*="europeantechnical"] { display: none; }
}

/* --------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 26, 20, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(15, 26, 20, 0.96); border-bottom-color: var(--line); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--ivory);
}
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.28rem;
}

/* Nav */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  border-radius: var(--radius);
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--brass-2); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--brass-2); }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius);
}
.nav-toggle__bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle__bar:nth-child(1) { top: 15px; }
.nav-toggle__bar:nth-child(2) { top: 21px; }
.nav-toggle__bar:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle__bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 120px 0 auto 0;
    background: var(--pine-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.75rem;
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__link {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  /* Main-bar call button becomes a compact, accessible icon on mobile.
     Text is visually hidden (not display:none) so assistive tech still announces it. */
  .header__actions .btn--phone > span {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .header__actions .btn--phone { padding: 0.6rem 0.72rem; }
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brass);
  color: var(--pine);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 24px -12px rgba(199, 168, 89, 0.6);
}
.btn--primary:hover { background: var(--brass-2); color: var(--pine); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-2); background: rgba(199, 168, 89, 0.06); }
.btn--light {
  background: var(--ink);
  color: var(--bone);
}
.btn--light:hover { background: var(--pine-3); color: var(--ivory); }
.btn--outline-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(22, 39, 29, 0.28);
}
.btn--outline-light:hover { border-color: var(--ink); background: rgba(22, 39, 29, 0.05); }
.btn--whatsapp {
  background: #25D366;
  color: #063d1c;
  font-weight: 700;
  box-shadow: 0 8px 24px -12px rgba(37, 211, 102, 0.7);
}
.btn--whatsapp:hover { background: #2be673; color: #063d1c; }
.btn--phone {
  background: transparent;
  color: var(--ivory);
  border-color: var(--brass-dim, rgba(199, 168, 89, 0.5));
}
.btn--phone:hover { background: rgba(199, 168, 89, 0.1); border-color: var(--brass); color: var(--brass-2); }
.btn--phone strong { font-weight: 700; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1.02rem; }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brass);
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--brass-2); gap: 0.65rem; }
.section--light .link-arrow { color: var(--brass-3); }
.section--light .link-arrow:hover { color: var(--ink); }

/* ----------------------- Topographic motif ------------------------- */
.topo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.topo svg { position: absolute; width: 100%; height: 100%; }
.topo--drift svg { animation: topo-drift 60s linear infinite; }
@keyframes topo-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-160px, -90px, 0); }
}

.topo-rule {
  display: block;
  width: 100%;
  height: 46px;
  color: var(--brass);
  opacity: 0.5;
}
.section--light .topo-rule { color: var(--brass-3); opacity: 0.35; }
.topo-rule svg { width: 100%; height: 100%; display: block; }

/* ------------------------------ Hero ------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 80% 0%, var(--pine-3) 0%, var(--pine) 55%);
  padding-block: clamp(4.5rem, 3rem + 7vw, 8.5rem);
}
.hero__topo { z-index: 0; color: var(--brass); opacity: 0.16; }
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.4fr 0.9fr; } }

.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2.7rem, 1.6rem + 5vw, 5.4rem); line-height: 1.02; }
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  font-variation-settings: "opsz" 144;
}
.hero__lede { margin-top: 1.6rem; color: var(--sage); font-size: 1.18rem; max-width: 52ch; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__meta {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
}
.hero__meta-item .num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brass);
  display: block;
  line-height: 1;
}
.hero__meta-item .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sage);
  margin-top: 0.5rem;
  display: block;
  max-width: 18ch;
}

/* Hero seal — a engraved crest-like mark */
.hero__seal { position: relative; justify-self: center; }
@media (max-width: 979px) { .hero__seal { display: none; } }
.seal {
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(199,168,89,0.08), transparent 70%);
}
.seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
}
.seal__inner { text-align: center; padding: 1rem; }
.seal__crest { width: 64px; height: 64px; margin: 0 auto 0.8rem; color: var(--brass); }
.seal__est {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.5rem;
}
.seal__name { font-family: var(--serif); font-size: 1.3rem; color: var(--ivory); letter-spacing: 0.02em; }
.seal__line { width: 34px; height: 1px; background: var(--brass); margin: 0.7rem auto; opacity: 0.6; }
.seal__motto { font-family: var(--serif); font-style: italic; font-size: 0.92rem; color: var(--brass-2); }

/* --------------------------- Page hero ----------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--pine-2), var(--pine));
  padding-block: clamp(3rem, 2.4rem + 4vw, 5.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__topo { color: var(--brass); opacity: 0.1; }
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero__title { margin-top: 0.4rem; }
.page-hero__lede { margin-top: 1.3rem; color: var(--sage); font-size: 1.15rem; max-width: 60ch; }

/* Breadcrumbs */
.crumbs { font-size: 0.82rem; color: var(--sage); }
.crumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; }
.crumbs__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.crumbs__item + .crumbs__item::before { content: "/"; color: var(--sage-2); opacity: 0.7; }
.crumbs__link:hover { color: var(--brass-2); }
.crumbs__current { color: var(--ivory); }

/* --------------------------- Capabilities -------------------------- */
.caps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section--light .caps { background: var(--line-dark); border-color: var(--line-dark); }
.cap {
  background: var(--pine-2);
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  position: relative;
  transition: background .35s var(--ease);
}
.cap:hover { background: var(--pine-3); }
.section--light .cap { background: var(--bone); }
.section--light .cap:hover { background: #fff; }
.cap__head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.9rem; }
.cap__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brass);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.cap:hover .cap__icon { border-color: var(--brass); }
.cap__icon svg { width: 22px; height: 22px; }
.section--light .cap__icon { border-color: rgba(168,136,74,0.4); color: var(--brass-3); }
.cap__title { font-size: 1.32rem; margin-top: 0.1rem; }
.cap__text { color: var(--sage); font-size: 1rem; }
.section--light .cap__text { color: var(--ink-soft); }
.cap__tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.section--light .cap__tag { color: var(--brass-3); }
@media (min-width: 620px) { .caps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .caps { grid-template-columns: 1fr 1fr 1fr; } }

/* ----------------------------- Process ----------------------------- */
.process { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem) 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
}
.section--light .step { border-top-color: var(--line-dark); }
.step:first-child { border-top: 0; padding-top: 0.5rem; }
.step__head { display: flex; align-items: baseline; gap: 1.1rem; }
.step__num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0.05em;
  flex: none;
  min-width: 2.5rem;
}
.step__title { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem); }
.step__body { color: var(--sage); padding-left: 0; }
.section--light .step__body { color: var(--ink-soft); }
@media (min-width: 760px) {
  .step {
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.4fr) minmax(0, 1fr);
    align-items: baseline;
    gap: clamp(1.5rem, 3vw, 3rem);
  }
  .step__head { display: contents; }
  .step__title { grid-column: 2; }
  .step__body { grid-column: 3; padding-left: 0; }
}

/* ------------------------------ Stats ------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--pine-2);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem);
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.2rem);
  font-weight: 600;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num small { font-size: 0.5em; color: var(--brass-2); font-weight: 500; margin-left: 0.1em; }
.stat__label {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--sage);
  max-width: 26ch;
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ----------------------------- Values ------------------------------ */
.values { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.value {
  padding: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(199,168,89,0.04), transparent);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.value:hover { border-color: var(--brass-dim, rgba(199,168,89,0.5)); transform: translateY(-3px); }
.section--light .value { border-color: var(--line-dark); background: #fff; }
.section--light .value:hover { border-color: var(--brass-3); }
.value__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value__text { color: var(--sage); font-size: 0.98rem; }
.section--light .value__text { color: var(--ink-soft); }
.value__mark { color: var(--brass); font-family: var(--serif); font-size: 1.6rem; line-height: 1; display: block; margin-bottom: 0.7rem; }
@media (min-width: 620px) { .values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .values { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------- Sectors ----------------------------- */
.sectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.sector {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--pine-2);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.sector:hover { border-color: var(--brass); transform: translateX(4px); background: var(--pine-3); }
.section--light .sector { background: var(--bone); border-color: var(--line-dark); }
.section--light .sector:hover { border-color: var(--brass-3); background: #fff; }
.sector__mark {
  font-family: var(--serif);
  font-size: 0.8rem; letter-spacing: 0.14em;
  color: var(--brass);
  width: 2.4rem;
}
.section--light .sector__mark { color: var(--brass-3); }
.sector__title { font-family: var(--serif); font-size: 1.12rem; color: var(--ivory); display: block; }
.section--light .sector__title { color: var(--ink); }
.sector__text { font-size: 0.88rem; color: var(--sage); }
.section--light .sector__text { color: var(--ink-soft); }
@media (min-width: 760px) { .sectors { grid-template-columns: 1fr 1fr; } }

/* Regions block */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.region {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ivory);
}
.section--light .region { color: var(--ink); border-color: var(--line-dark); }
.region svg { width: 15px; height: 15px; color: var(--brass); }

/* ---------------------------- CTA band ----------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pine-3), var(--pine-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band__topo { color: var(--brass); opacity: 0.1; }
.cta-band__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta-band__title { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem); }
.cta-band__lede { margin: 1rem auto 0; color: var(--sage); }
.cta-band__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ------------------------------ Pullquote -------------------------- */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ivory);
  max-width: 22ch;
  position: relative;
  padding-left: 1.5rem;
}
.section--light .pullquote { color: var(--ink); }
.pullquote::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4em; bottom: 0.4em;
  width: 2px;
  background: var(--brass);
}
.pullquote cite {
  display: block;
  margin-top: 1.3rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ------------------------------- FAQ ------------------------------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq__item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--pine-2);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq__item.open { border-color: var(--line); }
.section--light .faq__item { background: var(--bone); border-color: var(--line-dark); }
.section--light .faq__item.open { border-color: var(--brass-3); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
}
.section--light .faq__q { color: var(--ink); }
.faq__q:hover { color: var(--brass-2); }
.faq__icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  color: var(--brass);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.faq__icon::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--sage);
  max-width: 70ch;
}
.section--light .faq__a-inner { color: var(--ink-soft); }

/* ----------------------------- Contact ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.95fr 1.05fr; } }

.info-list { display: grid; gap: 1.4rem; margin-top: 1.5rem; }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.info-item__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brass);
}
.section--light .info-item__icon { border-color: var(--line-dark); color: var(--brass-3); }
.info-item__icon svg { width: 20px; height: 20px; }
.info-item__label {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.25rem; font-weight: 600;
}
.section--light .info-item__label { color: var(--ink-soft); }
.info-item__value { font-size: 1.05rem; color: var(--ivory); }
.section--light .info-item__value { color: var(--ink); }
.info-item__value a:hover { color: var(--brass-2); }
.info-item__sub { font-size: 0.85rem; color: var(--sage); margin-top: 0.15rem; }
.section--light .info-item__sub { color: var(--ink-soft); }

/* Form */
.contact-form {
  background: var(--pine-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
}
.section--light .contact-form { background: #fff; border-color: var(--line-dark); }
.contact-form__title { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form__lede { color: var(--sage); font-size: 0.98rem; margin-bottom: 1.8rem; }
.section--light .contact-form__lede { color: var(--ink-soft); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 0.4rem; }
.form-field label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); font-weight: 600;
}
.section--light .form-field label { color: var(--ink-soft); }
.form-field label .req { color: var(--brass); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--pine);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.78rem 0.9rem;
  color: var(--ivory);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.section--light .form-field input,
.section--light .form-field textarea,
.section--light .form-field select {
  background: var(--bone); color: var(--ink); border-color: var(--line-dark);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(199, 168, 89, 0.16);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7A859' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 18px; padding-right: 2.4rem; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--sage); margin: 0.4rem 0 1.4rem; }
.section--light .form-consent { color: var(--ink-soft); }
.form-consent input { width: auto; margin-top: 0.3rem; accent-color: var(--brass); }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.form-note { font-size: 0.82rem; color: var(--sage-2); }
.section--light .form-note { color: var(--ink-soft); }

/* Hours table */
.hours { display: grid; gap: 0.4rem; margin-top: 0.5rem; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--line-soft); font-size: 0.95rem; }
.section--light .hours__row { border-bottom-color: var(--line-dark); }
.hours__row:last-child { border-bottom: 0; }
.hours__day { color: var(--ivory); }
.section--light .hours__day { color: var(--ink); }
.hours__time { color: var(--sage); }
.section--light .hours__time { color: var(--ink-soft); }

/* ----------------------------- About bits -------------------------- */
.story__lede { font-size: 1.2rem; color: var(--sage); }
.section--light .story__lede { color: var(--ink-soft); }

.timeline { display: grid; gap: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.section--light .timeline::before { background: var(--line-dark); }
.milestone { position: relative; padding: 0 0 1.8rem 2.4rem; }
.milestone:last-child { padding-bottom: 0; }
.milestone::before {
  content: "";
  position: absolute;
  left: 3px; top: 5px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(199, 168, 89, 0.16);
}
.milestone__year { font-family: var(--serif); color: var(--brass); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.03em; }
.milestone__title { font-size: 1.15rem; margin: 0.15rem 0 0.3rem; }
.milestone__text { color: var(--sage); font-size: 0.96rem; }
.section--light .milestone__text { color: var(--ink-soft); }

.leadership { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .leadership { grid-template-columns: 1fr 1fr; } }
.principal {
  padding: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--pine-2);
}
.section--light .principal { background: var(--bone); border-color: var(--line-dark); }
.principal__role { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.principal__title { font-family: var(--serif); font-size: 1.3rem; margin: 0.5rem 0 0.6rem; }
.principal__text { color: var(--sage); font-size: 0.96rem; }
.section--light .principal__text { color: var(--ink-soft); }

/* ---------------------------- Affiliate ---------------------------- */
.affiliate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(199,168,89,0.06), transparent);
}
@media (min-width: 760px) { .affiliate { grid-template-columns: auto 1fr auto; } }
.affiliate__seal {
  width: 72px; height: 72px; flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
}
.affiliate__title { font-size: 1.25rem; }
.affiliate__text { color: var(--sage); font-size: 0.96rem; margin-top: 0.3rem; }
.affiliate__text a { color: var(--brass-2); border-bottom: 1px solid var(--line); }
.affiliate__text a:hover { color: var(--brass); }

/* ----------------------------- Footer ------------------------------ */
.site-footer {
  background: var(--pine);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(3rem, 2.4rem + 3vw, 5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}
@media (min-width: 620px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 940px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .brand__name { font-size: 1.5rem; }
.footer__about { color: var(--sage); margin-top: 1.1rem; font-size: 0.95rem; max-width: 38ch; }
.footer__heading {
  font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; margin-bottom: 1.1rem;
}
.footer__list { display: grid; gap: 0.6rem; }
.footer__link { color: var(--sage); font-size: 0.95rem; transition: color .25s var(--ease); display: inline-block; }
.footer__link:hover { color: var(--brass-2); }
.footer__contact { display: grid; gap: 0.85rem; }
.footer__contact a { color: var(--ivory); }
.footer__contact a:hover { color: var(--brass-2); }
.footer__contact .lbl { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 0.15rem; }
.footer__affiliate {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--sage);
}
.footer__affiliate a { color: var(--brass-2); border-bottom: 1px solid var(--line); }
.footer__affiliate a:hover { color: var(--brass); }
.footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: var(--sage-2);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.footer__legal a:hover { color: var(--brass-2); }

/* Disclaimer note */
.note {
  font-size: 0.82rem;
  color: var(--sage-2);
  line-height: 1.6;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--brass);
  background: rgba(199, 168, 89, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section--light .note { color: var(--ink-soft); background: rgba(168, 136, 74, 0.07); }

/* --------------------------- Reveal anim --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }
.reveal--d4 { transition-delay: .32s; }

/* --------------------------- Utilities ----------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.6rem; }
.mt-2 { margin-top: 1.3rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.cluster { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line-soft); border: 0; margin-block: clamp(2rem, 4vw, 3.5rem); }
.section--light .divider { background: var(--line-dark); }
.bullet-list { display: grid; gap: 0.6rem; }
.bullet-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--sage);
}
.section--light .bullet-list li { color: var(--ink-soft); }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}
.section--light .bullet-list li::before { border-color: var(--brass-3); }
.check-list { display: grid; gap: 0.65rem; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--sage);
}
.section--light .check-list li { color: var(--ink-soft); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 16px; height: 16px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--brass) 0 4px, transparent 5px);
}
.section--light .check-list li::before { border-color: var(--brass-3); background: radial-gradient(circle at 50% 50%, var(--brass-3) 0 4px, transparent 5px); }

/* Skip link */
.skip-link {
  position: absolute;
  left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--brass);
  color: var(--pine);
  padding: 0.6rem 1rem;
  font-weight: 600;
  z-index: 200;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .topo--drift svg { animation: none; }
}
