/* =============================================================================
   BERATUNG — GoDigi Worldwide LLP
   Deep forest green · organic curves · cream editorial panels
   -----------------------------------------------------------------------------
   00  Tokens
   01  Reset & base
   02  Typography
   03  Layout primitives
   04  Buttons, links, form controls
   05  Header, nav, mobile drawer
   06  Hero + organic curve system
   07  Section dividers (arcs)
   08  Split / editorial blocks
   09  Stat band
   10  Services feature panel (sand + overlapping white panels + angled photo)
   11  Accordion rows
   12  Typographic index lists (industries, insights, roles)
   13  Photography bands (duotone)
   14  Reasons, team, quote
   15  Services page (country switcher + service selector)
   16  Contact form
   17  CTA band + footer
   18  Motion / reveals
   19  Reduced motion
   ============================================================================ */

/* ---------------------------------------------------------------- 00 Tokens */
:root {
  /* Brand */
  --forest:        #1B3B2F;
  --forest-deep:   #12291F;
  --green-mid:     #2C5545;
  --sage:          #8FA893;
  --cream:         #EDEAE0;
  --sand:          #E3DFD2;
  --offwhite:      #FBFAF7;
  --ink:           #16211C;
  --muted:         #5A6660;

  /* Derived */
  --sage-dim:      #6E8874;
  --rule:          rgba(22, 33, 28, .14);
  --rule-soft:     rgba(22, 33, 28, .08);
  --rule-light:    rgba(237, 234, 224, .20);
  --rule-light-soft: rgba(237, 234, 224, .10);
  --img-bg:        #D9D4C6;
  --focus:         #2C5545;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(2.85rem, 1.05rem + 7.1vw, 6.75rem);
  --fs-h1:      clamp(2.35rem, 1.25rem + 4.4vw, 4.75rem);
  --fs-h2:      clamp(1.95rem, 1.25rem + 2.9vw, 3.5rem);
  --fs-h2-xl:   clamp(2.35rem, 1.3rem + 4.3vw, 4.6rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + .62vw, 1.65rem);
  --fs-h4:      clamp(1.02rem, .97rem + .26vw, 1.2rem);
  --fs-lead:    clamp(1.05rem, 1rem + .42vw, 1.32rem);
  --fs-body:    clamp(.975rem, .955rem + .1vw, 1.0625rem);
  --fs-sm:      .875rem;
  --fs-xs:      .78rem;
  --fs-eyebrow: .705rem;

  /* Space */
  --gutter:     clamp(20px, 4.2vw, 60px);
  --maxw:       1300px;
  --maxw-text:  62ch;
  --sp-section: clamp(68px, 8vw, 138px);
  --sp-block:   clamp(38px, 4.4vw, 76px);
  --header-h:   68px;

  /* Shape & motion */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 22px;
  --r-organic: clamp(48px, 9vw, 140px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-fast: 180ms var(--ease);
  --t-mid:  280ms var(--ease);
  --t-slow: 380ms var(--ease);
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
}

/* --------------------------------------------------------- 01 Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

img, svg, video { display: block; max-width: 100%; }
img {
  height: auto;
  background-color: var(--img-bg);
  color: transparent;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button { background: none; border: 0; cursor: pointer; }

hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }

::selection { background: var(--forest); color: var(--cream); }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--forest);
  color: var(--offwhite);
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 14px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ------------------------------------------------------------ 02 Typography */
h1, h2, h3, h4, .display, .eyebrow, .stat__value, .btn {
  font-family: var(--font-display);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.024em;
  color: var(--ink);
  text-wrap: balance;
}

h3, h4 { line-height: 1.2; letter-spacing: -.016em; }

.display { font-size: var(--fs-display); line-height: .98; letter-spacing: -.035em; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h2-xl { font-size: var(--fs-h2-xl); line-height: 1.0; letter-spacing: -.033em; }
.h3 { font-size: var(--fs-h3); }
.h4 { font-size: var(--fs-h4); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}

.body-text { color: var(--muted); max-width: var(--maxw-text); text-wrap: pretty; }
.body-text + .body-text { margin-top: 1em; }

.mixed { font-weight: 400; }
.mixed strong { font-weight: 800; letter-spacing: -.04em; }
.mixed em { font-style: normal; color: var(--sage); }

.num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* On-dark context */
.on-dark {
  color: var(--cream);
  --rule: var(--rule-light);
  --rule-soft: var(--rule-light-soft);
  --focus: var(--sage);
  --img-bg: #24483A;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--offwhite); }
.on-dark .eyebrow { color: var(--sage); }
.on-dark .lead, .on-dark .body-text { color: rgba(237, 234, 224, .76); }

/* --------------------------------------------------- 03 Layout primitives */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 980px; }

.section { padding-block: var(--sp-section); position: relative; }
.section--tight { padding-block: clamp(48px, 5.4vw, 96px); }
.section--flush-b { padding-bottom: 0; }
.section--flush-t { padding-top: 0; }

.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-off { background: var(--offwhite); }
.bg-forest { background: var(--forest); }
.bg-forest-deep { background: var(--forest-deep); }
.bg-mid { background: var(--green-mid); }

.section-head { max-width: 720px; margin-bottom: var(--sp-block); }
.section-head--wide { max-width: 900px; }

.grid { display: grid; gap: var(--gutter); }

.split {
  display: grid;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
  .split--wide-right { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .split--top { align-items: start; }
}

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: clamp(20px, 2.4vw, 34px); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: rgba(237, 234, 224, .82); }
.breadcrumb a:hover { color: var(--offwhite); }
.breadcrumb span[aria-current] { color: var(--offwhite); font-weight: 600; }
.breadcrumb .sep { opacity: .5; }

/* Organic media frames */
.media {
  position: relative;
  overflow: hidden;
  background: var(--img-bg);
}
.media img { width: 100%; height: 100%; }
.media--organic { border-radius: var(--r-organic) 6px var(--r-organic) 6px; }
.media--organic-alt { border-radius: 6px var(--r-organic) 6px var(--r-organic); }
.media--soft { border-radius: var(--r-lg); }
.media--16-9 { aspect-ratio: 16 / 9; }
.media--3-2 { aspect-ratio: 3 / 2; }
.media--4-5 { aspect-ratio: 4 / 5; }
.media--1-1 { aspect-ratio: 1 / 1; }
.media--angled { clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%); }

/* Duotone treatment for neutral source photography */
.duotone { position: relative; isolation: isolate; }
.duotone img { filter: grayscale(1) contrast(1.08) brightness(1.02); }
.duotone::after,
.duotone::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.duotone::after {
  background: linear-gradient(135deg, var(--forest) 0%, var(--green-mid) 55%, #35604E 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.duotone::before {
  background: linear-gradient(200deg, rgba(143, 168, 147, .30), rgba(143, 168, 147, 0) 62%);
  mix-blend-mode: screen;
  z-index: 2;
}
.duotone--soft::after { opacity: .82; }

/* ------------------------------------- 04 Buttons, links, form controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65em;
  min-height: 48px;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--forest); color: var(--offwhite); }
.btn--primary:hover { background: var(--green-mid); }

.btn--light { background: var(--offwhite); color: var(--forest); }
.btn--light:hover { background: var(--sand); }

.btn--outline { border-color: var(--rule); color: var(--ink); }
.btn--outline:hover { border-color: var(--forest); background: rgba(27, 59, 47, .06); }

.on-dark .btn--outline { border-color: rgba(237, 234, 224, .38); color: var(--offwhite); }
.on-dark .btn--outline:hover { border-color: var(--offwhite); background: rgba(237, 234, 224, .1); }

.btn--sm { min-height: 42px; padding: .6em 1.2em; font-size: var(--fs-xs); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--forest);
  padding-block: .35em;
  border-bottom: 1px solid currentColor;
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow svg { width: 15px; height: 15px; flex: none; }
.link-arrow:hover { gap: .95em; color: var(--green-mid); }
.on-dark .link-arrow { color: var(--sage); }
.on-dark .link-arrow:hover { color: var(--offwhite); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ------------------------------------------ 05 Header, nav, mobile drawer */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: var(--offwhite);
  transition: background-color var(--t-mid), color var(--t-mid), box-shadow var(--t-mid);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.site-header.is-scrolled {
  background: rgba(251, 250, 247, .92);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  backdrop-filter: saturate(1.5) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--rule-soft);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__mark rect { fill: currentColor; opacity: .12; }
.brand__mark path { stroke: currentColor; }
.site-header.is-scrolled .brand__mark rect { opacity: .1; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.03em;
}
.brand__sub {
  font-size: .555rem;
  letter-spacing: .27em;
  text-transform: uppercase;
  opacity: .68;
  margin-top: .34em;
  font-weight: 500;
}

.site-nav { display: none; }
@media (min-width: 1060px) {
  .site-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
}
.site-nav a {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  padding: .55rem 0;
  opacity: .84;
  transition: opacity var(--t-fast);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { opacity: 1; font-weight: 600; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); opacity: .55; }

.header-end { display: flex; align-items: center; gap: 10px; flex: none; }
.header-cta { display: none; }
@media (min-width: 1060px) { .header-cta { display: inline-flex; } }

.site-header .btn--header {
  border: 1px solid rgba(237, 234, 224, .42);
  color: var(--offwhite);
  min-height: 44px;
}
.site-header .btn--header:hover { background: rgba(237, 234, 224, .14); border-color: var(--offwhite); }
.site-header.is-scrolled .btn--header {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--offwhite);
}
.site-header.is-scrolled .btn--header:hover { background: var(--green-mid); border-color: var(--green-mid); }

/* Burger */
.burger {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(237, 234, 224, .34);
  color: inherit;
  transition: border-color var(--t-fast), background-color var(--t-fast);
}
.site-header.is-scrolled .burger { border-color: var(--rule); }
.burger:hover { background: rgba(237, 234, 224, .12); }
.site-header.is-scrolled .burger:hover { background: rgba(22, 33, 28, .06); }
@media (min-width: 1060px) { .burger { display: none; } }
.burger__box { width: 18px; height: 12px; position: relative; }
.burger__box i {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast);
}
.burger__box i:nth-child(1) { top: 0; }
.burger__box i:nth-child(2) { top: 5.25px; }
.burger__box i:nth-child(3) { top: 10.5px; }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--forest-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-slow), visibility 0s linear var(--t-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--t-slow), visibility 0s;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  flex: none;
}
.drawer__close {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(237, 234, 224, .3);
  color: inherit;
}
.drawer__close:hover { background: rgba(237, 234, 224, .12); }
.drawer__close svg { width: 18px; height: 18px; }
.drawer__body { padding-block: clamp(20px, 5vh, 48px) 40px; flex: 1 0 auto; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.03em;
  padding: .42em 0;
  border-bottom: 1px solid var(--rule-light-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-mid), transform var(--t-mid), color var(--t-fast);
  color: rgba(237, 234, 224, .9);
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a:hover { color: var(--offwhite); }
.drawer__nav a[aria-current="page"] { color: var(--sage); }
.drawer__nav a .idx {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .18em;
  opacity: .45;
}
.drawer__foot {
  margin-top: clamp(28px, 6vh, 56px);
  padding-top: 26px;
  border-top: 1px solid var(--rule-light-soft);
  display: grid;
  gap: 18px;
}
.drawer__foot a.mono { font-size: 1.05rem; font-weight: 500; }
.drawer__curve {
  position: absolute;
  right: -20%;
  bottom: -18%;
  width: 90%;
  max-width: 620px;
  opacity: .5;
  pointer-events: none;
}

/* ------------------------------------- 06 Hero + organic curve system */
.hero {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(46px, 8vw, 96px));
  padding-bottom: 0;
}
.hero__curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  filter: grayscale(1) contrast(1.1);
  opacity: .55;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero--home { min-height: clamp(640px, 92vh, 960px); display: flex; flex-direction: column; }
.hero--home .wrap { display: flex; flex-direction: column; flex: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(143, 168, 147, .38);
  border-radius: 999px;
  padding: .62em 1.1em;
}
.hero__badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex: none;
}

.hero__grid {
  display: grid;
  gap: clamp(38px, 5vw, 64px);
  flex: 1;
  align-items: end;
  padding-block: clamp(38px, 6vw, 78px) clamp(34px, 4.5vw, 60px);
}
@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
    gap: clamp(40px, 5vw, 96px);
  }
}

.hero__headline {
  font-size: var(--fs-display);
  line-height: .95;
  letter-spacing: -.038em;
  font-weight: 400;
  color: var(--offwhite);
  margin: clamp(26px, 4vw, 52px) 0 0;
  text-wrap: balance;
}
.hero__headline .b { font-weight: 800; letter-spacing: -.045em; display: block; }
.hero__headline .t { display: block; }
.hero__headline .s {
  display: block;
  color: var(--sage);
  font-size: .58em;
  letter-spacing: -.028em;
  font-weight: 400;
  margin-top: .18em;
}
.hero__sub { margin-top: clamp(20px, 2.4vw, 30px); max-width: 46ch; color: rgba(237, 234, 224, .78); font-size: var(--fs-lead); line-height: 1.55; }
.hero__actions { margin-top: clamp(26px, 3vw, 38px); }

/* Hero data panel — typographic, not glass cards */
.hero-data { display: grid; gap: 22px; align-content: end; }
.hero-data__row { border-top: 1px solid var(--rule-light); padding-top: 14px; }
.hero-data__k {
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.hero-data__v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.3rem + 2.1vw, 2.9rem);
  letter-spacing: -.035em;
  color: var(--offwhite);
  line-height: 1.05;
  margin-top: .1em;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero-data__delta {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--sage);
  border: 1px solid rgba(143, 168, 147, .4);
  border-radius: 999px;
  padding: .18em .7em;
}
.hero-data__note { font-size: var(--fs-xs); color: rgba(237, 234, 224, .58); margin-top: .45em; letter-spacing: .04em; }

.cov { display: grid; gap: 11px; margin-top: 14px; }
.cov__item { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: center; }
.cov__label { font-size: var(--fs-xs); color: rgba(237, 234, 224, .74); letter-spacing: .05em; }
.cov__pct { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--offwhite); font-variant-numeric: tabular-nums; }
.cov__bar {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(237, 234, 224, .16);
  border-radius: 2px;
  overflow: hidden;
}
.cov__bar i {
  display: block;
  height: 100%;
  background: var(--sage);
  width: 0;
  transition: width 900ms var(--ease);
}

.trust {
  border-top: 1px solid var(--rule-light);
  display: grid;
  gap: 0;
  padding-bottom: clamp(26px, 3vw, 40px);
}
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.05rem 0;
  font-size: var(--fs-sm);
  color: rgba(237, 234, 224, .8);
  letter-spacing: .01em;
  border-bottom: 1px solid var(--rule-light-soft);
}
@media (min-width: 720px) {
  .trust__item { border-bottom: 0; padding-inline-end: 24px; }
  .trust__item + .trust__item { border-left: 1px solid var(--rule-light-soft); padding-inline-start: clamp(20px, 3vw, 42px); }
}
.trust__item svg { width: 18px; height: 18px; flex: none; color: var(--sage); }

/* Page hero (inner pages) */
.hero--page { padding-bottom: clamp(56px, 7vw, 104px); }
.hero--page .hero__inner { max-width: 860px; padding-top: clamp(10px, 2vw, 26px); }
.hero--page h1 { font-size: var(--fs-h1); line-height: 1.0; color: var(--offwhite); font-weight: 700; letter-spacing: -.035em; }
.hero--page .lead { margin-top: clamp(18px, 2vw, 26px); color: rgba(237, 234, 224, .78); }

/* ------------------------------------------------- 07 Section dividers */
.arc-divider { display: block; width: 100%; height: clamp(52px, 7vw, 118px); }
.arc-divider path { fill: currentColor; }
.arc-cream { color: var(--cream); }
.arc-sand { color: var(--sand); }
.arc-off { color: var(--offwhite); }
.arc-forest { color: var(--forest); }
.arc-forest-deep { color: var(--forest-deep); }

/* ------------------------------------------- 08 Split / editorial blocks */
.numbered { display: grid; }
.numbered__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  padding: clamp(16px, 1.8vw, 24px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.numbered__item:last-child { border-bottom: 1px solid var(--rule); }
.numbered__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--sage-dim);
  padding-top: .28em;
  font-variant-numeric: tabular-nums;
}
.on-dark .numbered__no { color: var(--sage); }
.numbered__text { font-size: clamp(1rem, .95rem + .35vw, 1.16rem); line-height: 1.5; color: var(--ink); }
.on-dark .numbered__text { color: rgba(237, 234, 224, .88); }

.badge-float {
  position: absolute;
  z-index: 3;
  background: var(--forest);
  color: var(--offwhite);
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 30px);
  border-radius: var(--r-lg) 4px var(--r-lg) 4px;
  max-width: 230px;
  box-shadow: 0 24px 60px -28px rgba(18, 41, 31, .7);
}
.badge-float__v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem);
  letter-spacing: -.035em;
  line-height: 1;
}
.badge-float__l {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: .5em;
}
.badge-float--br { right: clamp(-10px, -1vw, 0px); bottom: clamp(-16px, -2vw, -8px); }

.figure-wrap { position: relative; }

/* --------------------------------------------------------- 09 Stat band */
.stats {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-light);
}
@media (min-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: clamp(26px, 3vw, 44px) clamp(16px, 2vw, 30px) clamp(26px, 3vw, 44px) 0;
  border-bottom: 1px solid var(--rule-light-soft);
}
@media (min-width: 620px) {
  .stat { border-bottom: 1px solid var(--rule-light-soft); }
  .stat:nth-child(2n) { padding-left: clamp(18px, 2.4vw, 34px); border-left: 1px solid var(--rule-light-soft); }
}
@media (min-width: 1000px) {
  .stat { border-bottom: 0; }
  .stat + .stat { padding-left: clamp(18px, 2.4vw, 34px); border-left: 1px solid var(--rule-light-soft); }
}
.stat__value {
  font-weight: 800;
  font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4.4rem);
  letter-spacing: -.048em;
  line-height: .96;
  color: var(--offwhite);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: .8em;
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ------------------------------ 10 Services feature (sand + overlap) */
.svc-feature {
  position: relative;
  background: var(--cream);
  padding-block: 0 clamp(60px, 7vw, 110px);
  isolation: isolate;
}
.svc-feature__panel {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(100% - clamp(70px, 9vw, 168px));
  background: var(--sand);
  border-bottom-right-radius: clamp(56px, 12vw, 190px);
  z-index: -1;
}
.svc-feature__inner { padding-top: var(--sp-section); }
.svc-feature__head {
  display: grid;
  gap: clamp(20px, 3vw, 46px);
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 64px);
}
@media (min-width: 940px) {
  .svc-feature__head { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}
.svc-feature__title { font-size: var(--fs-h2-xl); line-height: .98; letter-spacing: -.038em; }

.svc-feature__body { display: grid; gap: clamp(22px, 3vw, 40px); align-items: stretch; }
@media (min-width: 940px) {
  .svc-feature__body { grid-template-columns: minmax(0, 1.62fr) minmax(0, .78fr); }
}

.svc-panels { display: grid; gap: clamp(14px, 1.6vw, 22px); }
@media (min-width: 620px) { .svc-panels { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; } }

.svc-panel {
  background: var(--offwhite);
  border-radius: var(--r-lg) var(--r-lg) 4px 4px;
  padding: clamp(22px, 2.4vw, 34px) clamp(20px, 2vw, 28px) clamp(26px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 100%;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  box-shadow: 0 20px 46px -34px rgba(18, 41, 31, .55);
}
@media (min-width: 620px) {
  .svc-panel:nth-child(1) { margin-top: clamp(20px, 3vw, 52px); }
  .svc-panel:nth-child(3) { margin-top: clamp(10px, 1.6vw, 26px); }
}
.svc-panel:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(18, 41, 31, .5); }
.svc-panel__no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.6rem + 1.8vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--sand);
}
.svc-panel h3 { font-size: var(--fs-h4); }
.svc-panel p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }
.svc-panel__rule { height: 1px; background: var(--rule); margin-block: .2rem; }
.svc-panel a { margin-top: auto; }

.svc-shot {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 40vw, 520px);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  background: var(--forest);
}
@media (min-width: 940px) {
  .svc-shot { clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); border-radius: 0; }
}
.svc-shot img { position: absolute; inset: 0; width: 100%; height: 100%; }
.svc-shot__cap {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  right: 16px;
  bottom: clamp(18px, 2.4vw, 30px);
  z-index: 3;
  color: var(--offwhite);
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (min-width: 940px) { .svc-shot__cap { left: clamp(60px, 7vw, 110px); } }

/* ------------------------------------------------- 11 Accordion rows */
.acc-band { background: var(--sand); border-top-left-radius: clamp(48px, 10vw, 170px); }
.acc-head { display: grid; gap: clamp(18px, 3vw, 48px); align-items: end; margin-bottom: var(--sp-block); }
@media (min-width: 820px) { .acc-head { grid-template-columns: minmax(0, 1fr) minmax(180px, .4fr); } }
.acc-head .cutout { max-width: 300px; width: 100%; margin-inline-start: auto; }
.acc { border-top: 1px solid rgba(22, 33, 28, .18); }
.acc__row { border-bottom: 1px solid rgba(22, 33, 28, .18); }
.acc__h { margin: 0; font-size: inherit; font-weight: inherit; letter-spacing: normal; }
.acc__btn {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(20px, 2.6vw, 34px) 0;
  text-align: left;
  color: var(--ink);
  transition: color var(--t-fast), padding-left var(--t-mid);
  min-height: 56px;
}
.acc__btn:hover { color: var(--green-mid); padding-left: clamp(4px, 1vw, 14px); }
.acc__no {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--sage-dim);
  font-variant-numeric: tabular-nums;
}
.acc__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, .95rem + 1.75vw, 2.65rem);
  letter-spacing: -.035em;
  line-height: 1.1;
}
.acc__icon {
  width: 42px; height: 42px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: none;
  transition: background-color var(--t-fast), border-color var(--t-fast), transform var(--t-mid);
}
.acc__icon svg { width: 16px; height: 16px; }
.acc__icon .v { transition: transform var(--t-mid), opacity var(--t-fast); transform-origin: center; }
.acc__btn[aria-expanded="true"] .acc__icon { background: var(--forest); border-color: var(--forest); color: var(--offwhite); }
.acc__btn[aria-expanded="true"] .acc__icon .v { transform: scaleY(0); opacity: 0; }
.acc__btn[aria-expanded="true"] .acc__label { color: var(--forest); }
.acc__panel { overflow: hidden; height: 0; transition: height var(--t-slow); }
.acc__inner {
  display: grid;
  gap: clamp(18px, 3vw, 46px);
  padding-bottom: clamp(26px, 3vw, 44px);
}
@media (min-width: 860px) {
  .acc__inner { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); padding-left: clamp(40px, 6vw, 96px); }
}
.acc__desc { color: var(--muted); font-size: var(--fs-lead); line-height: 1.55; }
.acc__links { display: grid; gap: 0; align-content: start; }
.acc__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: .78rem 0;
  border-top: 1px solid var(--rule-soft);
  font-weight: 500;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.acc__links a:hover { color: var(--green-mid); padding-left: 6px; }
.acc__links svg { width: 15px; height: 15px; color: var(--sage-dim); flex: none; }

/* Accordion variant — insights listing */
.acc--posts .acc__row { border-bottom-color: var(--rule); }
.acc--posts { border-top-color: var(--rule); }
.acc--posts .acc__btn {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .35rem 24px;
  padding-block: clamp(18px, 2.2vw, 30px);
  align-items: center;
}
.acc--posts .acc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: var(--fs-xs);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sage-dim);
  font-family: var(--font-body);
  font-weight: 500;
}
.acc--posts .acc__meta .cat { color: var(--green-mid); font-weight: 700; }
.acc--posts .acc__label {
  font-size: clamp(1.05rem, .98rem + .62vw, 1.5rem);
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -.024em;
  text-wrap: pretty;
}
.acc--posts .acc__icon { width: 38px; height: 38px; }
@media (min-width: 900px) {
  .acc--posts .acc__btn { grid-template-columns: 232px minmax(0, 1fr) auto; }
  .acc--posts .acc__inner { grid-template-columns: minmax(0, 1fr) auto; padding-left: 232px; align-items: center; }
}
.acc--posts .acc__inner { padding-bottom: clamp(20px, 2.4vw, 34px); }
.acc--posts .acc__desc { font-size: var(--fs-body); line-height: 1.66; max-width: 62ch; }

/* ------------------------------------------- 12 Typographic index lists */
.idx-list { column-gap: clamp(28px, 4vw, 72px); }
@media (min-width: 620px) { .idx-list { column-count: 2; } }
@media (min-width: 1000px) { .idx-list { column-count: 3; } }
.idx-list li { break-inside: avoid; }
.idx-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: .92rem 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, .95rem + .5vw, 1.32rem);
  letter-spacing: -.02em;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.idx-list a:hover { color: var(--green-mid); padding-left: 7px; }
.idx-list a .n {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--sage-dim);
  font-variant-numeric: tabular-nums;
}

/* Editorial rows (industries detail, insights, roles) */
.rows { border-top: 1px solid var(--rule); }
.row-item {
  display: grid;
  gap: .5rem clamp(18px, 3vw, 52px);
  padding: clamp(22px, 2.6vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  position: relative;
  transition: padding-left var(--t-mid);
}
.row-item:hover { padding-left: clamp(0px, 1vw, 14px); }
@media (min-width: 860px) {
  .row-item { grid-template-columns: 68px minmax(0, .95fr) minmax(0, 1.35fr); }
}
.row-item__no {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--sage-dim);
  font-variant-numeric: tabular-nums;
}
.row-item__title { font-size: clamp(1.3rem, 1.05rem + 1.05vw, 2.05rem); letter-spacing: -.032em; line-height: 1.08; }
.row-item__body { color: var(--muted); font-size: var(--fs-body); line-height: 1.62; max-width: 54ch; }

/* Insights list */
.post-row {
  display: grid;
  gap: .4rem clamp(18px, 3vw, 44px);
  padding: clamp(20px, 2.4vw, 34px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: padding-left var(--t-mid), background-color var(--t-fast);
}
@media (min-width: 860px) {
  .post-row { grid-template-columns: 128px 176px minmax(0, 1fr) auto; }
}
.post-row:hover { padding-left: clamp(0px, 1vw, 14px); }
.post-row__date, .post-row__cat {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dim);
}
.post-row__cat { color: var(--green-mid); font-weight: 600; }
.post-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.06rem, .98rem + .58vw, 1.42rem);
  letter-spacing: -.024em;
  line-height: 1.28;
  text-wrap: pretty;
}
.post-row__go { color: var(--sage-dim); display: none; }
@media (min-width: 860px) { .post-row__go { display: block; } }
.post-row:hover .post-row__title { color: var(--green-mid); }
.post-row:hover .post-row__go { color: var(--green-mid); }
.post-row svg { width: 18px; height: 18px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(26px, 3vw, 42px); }
.filter {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: .55em 1.1em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 40px;
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.filter:hover { border-color: var(--forest); color: var(--forest); }
.filter[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: var(--offwhite); }

/* Featured post */
.feature-post { display: grid; gap: clamp(24px, 3.4vw, 56px); align-items: center; }
@media (min-width: 900px) { .feature-post { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); } }
.feature-post__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: 1.1rem; }
.tag {
  font-size: var(--fs-xs);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-mid);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: .35em .85em;
}

/* Roles */
.role-row {
  display: grid;
  gap: .35rem clamp(18px, 3vw, 40px);
  padding: clamp(20px, 2.4vw, 34px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: padding-left var(--t-mid);
}
@media (min-width: 860px) {
  .role-row { grid-template-columns: minmax(0, 1.4fr) 200px 130px auto; }
}
.role-row:hover { padding-left: clamp(0px, 1vw, 14px); }
.role-row__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.08rem, 1rem + .6vw, 1.5rem); letter-spacing: -.026em; line-height: 1.22; }
.role-row__meta { font-size: var(--fs-sm); color: var(--muted); }
.role-row__type {
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dim);
}
.role-row__go {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.role-row__go svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.role-row:hover .role-row__go svg { transform: translateX(3px); }
.role-row:hover .role-row__title { color: var(--green-mid); }

/* --------------------------------------------------- 13 Photography band */
.photo-band {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 46vw, 560px);
  display: grid;
  align-items: end;
  background: var(--forest);
  isolation: isolate;
}
.photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.photo-band::after,
.photo-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.photo-band::after {
  background: linear-gradient(150deg, rgba(27, 59, 47, .94) 0%, rgba(44, 85, 69, .82) 48%, rgba(27, 59, 47, .95) 100%);
  mix-blend-mode: multiply;
  z-index: 0;
}
.photo-band::before {
  background: linear-gradient(0deg, rgba(18, 41, 31, .72) 0%, rgba(18, 41, 31, 0) 55%);
  z-index: 1;
}
.photo-band > img { filter: grayscale(1) contrast(1.1); }
.photo-band .wrap { position: relative; z-index: 2; padding-block: clamp(44px, 6vw, 92px); }
.photo-band__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 1rem + 2.3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--offwhite);
  max-width: 20ch;
}
.photo-band__quote--wide { max-width: 26ch; }

/* --------------------------------------------- 14 Reasons, team, quote */
.reasons { display: grid; gap: 0; }
@media (min-width: 860px) { .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 5vw, 96px); } }
.reason {
  border-top: 1px solid var(--rule-light);
  padding: clamp(22px, 2.4vw, 34px) 0;
  display: grid;
  gap: .55rem;
  align-content: start;
}
.reason__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  color: var(--sage);
  font-variant-numeric: tabular-nums;
}
.reason h3 { font-size: clamp(1.16rem, 1.02rem + .6vw, 1.55rem); color: var(--offwhite); }
.reason p { color: rgba(237, 234, 224, .74); font-size: var(--fs-body); line-height: 1.62; max-width: 44ch; }
.reason--lead { grid-column: 1 / -1; }
.reason--lead h3 { font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.4rem); }
.reason--lead p { font-size: var(--fs-lead); max-width: 58ch; }
.reason--cta { display: grid; align-content: center; gap: 1rem; }

/* Team */
.team { display: grid; gap: clamp(26px, 3vw, 44px) clamp(18px, 2.2vw, 34px); }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.member { display: grid; gap: .9rem; }
@media (min-width: 1000px) {
  .member:nth-child(2n) { margin-top: clamp(22px, 3.4vw, 56px); }
  .member:nth-child(5) { margin-top: clamp(10px, 1.6vw, 26px); }
}
/* Monogram tile — deliberate typographic stand-in for staff photography.
   Real portraits are supplied by the client; we never attach a generated
   face to a named individual. */
.member__mono {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-organic) 6px var(--r-organic) 6px;
  background: var(--forest);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.member:nth-child(2) .member__mono { background: var(--green-mid); }
.member:nth-child(3) .member__mono { background: var(--forest-deep); }
.member:nth-child(4) .member__mono { background: var(--green-mid); }
.member:nth-child(5) .member__mono { background: var(--forest); }
.member__mono svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 320ms var(--ease);
}
.member:hover .member__mono svg { transform: scale(1.06) rotate(-2deg); }
.member__ini {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.4rem + 3.4vw, 3.4rem);
  letter-spacing: -.06em;
  line-height: 1;
  color: var(--offwhite);
}
.member__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(237, 234, 224, .62);
}

/* Cutout imagery — source files are objects photographed on flat white,
   so multiply drops the white and tints the object into the panel. */
.cutout { position: relative; display: block; }
.cutout img {
  width: 100%;
  height: auto;
  background: transparent;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.06);
}
.cutout--dark img { mix-blend-mode: multiply; filter: grayscale(1) contrast(1.15) brightness(1.15); }

/* Subtle full-section photographic texture */
.has-texture { position: relative; isolation: isolate; overflow: hidden; }
.has-texture > .wrap,
.has-texture > .arc-divider { position: relative; z-index: 1; }
/* No z-index here on purpose: a z-index would make this a stacking context and
   the luminosity blend would lose the section background as its backdrop. */
.texture-layer { position: absolute; inset: 0; pointer-events: none; }
.texture-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .13;
  filter: grayscale(1) contrast(1.3);
  mix-blend-mode: luminosity;
  background: transparent;
}

/* Oversized typographic pull-quote (no portrait) */
.pullquote { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.pullquote__mark { width: clamp(52px, 8vw, 96px); height: auto; color: var(--sage); opacity: .6; }
.pullquote__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, .95rem + 3.3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--offwhite);
  max-width: 22ch;
  text-wrap: pretty;
}
.pullquote__text .hl { color: var(--sage); }
.pullquote__foot {
  display: grid;
  gap: 20px;
  margin-top: clamp(10px, 1.6vw, 20px);
  padding-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid var(--rule-light);
}
@media (min-width: 780px) {
  .pullquote__foot { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}
.pullquote__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, .96rem + .4vw, 1.25rem);
  letter-spacing: -.022em;
  color: var(--offwhite);
}
.pullquote__role { font-size: var(--fs-sm); color: rgba(237, 234, 224, .7); margin-top: .2rem; }
.member__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.022em; }
.member__role { font-size: var(--fs-sm); color: var(--muted); margin-top: .15rem; }
.member__cred { font-size: var(--fs-xs); color: var(--sage-dim); letter-spacing: .06em; margin-top: .35rem; }

/* Founder quote */
.quote-block { display: grid; gap: clamp(28px, 4vw, 72px); align-items: center; }
@media (min-width: 900px) { .quote-block { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); } }
.quote-mark { width: 46px; height: 46px; color: var(--sage); margin-bottom: 1.2rem; }
.quote-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1rem + 1.7vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--offwhite);
  text-wrap: pretty;
}
.quote-attr { margin-top: clamp(20px, 2.4vw, 32px); font-size: var(--fs-sm); color: rgba(237, 234, 224, .74); }
.quote-attr strong { color: var(--offwhite); font-weight: 700; display: block; font-family: var(--font-display); font-size: 1.02rem; letter-spacing: -.02em; margin-bottom: .2rem; }

/* Pillars (mission / vision / philosophy) */
.pillars { display: grid; gap: 0; }
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pillar {
  border-top: 1px solid var(--rule-light);
  padding: clamp(24px, 2.6vw, 40px) 0;
  display: grid;
  gap: .8rem;
  align-content: start;
}
@media (min-width: 860px) {
  .pillar { padding-inline-end: clamp(20px, 3vw, 46px); }
  .pillar + .pillar { border-left: 1px solid var(--rule-light-soft); padding-inline-start: clamp(22px, 3vw, 46px); }
}
.pillar__k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
}
.pillar p { color: rgba(237, 234, 224, .82); font-size: clamp(1rem, .95rem + .42vw, 1.2rem); line-height: 1.5; }

/* ---------------------------------------------------- 15 Services page */
.svc-app { display: grid; gap: clamp(28px, 3.6vw, 60px); }
@media (min-width: 980px) {
  .svc-app { grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr); gap: clamp(34px, 4vw, 80px); }
}

.svc-switch-head {
  display: grid;
  gap: clamp(20px, 2.6vw, 40px);
  align-items: end;
  margin-bottom: clamp(30px, 3.6vw, 56px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 940px) { .svc-switch-head { grid-template-columns: minmax(0, 1fr) auto; } }

.country-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--offwhite);
  width: fit-content;
  max-width: 100%;
}
.country-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  border-radius: 999px;
  padding: .62em 1.15em;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--muted);
  white-space: nowrap;
  transition: background-color var(--t-fast), color var(--t-fast);
}
.country-switch__btn .code {
  font-size: .66rem;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--sage-dim);
  transition: color var(--t-fast);
}
.country-switch__btn:hover { color: var(--forest); background: rgba(27, 59, 47, .06); }
.country-switch__btn[aria-selected="true"] { background: var(--forest); color: var(--offwhite); }
.country-switch__btn[aria-selected="true"] .code { color: var(--sage); }

.svc-menu { border-top: 1px solid var(--rule); }
@media (min-width: 980px) { .svc-menu { position: sticky; top: calc(var(--header-h) + 28px); } }
.svc-menu__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: .82rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: -.014em;
  min-height: 48px;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.svc-menu__btn .n { font-size: .68rem; letter-spacing: .1em; color: var(--sage-dim); font-variant-numeric: tabular-nums; }
.svc-menu__btn .go { width: 15px; height: 15px; opacity: 0; transform: translateX(-6px); transition: opacity var(--t-fast), transform var(--t-fast); }
.svc-menu__btn:hover { color: var(--forest); padding-left: 6px; }
.svc-menu__btn:hover .go { opacity: .6; transform: none; }
.svc-menu__btn[aria-selected="true"] { color: var(--forest); }
.svc-menu__btn[aria-selected="true"] .n { color: var(--forest); }
.svc-menu__btn[aria-selected="true"] .go { opacity: 1; transform: none; }

.svc-detail { min-height: 400px; }
.svc-detail__head { display: grid; gap: 1rem; padding-bottom: clamp(22px, 2.6vw, 34px); border-bottom: 1px solid var(--rule); }
.svc-detail__title { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); letter-spacing: -.036em; line-height: 1.02; }
.svc-detail__short { font-size: var(--fs-lead); color: var(--muted); line-height: 1.5; max-width: 52ch; }
.svc-detail__cols { display: grid; gap: clamp(24px, 3vw, 48px); padding-top: clamp(24px, 2.8vw, 40px); }
@media (min-width: 760px) { .svc-detail__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.svc-col__k {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.1rem;
}
.bene li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: .8rem;
  padding: .62rem 0;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--fs-body);
  align-items: start;
}
.bene li svg { width: 16px; height: 16px; color: var(--green-mid); margin-top: .28em; }
.proc { counter-reset: p; }
.proc li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: .8rem;
  padding: .62rem 0;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--fs-body);
  align-items: baseline;
  counter-increment: p;
}
.proc li::before {
  content: counter(p, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--sage-dim);
}

.compliance {
  margin-top: clamp(28px, 3.2vw, 46px);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) var(--r-organic) var(--r-lg);
  background: var(--forest);
  color: var(--cream);
  isolation: isolate;
}
.compliance > img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; filter: grayscale(1) contrast(1.1); }
.compliance::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(18, 41, 31, .95) 0%, rgba(27, 59, 47, .9) 45%, rgba(44, 85, 69, .82) 100%);
}
.compliance__inner { padding: clamp(24px, 3vw, 42px); display: grid; gap: 1.1rem; }
.compliance__k {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: .7em;
  flex-wrap: wrap;
}
.compliance__k .flagcode {
  font-family: var(--font-display);
  background: rgba(143, 168, 147, .2);
  border: 1px solid rgba(143, 168, 147, .35);
  border-radius: 4px;
  padding: .25em .55em;
  letter-spacing: .12em;
  color: var(--offwhite);
}
.compliance__list { display: grid; gap: 0; }
.compliance__list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  padding: .72rem 0;
  border-top: 1px solid var(--rule-light-soft);
  color: rgba(237, 234, 224, .9);
  font-size: var(--fs-body);
}
.compliance__list li svg { width: 15px; height: 15px; color: var(--sage); margin-top: .35em; }
.compliance__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: .6rem;
}
.compliance__city { font-size: var(--fs-xs); letter-spacing: .15em; text-transform: uppercase; color: rgba(237, 234, 224, .6); }

.is-swapping { opacity: 0; transform: translateY(8px); }
.swap-target { transition: opacity var(--t-mid), transform var(--t-mid); }

/* ------------------------------------------------------ 16 Contact form */
.contact-grid { display: grid; gap: clamp(34px, 4vw, 76px); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); } }

.form { display: grid; gap: clamp(16px, 1.8vw, 22px); }
.form__grid { display: grid; gap: clamp(16px, 1.8vw, 22px); }
@media (min-width: 620px) { .form__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field { display: grid; gap: .45rem; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: #9C3B2E; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  background: var(--offwhite);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  font-size: var(--fs-body);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
  appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6660' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: #9AA39E; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(22, 33, 28, .3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(44, 85, 69, .16);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

.field__error {
  display: none;
  font-size: var(--fs-xs);
  color: #9C3B2E;
  align-items: center;
  gap: .45em;
  letter-spacing: .01em;
}
.field__error svg { width: 14px; height: 14px; flex: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #9C3B2E; background: #FCF4F2; }
.field.has-error .field__error { display: flex; }

.form__note { font-size: var(--fs-xs); color: var(--muted); letter-spacing: .02em; }

.form-success {
  display: none;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg) var(--r-lg) var(--r-organic) var(--r-lg);
  padding: clamp(28px, 3.4vw, 48px);
  gap: 1rem;
}
.form-success.is-visible { display: grid; }
.form-success__icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(143, 168, 147, .5);
  display: grid;
  place-items: center;
  color: var(--sage);
}
.form-success__icon svg { width: 24px; height: 24px; }
.form-success h2 { color: var(--offwhite); font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); }
.form-success p { color: rgba(237, 234, 224, .8); max-width: 46ch; }
.form.is-hidden { display: none; }

/* Office list */
.offices { border-top: 1px solid var(--rule); }
.office {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .3rem clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.office__pic {
  width: 62px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md) 2px var(--r-md) 2px;
  overflow: hidden;
  grid-row: span 3;
  position: relative;
}
.office__pic img { width: 100%; height: 100%; }
.office__city { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.024em; }
.office__country { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--sage-dim); }
.office__detail { font-size: var(--fs-sm); color: var(--muted); }
.office__detail a:hover { color: var(--forest); text-decoration: underline; }

.offices__note {
  margin-top: clamp(16px, 1.8vw, 22px);
  font-size: var(--fs-sm);
  line-height: 1.62;
  color: var(--muted);
  max-width: 46ch;
}

.direct { display: grid; gap: .55rem; margin-top: clamp(22px, 2.6vw, 34px); }
.direct__k { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--sage-dim); }
.direct__v { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, .98rem + .5vw, 1.35rem); letter-spacing: -.024em; }
.direct__v a:hover { color: var(--green-mid); }

/* ------------------------------------------------ 17 CTA band + footer */
.cta-band {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.cta-band__curves { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.cta-band .wrap { padding-block: clamp(60px, 8vw, 128px); position: relative; }
.cta-inner { display: grid; gap: clamp(24px, 3vw, 48px); align-items: end; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); } }
.cta-title { font-size: var(--fs-h2-xl); line-height: .99; letter-spacing: -.038em; color: var(--offwhite); font-weight: 400; }
.cta-title strong { font-weight: 800; }
.cta-side { display: grid; gap: 1.2rem; justify-items: start; }
@media (min-width: 900px) { .cta-side { justify-items: end; text-align: right; } }

.site-footer { background: var(--forest-deep); color: rgba(237, 234, 224, .78); }
.site-footer .wrap { padding-block: clamp(52px, 6vw, 92px) clamp(24px, 3vw, 34px); }
.footer-top { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 780px) { .footer-top { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); } }
.footer-brand { display: grid; gap: 1.15rem; align-content: start; max-width: 34ch; }
.footer-brand .brand { color: var(--offwhite); }
.footer-blurb { font-size: var(--fs-sm); line-height: 1.65; color: rgba(237, 234, 224, .68); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 44px; height: 44px;
  border: 1px solid var(--rule-light-soft);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(237, 234, 224, .74);
  transition: color var(--t-fast), border-color var(--t-fast), background-color var(--t-fast);
}
.socials a:hover { color: var(--offwhite); border-color: rgba(237, 234, 224, .4); background: rgba(237, 234, 224, .08); }
.socials svg { width: 17px; height: 17px; }

.footer-col__k {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: .62rem; }
.footer-col a, .footer-col li { font-size: var(--fs-sm); color: rgba(237, 234, 224, .72); }
.footer-col a { transition: color var(--t-fast), padding-left var(--t-fast); display: inline-block; }
.footer-col a:hover { color: var(--offwhite); padding-left: 4px; }
.footer-col .qual {
  display: block;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(237, 234, 224, .45);
  margin-top: .18rem;
}

.footer-bottom {
  margin-top: clamp(34px, 4vw, 58px);
  padding-top: 22px;
  border-top: 1px solid var(--rule-light-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(237, 234, 224, .56);
  letter-spacing: .02em;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-bottom a:hover { color: var(--offwhite); }

/* ------------------------------------------------- 18 Motion / reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

.hero .reveal { transition-duration: 400ms; }

/* Curve art defaults */
.curve-art { display: block; }

/* Utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.measure { max-width: var(--maxw-text); }
.hide-sm { display: none; }
@media (min-width: 780px) { .hide-sm { display: block; } }

/* -------------------------------------------------- 19 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 { opacity: 1 !important; transform: none !important; }
  .drawer__nav a { opacity: 1 !important; transform: none !important; }
  .svc-panel:hover,
  .btn:hover svg,
  .row-item:hover,
  .post-row:hover,
  .role-row:hover,
  .acc__btn:hover { transform: none !important; padding-left: 0; }
  .swap-target, .is-swapping { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   20 CLIENT FEEDBACK OVERRIDES
   Later rules deliberately re-declare earlier decisions after direct client
   review. Keep this section last in the file.
   ========================================================================== */

/* 20.1 The arc/semicircle section dividers are gone — clean straight edges. */
.arc-divider { display: none !important; }

/* 20.2 Photography in natural colour — no green duotone, no grayscale. */
.duotone img { filter: none; }
.duotone::before, .duotone::after { display: none; }
.photo-band > img { filter: none; }
.photo-band::before { display: none; }
.photo-band::after { background: rgba(9, 18, 13, .58); mix-blend-mode: normal; }
.cutout--dark img { mix-blend-mode: normal; filter: none; }

/* 20.3 Cutouts: only the true alpha cutout, anchored — never a white box. */
.cutout img { background: transparent; box-shadow: none; }
.cutout--anchored {
  max-width: min(380px, 78%);
  margin-inline: auto;
  padding-block: clamp(10px, 1.4vw, 22px);
}
.cutout--anchored img { mix-blend-mode: multiply; }

/* 20.4 No serial numbers on services; no drawer menu indices. */
.svc-panel__no,
.acc__no,
.svc-menu__btn .n,
.drawer__nav .idx,
nav a span.idx,
.idx-list .n { display: none; }

/* 20.5 Services page: the rail and the detail read as two distinct zones. */
.svc-menu {
  background: var(--sand, #E3DFD2);
  border: 1px solid rgba(27, 59, 47, .14);
  border-top: 1px solid rgba(27, 59, 47, .14);
  border-radius: 20px;
  padding: clamp(12px, 1.5vw, 20px);
  align-self: start;
}
.svc-menu::before {
  content: "All services";
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest, #1B3B2F);
  opacity: .65;
  padding: 4px 6px 12px;
}
.svc-menu__btn:hover { background: rgba(255, 255, 255, .55); }
.svc-menu__btn[aria-selected="true"] { background: #FFFFFF; border-radius: 10px; }
.svc-detail {
  background: #FFFFFF;
  border: 1px solid rgba(27, 59, 47, .1);
  border-radius: 20px;
  padding: clamp(22px, 2.8vw, 40px);
  box-shadow: 0 30px 60px -48px rgba(18, 41, 31, .45);
}

/* 20.6 Bigger text in the services detail. */
.svc-detail__short { font-size: clamp(1.125rem, 1rem + .4vw, 1.3125rem); max-width: 58ch; }
.svc-detail li, .svc-detail p { font-size: 1.0625rem; }
.svc-detail__title { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.3rem); }

/* 20.7 Contact form: large, boxed, unmissable. */
.field label { font-size: 1.0625rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.field input, .field select, .field textarea {
  min-height: 58px;
  font-size: 1.125rem;
  padding: 1rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid rgba(27, 59, 47, .3);
  border-radius: 12px;
  color: var(--ink, #16211C);
}
.field textarea { min-height: 175px; line-height: 1.55; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible,
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest, #1B3B2F);
  box-shadow: 0 0 0 3px rgba(27, 59, 47, .16);
}
.field__error { font-size: 1rem; font-weight: 500; }
.form__note { font-size: 1rem; }

/* 20.8 Offices as a full-width horizontal band with real presence. */
.offices--band {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
  grid-template-columns: 1fr;
  margin-top: clamp(22px, 2.6vw, 36px);
}
@media (min-width: 720px)  { .offices--band { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .offices--band { grid-template-columns: repeat(4, 1fr); } }
.offices--band .office { display: grid; gap: .45rem; }
.offices--band .office__pic {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: .6rem;
}
.offices--band .office__pic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.offices--band .office:hover .office__pic img { transform: scale(1.04); }
.offices--band .office__city { font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.125rem); font-weight: 700; letter-spacing: -.02em; }
.offices--band .office__country { font-size: 1.0625rem; }
.offices--band .office__detail { font-size: 1rem; }

/* 20.9 Bigger, more visible logo. */
.brand__mark { width: 46px; height: 46px; }
.brand__name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.brand__sub { font-size: .75rem; letter-spacing: .12em; }

/* 20.10 Reduced-motion parity for overrides. */
@media (prefers-reduced-motion: reduce) {
  .offices--band .office:hover .office__pic img { transform: none !important; }
}

/* 20.11 Wider desktop canvas — layout was reading too narrow. */
:root {
  --maxw: 1720px;
  --maxw-text: 70ch;
}

/* 20.12 Services rail: with the number span hidden, the button grid kept a
   30px first track and squeezed names into it (word-per-line wrapping).
   Re-declare the grid without that track, and give the rail real width. */
@media (min-width: 980px) {
  .svc-app { grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr); }
}
.svc-menu__btn {
  grid-template-columns: minmax(0, 1fr) auto;
  line-height: 1.35;
  font-size: 1.0625rem;
}

/* 20.13 Team: two calm rows (3 + 2), flat tiles, no leaf artwork, no stagger. */
@media (min-width: 1000px) {
  .team { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .member:nth-child(2n) { margin-top: 0; }
  .member:nth-child(5) { margin-top: 0; }
}
.member__mono svg { display: none; }
.member__mono {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}
.member__ini { font-size: clamp(2.75rem, 1.6rem + 3vw, 4rem); }
.member__name { font-size: 1.3125rem; }
.member__role { font-size: 1.0625rem; margin-top: .2rem; }
.member__cred { font-size: .9375rem; }
.member__tag { font-size: .6875rem; left: 18px; bottom: 16px; }

/* 20.14 Photo hero on home: full-bleed background replaces the curve art
   and the data panel; single-column headline entry. */
.hero--home { position: relative; overflow: hidden; }
.hero--home .hero__curves { display: none; }
.hero--home .hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 68% center;
  background: var(--forest, #1B3B2F);
}
.hero--home .hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,41,31,.95) 0%, rgba(18,41,31,.76) 44%, rgba(18,41,31,.34) 100%),
    linear-gradient(0deg, rgba(18,41,31,.85) 0%, rgba(18,41,31,0) 34%);
}
.hero--home .wrap { position: relative; z-index: 2; }
.hero--home .hero__grid { grid-template-columns: minmax(0, 1fr); }
.hero--home .hero__grid > div:first-child { max-width: 820px; }
