:root {
  --cream:        #F5F0E6;
  --cream-2:      #EDE6D6;
  --cream-3:      #E3DAC4;
  --forest:       #1F3B2D;
  --forest-deep:  #15291F;
  --forest-soft:  #2E5440;
  --sage:         #C9D6BE;
  --sage-soft:    #DDE5D2;
  --ink:          #1A1A1A;
  --muted:        #5F594D;   /* darkened for AA contrast */
  --muted-2:      #6E6757;   /* darkened for AA contrast */
  --brass:        #8B6F3F;
  --hairline:     rgba(31,59,45,0.12);
  --hairline-2:   rgba(31,59,45,0.25);

  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Caveat', cursive;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1448px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 24px;
  --shadow: 0 18px 48px rgba(31,59,45,0.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 15px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  font-kerning: normal;
  font-feature-settings: "liga" 1, "calt" 1;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
svg { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select, button { font-family: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--forest); color: var(--cream); }

/* visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-forest :focus-visible, .forest :focus-visible { outline-color: var(--sage); }

/* skip link */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 500;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(36px, 4.5vw, 64px); }
.section--tight { padding-block: clamp(24px, 3vw, 40px); }
.section--hero { padding-block: clamp(28px, 4vw, 44px) clamp(32px, 5vw, 48px); }
.section--flush-top { padding-top: clamp(14px, 2vw, 28px); }
.stack > * + * { margin-top: 1.1em; }

/* ---------- 4. Typography ---------- */
.serif   { font-family: var(--serif); font-weight: 400; letter-spacing: -.012em; line-height: 1.04; }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.005em; }
.script  { font-family: var(--script); font-weight: 500; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.012em; }

.t-display { font-family: var(--serif); font-size: clamp(2.6rem, 7.4vw, 6.25rem); line-height: .98; letter-spacing: -.02em; }
.t-h1 { font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 4rem);   line-height: 1.0; }
.t-h2 { font-family: var(--serif); font-size: clamp(1.95rem, 4.2vw, 3.5rem); line-height: 1.02; }
.t-h3 { font-family: var(--serif); font-size: clamp(1.7rem, 3.3vw, 3rem); line-height: 1.05; }
.t-h4 { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; }

.lead  { font-size: clamp(15px, 1.2vw, 16px); line-height: 1.78; color: var(--muted); }
.muted { color: var(--muted); }
.measure { max-width: 460px; }
.measure-lg { max-width: 620px; }

/* underlined italic accent */
.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  position: relative;
  white-space: nowrap;
}
.accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: .06em;
  height: 1px; background: currentColor;
}
.on-forest .accent, .accent.light { color: var(--sage); }

/* eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--forest); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; flex: none; }
.eyebrow.light { color: rgba(245,240,230,.9); }
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,59,45,.28); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--hairline-2); }
.btn--outline:hover { border-color: var(--forest); color: var(--forest); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--forest); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.btn--sage { background: var(--sage); color: var(--forest); }
.btn--sage:hover { background: var(--sage-soft); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: space-between; }
.btn--lg { padding: 16px 28px; }

/* simple text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--forest);
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
}
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-forest .link-arrow { color: var(--sage); }

/* ---------- 6. Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 14px; border-radius: 999px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; white-space: nowrap;
}
.pill .dot { width: 5px; height: 5px; border-radius: 50%; flex: none; }
.pill--online { background: var(--forest); color: var(--cream); }
.pill--online .dot { background: var(--sage); }
.pill--bham { background: var(--sage); color: var(--forest); }
.pill--bham .dot { background: var(--forest); }

/* ---------- 7. Image placeholders ---------- */
.img {
  position: relative; overflow: hidden; border-radius: 22px;
  background:
    radial-gradient(120% 100% at 25% 15%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(165deg, #c8c2b2 0%, #9a9281 100%);
}
.img--warm { background:
    radial-gradient(120% 100% at 25% 15%, rgba(255,255,255,.5), transparent 55%),
    linear-gradient(165deg, #e2cfae 0%, #b69a6c 100%); }
.img--sage { background:
    radial-gradient(120% 100% at 25% 15%, rgba(255,255,255,.45), transparent 55%),
    linear-gradient(165deg, #d4dfc4 0%, #98ad84 100%); }
.img--forest { background:
    radial-gradient(120% 100% at 30% 20%, rgba(220,240,200,.18), transparent 55%),
    linear-gradient(165deg, #2c4d3a 0%, #15291f 100%); }
.img::before {
  content: ''; position: absolute; top: 38%; left: 50%;
  width: 56px; height: 56px; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.4), rgba(255,255,255,.06) 70%);
  border: 1px solid rgba(255,255,255,.35);
}
.img--forest::before { border-color: rgba(220,240,200,.25); }
.img--noglyph::before { display: none; }

/* caption pill inside image */
.img-cap {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(245,240,230,.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.img-cap .title { font-family: var(--serif); font-size: 19px; line-height: 1.1; color: var(--ink); }
.img-cap .sub { font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-top: 3px; }
.img-cap .ic {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--sage-soft); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.img-cap .arrow {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--cream-2); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.img-cap a.arrow:hover { background: var(--sage); transform: translateX(3px); }

/* decorative watermark */
.watermark {
  position: absolute; right: -30px; bottom: -120px;
  font-family: var(--serif); font-style: italic; font-size: 320px; line-height: 1;
  color: rgba(245,240,230,.045); pointer-events: none; user-select: none;
}

/* ---------- 8. Header ---------- */
.stickywrap {
  position: sticky; top: 0; z-index: 90;
  padding: 14px var(--gutter) 0;
  background: linear-gradient(180deg, #ECE7D8 0%, #ECE7D8 78%, transparent 100%);
}
.header-inner { max-width: var(--maxw); margin-inline: auto; }

.utility {
  background: var(--forest); color: var(--cream);
  height: 36px; padding: 0 24px; border-radius: 999px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.utility a { color: var(--cream); text-decoration: none; opacity: .9; transition: opacity .2s; }
.utility a:hover { opacity: 1; }
.utility .sep { opacity: .35; margin: 0 12px; }

.nav {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 12px 16px 12px 22px;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.stickywrap.is-scrolled .nav { box-shadow: 0 10px 30px rgba(31,59,45,.12); }

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo .mark { width: 38px; height: 38px; border-radius: 10px; flex: none; }
.logo .word { font-family: var(--serif); font-size: 22px; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.logo .word i { color: var(--forest); }

.navlinks { display: flex; gap: 30px; justify-content: center; }
.navlinks a { position: relative; font-size: 14px; color: var(--ink); text-decoration: none; padding: 4px 0; transition: color .2s; }
.navlinks a:hover { color: var(--forest); }
.navlinks a.active { color: var(--forest); font-weight: 500; }
.navlinks a.active::after { content: ''; position: absolute; left: 18%; right: 18%; bottom: -6px; height: 1px; background: var(--forest); }

.navright { display: flex; align-items: center; gap: 12px; }
.navcall { display: inline-flex; align-items: center; gap: 7px; margin-right: 8px; font-size: 13px; color: var(--ink); text-decoration: none; transition: color .2s; }
.navcall svg { opacity: .85; }
.navcall-mob { display: none; }
.navcall:hover { color: var(--forest); }
.nav .btn { padding: 11px 18px; }

.navtoggle {
  display: none; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--hairline-2);
  align-items: center; justify-content: center;
}
.navtoggle span, .navtoggle span::before, .navtoggle span::after {
  content: ''; display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.navtoggle span { position: relative; }
.navtoggle span::before { position: absolute; top: -5px; height: 2px; }
.navtoggle span::after { position: absolute; top: 5px; }
body.nav-open .navtoggle span { background: transparent; }
body.nav-open .navtoggle span::before { transform: translateY(5px) rotate(45deg); }
body.nav-open .navtoggle span::after { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.mobnav {
  max-width: var(--maxw); margin: 8px auto 0;
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: 22px; padding: 10px; overflow: hidden;
  display: none;
}
.mobnav a:not(.btn) { display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; text-decoration: none; color: var(--ink); font-size: 16px;
  border-radius: 14px; transition: background .2s; }
.mobnav a:not(.btn):hover, .mobnav a:not(.btn).active { background: var(--cream-2); color: var(--forest); }
.mobnav .btn { margin-top: 6px; }

/* ---------- 9. Cards / panels ---------- */
.panel {
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 64px);
}
.panel--pad-sm { padding: clamp(24px, 3vw, 40px); }
.band {
  position: relative; overflow: hidden;
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 64px);
}
.band--forest { background: var(--forest); color: var(--cream); }
.band--forest .muted, .band--forest .lead { color: rgba(245,240,230,.78); }
.band--cream { background: var(--cream); border: 1px solid var(--hairline); }

/* ---------- 10. Footer ---------- */
.footer { background: var(--forest); color: var(--cream); position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 80px) var(--gutter) 32px; }
.footer-inner { max-width: var(--maxw); margin-inline: auto; position: relative; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.6fr; gap: clamp(32px, 4vw, 56px);
  padding-bottom: 48px; border-bottom: 1px solid rgba(245,240,230,.16);
}
.footer-mark { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 22px; }
.footer-brand { font-family: var(--serif); font-size: 36px; margin-bottom: 14px; color: var(--cream); }
.footer-brand i { font-style: italic; }
.footer p { font-size: 14px; line-height: 1.7; color: rgba(245,240,230,.68); }
.footer h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(245,240,230,.72); text-decoration: none; padding: 5px 0; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer .reg a { color: var(--sage); text-decoration: underline; }
.footer .reg strong { color: var(--sage); font-weight: 500; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(245,240,230,.08);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: .04em; transition: background .2s; }
.footer-socials a:hover { background: rgba(245,240,230,.18); }
.footer-tagline span { display: block; }
.footer-tagline .small { font-size: 12px; color: rgba(245,240,230,.55); letter-spacing: .08em; text-transform: uppercase; }
.footer-tagline .big { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--cream); }

.footer-bottom { position: relative; padding-top: 26px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(245,240,230,.6); }
.footer-bottom .legal { letter-spacing: .02em; text-transform: none; max-width: 70ch; line-height: 1.6; }
.footer-bottom .strap { letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.footer-big {
  position: absolute; right: -30px; bottom: -140px;
  font-family: var(--serif); font-style: italic; font-size: 360px; line-height: 1;
  color: rgba(245,240,230,.04); pointer-events: none; user-select: none;
}

/* ---------- 11. WhatsApp float ---------- */
.whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25683f; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(31,59,45,.4);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.whatsapp:hover { transform: scale(1.07); background: var(--forest-soft); }

/* ============================================================
   12. Scroll reveal animations
   ============================================================ */
/* Content is visible by default; the .js gate only hides it when JS can reveal it,
   so the site degrades gracefully if the script fails to load. */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.js .reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .04s; }
.js .reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .12s; }
.js .reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .20s; }
.js .reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .28s; }
.js .reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .36s; }
.js .reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .44s; }
.js .reveal-stagger.is-visible > *:nth-child(7){ transition-delay: .52s; }
.js .reveal-stagger.is-visible > *:nth-child(8){ transition-delay: .60s; }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.spin { animation: spin 18s linear infinite; }

/* ============================================================
   13. HERO (home / about)
   ============================================================ */
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: stretch; }
.hero__copy { display: flex; flex-direction: column; justify-content: space-between; min-height: 600px; padding-top: 8px; }
.hero__title { margin: 22px 0 24px; }
.hero__media { position: relative; min-height: 600px; }
.hero__media .img { position: absolute; inset: 0; border-radius: 24px; }
.hero__media .img-cap { justify-content: flex-start; gap: 16px; }
.hero__media .img-cap .title { font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -.005em; }

/* Home & About heroes fit within one laptop screen (MacBook 13/14/16).
   Type scales with both width and height so it never overflows the viewport. */
@media (min-width: 861px) {
  .section--hero.hero--fit {
    /* min() caps the hero height itself — max-height would lose to min-height and let it stretch tall when zoomed out */
    min-height: min(calc(100vh - 150px), 660px);
    min-height: min(calc(100svh - 150px), 660px);
    display: flex;
    align-items: stretch;         /* left + right columns equal height, top & bottom aligned */
    padding-block: clamp(12px, 2vh, 24px);
  }
  .hero--fit > .container { width: 100%; display: flex; align-items: stretch; }
  .hero--fit .hero__grid { width: 100%; }
  .hero--fit .hero__copy { min-height: 0; }
  .hero--fit .hero__media { min-height: 0; }
  .hero--fit .t-display { font-size: clamp(2.9rem, 5.4vw, 5.5rem); line-height: 0.98; }
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.trust .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; background: var(--sage-soft); color: var(--forest); display: flex; align-items: center; justify-content: center; }
.trust .serif { font-size: 22px; line-height: 1.1; }
.trust .meta { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.trust-avatars { display: flex; flex: none; }
.trust-avatars span { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--cream); margin-left: -12px; }
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:nth-child(1) { background: linear-gradient(135deg, #e2cfae, #b69a6c); }
.trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #d4dfc4, #7a8f5e); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #c8c2b2, #7a7464); }
.trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #2c4d3a, #15291f); }
.hero__copy--split { gap: clamp(28px, 4vh, 48px); }   /* minimum gap above the buttons when content fills the column (zoomed out / mobile) */
.hero__bottom { display: flex; flex-direction: column; gap: 26px; }
.hero__bottom .trust { margin-top: 0; }
.trust-head { font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.2; color: var(--ink); }

/* about hero stat row */
.about-stats { display: flex; gap: 22px; align-items: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); color: var(--forest); line-height: 1; }
.about-stats .stat .l { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.about-stats .div { width: 1px; height: 40px; background: var(--hairline); }

.quote-cap { position: absolute; left: 22px; right: 22px; bottom: 22px;
  background: rgba(245,240,230,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 18px 22px; box-shadow: 0 10px 28px rgba(0,0,0,.16); }
.quote-cap .q { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.4; color: var(--ink); }
.quote-cap .by { margin-top: 10px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   14. STATS strip
   ============================================================ */
.stats { background: var(--cream); border: 1px solid var(--hairline); border-radius: 22px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 44px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.stat-cell { display: flex; gap: 16px; align-items: flex-start; }
.stat-cell + .stat-cell { border-left: 1px solid var(--hairline); padding-left: clamp(16px, 2vw, 28px); }
.stat-cell .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; background: var(--sage-soft); color: var(--forest); display: flex; align-items: center; justify-content: center; }
.stat-cell .n { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); line-height: 1; color: var(--forest); }
.stat-cell p { font-size: 11.5px; line-height: 1.5; color: var(--muted); margin-top: 5px; letter-spacing: .02em; }

/* ============================================================
   15. Two pathway cards
   ============================================================ */
.pathways { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pathways .img { height: 420px; }

/* ============================================================
   16. Intro / practice overview
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.collage { position: relative; min-height: 460px; }
.collage .img { position: absolute; border-radius: 18px; }
.collage .c1 { top: 0; left: 20px; width: 56%; height: 220px; transform: rotate(-2deg); }
.collage .c2 { top: 60px; right: 0; width: 58%; height: 280px; transform: rotate(2.5deg); }
.collage .c3 { bottom: 0; left: 18%; width: 50%; height: 180px; transform: rotate(-1deg); }
.spin-badge { position: absolute; right: 24px; bottom: 14px; width: 96px; height: 96px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center; }
.spin-badge svg.ring { position: absolute; inset: 0; }
.spin-badge .core { width: 36px; height: 36px; border-radius: 50%; background: var(--forest); color: var(--cream); display: flex; align-items: center; justify-content: center; }

/* ============================================================
   17. Home services (forest grid)
   ============================================================ */
.home-services { padding-block: clamp(0px,0vw,0px) clamp(56px,9vw,100px); }
.svcgrid-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,60px); align-items: end; margin-bottom: 48px; }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-card { background: rgba(245,240,230,.045); border: 1px solid rgba(245,240,230,.13);
  border-radius: 18px; padding: 28px 26px; min-height: 220px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.svc-card:hover { transform: translateY(-4px); background: rgba(245,240,230,.07); border-color: rgba(245,240,230,.25); }
.svc-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.svc-card__n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--sage); }
.svc-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; color: var(--cream); }
.svc-card p { font-size: 13px; line-height: 1.65; color: rgba(245,240,230,.68); flex: 1; }
.svc-card .link-arrow { margin-top: 18px; }

/* ============================================================
   18. Script CTA (home)
   ============================================================ */
.scriptcta__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: stretch; }
.scriptcta__text { display: flex; flex-direction: column; justify-content: space-between; min-height: 440px; }
.scriptcta__text h2 { font-size: clamp(2.2rem, 4.6vw, 3.75rem); line-height: 1.05; color: var(--cream); }
.scriptcta__text .script { color: var(--sage); font-size: 1.2em; line-height: .9; }
.scriptcta__media { position: relative; border-radius: 24px; overflow: hidden; min-height: 440px; }
.scriptcta__media .img { width: 100%; height: 100%; min-height: 440px; }
.scriptcta__card { position: absolute; left: 32px; right: 32px; bottom: 32px;
  background: rgba(31,59,45,.92); color: var(--cream); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 24px 28px; border-radius: 16px; }
.scriptcta__card h3 { font-size: 26px; color: var(--cream); margin-bottom: 8px; }
.scriptcta__card p { font-size: 13px; line-height: 1.7; color: rgba(245,240,230,.78); }

/* ============================================================
   19. Testimonial
   ============================================================ */
.testimonial p.quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.75rem); line-height: 1.28; max-width: 1040px; }
.testimonial .who { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.testimonial .ava { width: 56px; height: 56px; border-radius: 50%; flex: none; background: linear-gradient(135deg,#e2cfae,#b69a6c); border: 2px solid var(--cream-2); }
.testimonial .name { font-family: var(--serif); font-size: 20px; line-height: 1; }
.testimonial .role { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   20. Articles
   ============================================================ */
.articles__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.tabs { display: flex; gap: 6px; background: var(--cream-2); padding: 6px; border-radius: 999px; }
.tabs button { padding: 8px 18px; border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--ink); transition: background .2s, color .2s; }
.tabs button.active { background: var(--forest); color: var(--cream); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { background: var(--cream); border: 1px solid var(--hairline); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card .img { height: 220px; border-radius: 0; }
.article-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.article-card .date { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.article-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 12px; }
.article-card p { font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; flex: 1; }
.article-card .btn { align-self: flex-start; }

/* ============================================================
   21. About — timeline / approach / credentials
   ============================================================ */
.split-head { display: grid; grid-template-columns: .5fr 1fr; gap: clamp(32px, 6vw, 80px); margin-bottom: 48px; align-items: start; }
.lead-grid { display: grid; grid-template-columns: .4fr 1fr; gap: clamp(32px, 6vw, 80px); }
.lead-grid .big { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; }

.timeline { border-top: 1px solid var(--forest); }
.timeline-row { display: grid; grid-template-columns: 120px 1.4fr 2fr; gap: 40px; padding: 34px 0;
  border-bottom: 1px solid var(--hairline); align-items: start; transition: background .25s var(--ease); }
.timeline-row:hover { background: rgba(31,59,45,.03); }
.timeline-row .yr { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--forest); }
.timeline-row h4 { font-size: 26px; line-height: 1.2; }
.timeline-row p { font-size: 14px; line-height: 1.75; color: var(--muted); }

.approach__grid { display: grid; grid-template-columns: .5fr 1fr; gap: clamp(32px, 6vw, 80px); position: relative; }
.approach h3 { font-size: clamp(2rem, 4.4vw, 4rem); color: var(--cream); }
.approach p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.8; color: rgba(245,240,230,.84); }
.approach .script { font-family: var(--script); color: var(--sage); font-size: 1.5em; line-height: .9; }

.credentials { display: grid; grid-template-columns: .5fr 1fr; gap: clamp(32px, 6vw, 80px); }
.cred-row { padding: 22px 0; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: baseline; }
.cred-row:first-child { border-top: 1px solid var(--forest); }
.cred-row .code { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--forest); }
.cred-row .desc { font-size: 15px; line-height: 1.6; }

/* ============================================================
   22. Services page
   ============================================================ */
.svc-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,4vw,60px); align-items: end; }
.svcnav { background: var(--cream); border: 1px solid var(--hairline); border-radius: 22px; padding: 14px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.svcnav a { background: var(--cream-2); border-radius: 14px; padding: 18px 16px; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 8px; min-height: 88px; transition: background .2s, transform .2s var(--ease); }
.svcnav a:hover { background: var(--sage-soft); transform: translateY(-2px); }
.svcnav .top { display: flex; justify-content: space-between; align-items: center; }
.svcnav .n { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--forest); }
.svcnav .dot { width: 6px; height: 6px; border-radius: 50%; }
.svcnav .dot.online { background: var(--forest); }
.svcnav .dot.bham { background: var(--sage); }
.svcnav .t { font-size: 13px; line-height: 1.3; font-weight: 500; }

.svc-sec { scroll-margin-top: 120px; }
.svc-sec .band { padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px); }
.svc-sec__grid { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(36px, 6vw, 80px); position: relative; }
.svc-sec__head .row1 { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.svc-sec__head .n { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--forest); }
.band--forest .svc-sec__head .n { color: var(--sage); }
.svc-sec__head h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 22px; }
.svc-sec__head .em { font-family: var(--serif); font-style: italic; color: var(--forest); }
.band--forest .svc-sec__head .em { color: var(--sage); }
.svc-list { border-top: 1px solid var(--hairline-2); }
.band--forest .svc-list { border-top-color: rgba(245,240,230,.2); }
.svc-list-row { display: grid; grid-template-columns: 1.1fr 1.4fr .5fr; gap: 32px; padding: 26px 0;
  border-bottom: 1px solid var(--hairline); align-items: start; }
.band--forest .svc-list-row { border-bottom-color: rgba(245,240,230,.1); }
.svc-list-row h4 { font-size: 21px; font-weight: 400; line-height: 1.2; }
.svc-list-row p { font-size: 13px; line-height: 1.75; color: var(--muted); }
.band--forest .svc-list-row p { color: rgba(245,240,230,.66); }
.svc-list-row .price { text-align: right; }
.svc-list-row .price .l { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.svc-list-row .price .v { font-family: var(--serif); font-size: 18px; color: var(--forest); margin-top: 4px; white-space: nowrap; }
.band--forest .svc-list-row .price .l { color: rgba(245,240,230,.6); }
.band--forest .svc-list-row .price .v { color: var(--sage); }

/* ============================================================
   23. Bookings page
   ============================================================ */
.bk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bk-card { border-radius: 22px; padding: 36px 32px 32px; min-height: 480px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; background: var(--cream); border: 1px solid var(--hairline);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bk-card--dark { background: var(--forest); color: var(--cream); border: none; }
.bk-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; position: relative; }
.bk-card__n { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--forest); }
.bk-card--dark .bk-card__n { color: var(--sage); }
.bk-card h3 { font-size: clamp(2rem, 3vw, 2.875rem); line-height: 1; margin-bottom: 18px; position: relative; }
.bk-card h3 .em { font-family: var(--serif); font-style: italic; color: var(--forest); }
.bk-card--dark h3 .em { color: var(--sage); }
.bk-card p { font-size: 14px; line-height: 1.75; color: var(--muted); flex: 1; margin-bottom: 24px; position: relative; }
.bk-card--dark p { color: rgba(245,240,230,.72); }
.bk-card .meta { padding: 14px 0; border-top: 1px solid var(--hairline); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; position: relative; }
.bk-card--dark .meta { border-top-color: rgba(245,240,230,.16); color: rgba(245,240,230,.6); }
.bk-card .btn { position: relative; }

.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--forest); }
.how-step { padding: 32px 28px 0; }
.how-step + .how-step { border-left: 1px solid var(--hairline-2); }
.how-step .n { font-family: var(--serif); font-style: italic; font-size: 38px; color: var(--forest); margin-bottom: 16px; }
.how-step h4 { font-size: 24px; margin-bottom: 12px; }
.how-step p { font-size: 13px; line-height: 1.75; color: var(--muted); }

.fees-row { display: grid; grid-template-columns: 1.6fr 1fr .8fr .8fr; gap: 24px; padding: 22px 0;
  border-bottom: 1px solid var(--hairline); align-items: center; }
.fees-wrap { border-top: 1px solid var(--forest); }
.fees-row .svc { font-family: var(--serif); font-size: 21px; }
.fees-row .dur { font-size: 13px; color: var(--muted); }
.fees-row .price { text-align: right; font-family: var(--serif); font-size: 18px; color: var(--forest); white-space: nowrap; }

.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.expect-grid h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; margin-bottom: 18px; }
.expect-grid .band--forest h3 { color: var(--cream); }

/* ============================================================
   24. Contact page
   ============================================================ */
.ct-details { background: var(--cream); border: 1px solid var(--hairline); border-radius: 22px; padding: 14px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ct-card { border-radius: 16px; padding: 28px 24px; min-height: 160px; text-decoration: none; color: var(--ink);
  background: var(--cream-2); display: flex; flex-direction: column; transition: transform .25s var(--ease), background .25s var(--ease); }
.ct-card:hover { transform: translateY(-3px); background: var(--sage-soft); }
.ct-card--dark { background: var(--forest); color: var(--cream); }
.ct-card--dark:hover { background: var(--forest-soft); }
.ct-card .v { font-family: var(--serif); font-size: 21px; line-height: 1.2; margin: 14px 0 8px; word-break: break-word; }
.ct-card .d { font-size: 12px; color: var(--muted); margin-top: auto; }
.ct-card--dark .d { color: rgba(245,240,230,.72); }

.ct-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,60px); align-items: start; }
.ct-info__sub { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 32px; margin-top: 4px; border-top: 1px solid var(--hairline); }
.ct-info__sub .serif { font-size: 18px; line-height: 1.5; }
.ct-info__sub .serif .hl { font-style: italic; color: var(--forest); }
.ct-map { width: 100%; height: 460px; border-radius: 18px; position: relative; }
.ct-map .img-cap { right: auto; max-width: 80%; }

.redirects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; }
.redirect-card { background: rgba(245,240,230,.05); border: 1px solid rgba(245,240,230,.13); border-radius: 16px;
  padding: 32px 28px; text-decoration: none; color: var(--cream); display: flex; flex-direction: column; min-height: 220px;
  transition: transform .3s var(--ease), background .3s var(--ease); }
.redirect-card:hover { transform: translateY(-4px); background: rgba(245,240,230,.1); }
.redirect-card .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.redirect-card .em { font-family: var(--serif); font-style: italic; font-size: 36px; line-height: 1.05; color: var(--cream); margin: 32px 0 auto; }
.redirect-card p { font-size: 13px; line-height: 1.7; color: rgba(245,240,230,.66); margin-top: 20px; }

/* ============================================================
   25. Forms
   ============================================================ */
.form-grid { display: grid; grid-template-columns: .5fr 1fr; gap: clamp(32px, 6vw, 80px); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field > .eyebrow { margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--hairline-2);
  font-family: var(--serif); font-size: 18px; color: var(--ink); padding: 12px 0; outline: none;
  transition: border-color .2s; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231F3B2D' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 24px; cursor: pointer; }
.field textarea { min-height: 120px; resize: vertical; background: var(--cream-2); border: 1px solid var(--hairline-2);
  border-radius: 8px; font-family: var(--sans); font-size: 14px; padding: 14px 16px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--forest); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.seg { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.seg button { flex: 1 1 auto; padding: 11px 14px; border: 1px solid var(--hairline-2); border-radius: 999px;
  font-size: 12px; color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.seg button:hover { border-color: var(--forest); }
.seg button.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; font-size: 12px; color: var(--muted); line-height: 1.6; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin-top: 1px; flex: none; accent-color: var(--forest); cursor: pointer; }
.consent a { color: var(--ink); }

.form-aside .quick { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.form-aside .quick a { display: block; font-size: 15px; color: var(--ink); text-decoration: none; margin-bottom: 6px; transition: color .2s; }
.form-aside .quick a:hover { color: var(--forest); }

.form-success { display: none; align-items: flex-start; gap: 16px; padding: 22px 24px; border-radius: 16px;
  background: var(--sage-soft); color: var(--forest); border: 1px solid var(--sage); margin-top: 8px; }
.form-success.show { display: flex; }
.form-success .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center; flex: none; }
.form-success h4 { font-size: 20px; margin-bottom: 4px; }
.form-success p { font-size: 13px; line-height: 1.6; }
.field-error { color: #9c3b2e; font-size: 12px; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #9c3b2e; }
.field.invalid .field-error { display: block; }

/* generic CTA two-col */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,60px); align-items: center; }
.cta-center { text-align: center; }
.cta-center .eyebrow { justify-content: center; }
.cta-center .btn-row { justify-content: center; }

/* ============================================================
   26. Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-cards, .article-grid, .bk-cards, .redirects { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-step:nth-child(3) { border-left: none; }
  .how-step { border-top: 1px solid var(--hairline-2); }
  .svcnav { grid-template-columns: repeat(3, 1fr); }
  .ct-details { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .navlinks, .navcall { display: none; }
  .navtoggle { display: inline-flex; }
  .navcall-mob { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--hairline-2); color: var(--forest); flex: none; transition: background .2s; text-decoration: none; }
  .navcall-mob:hover { background: var(--cream-2); }
  .nav .navright > .btn { display: none; }
  body.nav-open .mobnav { display: block; }
  .nav { grid-template-columns: auto auto; justify-content: space-between; }

  .hero__grid, .intro__grid, .pathways, .scriptcta__grid, .expect-grid,
  .cta-split, .ct-info__grid, .form-grid, .lead-grid, .split-head,
  .svcgrid-head, .credentials, .approach__grid, .svc-sec__grid, .svc-hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__copy, .hero__media { min-height: 0; }
  .hero__media .img { position: relative; inset: auto; height: 380px; }
  .hero__media { min-height: 0; }
  .pathways .img { height: 320px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-cell + .stat-cell { border-left: none; padding-left: 0; }
  .form-fields { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 90px 1fr; gap: 16px 20px; }
  .timeline-row p { grid-column: 1 / -1; }
  .cred-row { grid-template-columns: 120px 1fr; gap: 20px; }
  .svc-list-row { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .svc-list-row p { grid-column: 1 / -1; }
  .fees-row { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .fees-row .dur { grid-column: 1; }
  .fees-row .pill { display: none; }
  .collage { display: none; }
  .testimonial .who { margin-top: 24px; }
  .footer-big { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .svc-cards, .article-grid, .bk-cards, .redirects, .svcnav,
  .ct-details, .footer-grid, .stats, .how-steps { grid-template-columns: 1fr; }
  .stat-cell { align-items: center; }
  .how-step { padding: 24px 0 0; }
  .how-step + .how-step { border-left: none; }
  .utility { font-size: 9px; letter-spacing: .06em; padding: 0 14px; height: 32px; }
  .utility .util-email { display: none; }
  .utility .utility__right .full { display: none; }
  .scriptcta__card { left: 16px; right: 16px; bottom: 16px; padding: 18px 20px; }
  .quote-cap { left: 14px; right: 14px; bottom: 14px; padding: 14px 16px; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .nav .navright > .btn { display: none; }
}

/* ---------- 27. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .spin { animation: none !important; }
}

/* ---------- 28. Print ---------- */
@media print {
  .stickywrap, .whatsapp, .mobnav, .footer-big { display: none !important; }
  body { background: #fff; }
  .band--forest, .bk-card--dark, .footer { background: #fff !important; color: #000 !important; }
}


/* Written by Sarmad */

.navlinks li {
    list-style: none;
}