/* =====================================================================
   POZEMKOVÝ KOMPAS — design system (KRED-52 rebuild)
   Hand-authored, dependency-free. Land / surveying / heritage theme.
   Palette: deep forest green · olive · parched cream · brass accent.
   Type: Cormorant Garamond (display serif) · Public Sans (civic UI) · Caveat (hand).
   Mobile-first · WCAG AA targets · oklch solids behind @supports, rgba() alphas.
   ===================================================================== */

:root {
  /* ---- hex fallbacks (approximate the oklch values set further down) ---- */
  --forest-900: #141d0e;
  --forest-800: #1b2713;
  --forest-700: #22301a;
  --forest-600: #2b3c20;
  --olive-600: #3f6d2f;
  --olive-500: #4c7d38;
  --olive-400: #5c8f46;
  --olive-300: #83b06c;
  --brass-500: #b4842c;
  --brass-400: #c79b40;
  --brass-300: #dbb669;
  --cream-50: #f7f2e8;
  --cream-100: #efe7d8;
  --cream-200: #e4dbc6;
  --paper: #fbf9f4;
  --line-200: #e1dac9;
  --line-300: #d2c9b2;
  --ink-900: #22301b;
  --ink-700: #3c4934;
  --ink-600: #4e5945;
  --ink-500: #5f6854;

  /* translucency + overlays */
  --white: #ffffff;
  --on-dark: #f4efe3;
  --on-dark-80: rgba(244, 239, 227, 0.80);
  --on-dark-70: rgba(244, 239, 227, 0.70);
  --on-dark-62: rgba(244, 239, 227, 0.62);
  --on-dark-16: rgba(244, 239, 227, 0.16);
  --on-dark-12: rgba(244, 239, 227, 0.12);
  --on-dark-10: rgba(244, 239, 227, 0.10);
  --dark-88: rgba(20, 29, 14, 0.88);
  --dark-78: rgba(20, 29, 14, 0.78);
  --dark-45: rgba(20, 29, 14, 0.45);
  --dark-14: rgba(20, 29, 14, 0.14);
  --olive-tint-12: rgba(76, 125, 56, 0.12);
  --olive-tint-20: rgba(76, 125, 56, 0.20);
  --olive-tint-55: rgba(76, 125, 56, 0.55);
  --gold-tint-55: rgba(199, 155, 64, 0.55);
  --err: #a23b2c;

  /* semantic aliases */
  --bg-page: var(--cream-50);
  --bg-alt: var(--cream-100);
  --bg-surface: var(--paper);
  --bg-dark: var(--forest-800);
  --bg-darker: var(--forest-900);
  --text-body: var(--ink-600);
  --text-strong: var(--ink-900);
  --text-muted: var(--ink-500);
  --accent: var(--olive-600);
  --accent-strong: var(--olive-500);
  --accent-gold: var(--brass-500);
  --border: var(--line-200);
  --border-strong: var(--line-300);

  /* typography */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-sans: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  /* space + shape */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section-y: clamp(3.5rem, 8vw, 7.25rem);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 29, 14, 0.07), 0 3px 10px rgba(20, 29, 14, 0.06);
  --shadow-md: 0 8px 20px rgba(20, 29, 14, 0.10), 0 20px 44px rgba(20, 29, 14, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 29, 14, 0.20);

  --t-fast: 140ms cubic-bezier(0.2, 0, 0, 1);
  --t-med: 260ms cubic-bezier(0.2, 0, 0, 1);
  --t-slow: 620ms cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 76px;
}

@supports (color: oklch(50% 0.1 150)) {
  :root {
    --forest-900: oklch(23% 0.043 148);
    --forest-800: oklch(28% 0.048 148);
    --forest-700: oklch(33% 0.055 148);
    --forest-600: oklch(38% 0.060 148);
    --olive-600: oklch(49% 0.115 142);
    --olive-500: oklch(56% 0.115 142);
    --olive-400: oklch(63% 0.100 142);
    --olive-300: oklch(76% 0.083 140);
    --brass-500: oklch(65% 0.126 82);
    --brass-400: oklch(74% 0.116 84);
    --brass-300: oklch(83% 0.098 86);
    --cream-50: oklch(96% 0.017 96);
    --cream-100: oklch(92.5% 0.022 96);
    --cream-200: oklch(89% 0.026 95);
    --paper: oklch(98% 0.007 96);
    --line-200: oklch(88% 0.019 95);
    --line-300: oklch(82% 0.023 94);
    --ink-900: oklch(30% 0.031 146);
    --ink-700: oklch(41% 0.026 146);
    --ink-600: oklch(47% 0.021 146);
    --ink-500: oklch(55% 0.017 146);
  }
}

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

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

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.955rem + 0.22vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  -font-smoothing: antialiased;
  text-rendering: optimize-legibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { padding: 0; }
::selection { background: var(--olive-tint-20); color: var(--ink-900); }

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

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

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

.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -140%); z-index: 200;
  background: var(--forest-800); color: var(--on-dark); padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600; box-shadow: var(--shadow-md);
  transition: transform var(--t-med);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--accent-gold); }
.eyebrow--light { color: var(--brass-300); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--accent-gold); }

.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.25rem); display: grid; gap: 0.85rem; }
.section__head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section__title { font-size: clamp(1.9rem, 1.25rem + 2.7vw, 3.1rem); letter-spacing: -0.015em; }
.section__lede { font-size: 1.06rem; color: var(--text-muted); max-width: 58ch; }

.icon { width: 1.35em; height: 1.35em; flex: none; fill: none; stroke: currentcolor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentcolor; stroke: none; }

/* ---- Buttons -------------------------------------------------------- */
.btn {
  --btn-bg: var(--olive-600); --btn-fg: #ffffff; --btn-brd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.92em 1.5em; background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-brd); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn .icon { width: 1.15em; height: 1.15em; transition: transform var(--t-med); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn--primary { --btn-bg: var(--olive-600); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--olive-500); }
.btn--gold { --btn-bg: var(--brass-500); --btn-fg: #23180a; }
.btn--gold:hover { --btn-bg: var(--brass-400); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-brd: var(--border-strong); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--olive-tint-12); --btn-brd: var(--olive-500); }
.btn--light { --btn-bg: var(--cream-50); --btn-fg: var(--forest-800); }
.btn--light:hover { --btn-bg: #fff; }
.btn--sm { padding: 0.62em 1.05em; font-size: 0.82rem; }
.btn[disabled], .btn.is-busy { opacity: 0.6; pointer-events: none; }

/* ---- Brand / logo --------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--on-dark); }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: grid; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: 0.03em; color: currentcolor; }
.brand__tag { font-weight: 600; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-62); margin-top: 0.34rem; }

/* ---- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; color: var(--on-dark);
  background: var(--dark-88);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--on-dark-10);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.site-header.is-scrolled { background: var(--forest-900); box-shadow: var(--shadow-md); }

.topbar { background: var(--forest-900); color: var(--on-dark-62); font-size: 0.82rem; border-bottom: 1px solid var(--on-dark-10); }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: var(--on-dark-62); transition: color var(--t-fast); }
.topbar a:hover { color: var(--brass-300); }
.topbar__contact { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar__contact .icon { width: 1em; height: 1em; color: var(--brass-400); }
.topbar__social { display: flex; align-items: center; gap: 0.35rem; }
.topbar__social a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; transition: background var(--t-fast); }
.topbar__social a:hover { background: var(--on-dark-12); }
.topbar__social .icon { width: 1.05rem; height: 1.05rem; }

.navbar__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(0.25rem, 1.6vw, 1.2rem); list-style: none; }
.nav__link {
  position: relative; display: inline-block; padding: 0.4rem 0.15rem;
  font-weight: 600; font-size: 0.9rem; color: var(--on-dark-80); transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--brass-400); border-radius: 2px; transition: right var(--t-med);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }

.navbar__actions { display: flex; align-items: center; gap: 0.55rem; }
.navbar__cta { display: none; }

.menu-toggle {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
  color: var(--on-dark); border: 1px solid var(--on-dark-16); transition: background var(--t-fast);
}
.menu-toggle:hover { background: var(--on-dark-12); }
.menu-toggle .icon { width: 1.5rem; height: 1.5rem; }
.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .icon--open { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

/* ---- Mobile drawer -------------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 120; display: grid; grid-template-columns: min(84vw, 360px) 1fr; pointer-events: none; }
.drawer[hidden] { display: none; }
.drawer__overlay { grid-area: 1 / 1 / 2 / 3; background: var(--dark-78); backdrop-filter: blur(2px); opacity: 0; transition: opacity var(--t-med); }
.drawer__panel {
  grid-area: 1 / 1; background: var(--forest-900); color: var(--on-dark);
  padding: 1.15rem clamp(1.1rem, 5vw, 1.6rem) 1.75rem;
  display: flex; flex-direction: column; gap: 1.15rem;
  transform: translateX(-102%); transition: transform var(--t-slow);
  box-shadow: var(--shadow-lg); overflow-y: auto;
  border-right: 1px solid var(--gold-tint-55);
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-block: 0.2rem 0.9rem; border-bottom: 1px solid var(--on-dark-12); }
.drawer__close { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; }
.drawer__close:hover { background: var(--on-dark-12); }
.drawer__nav ul { list-style: none; display: grid; }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.82rem 0.15rem; font-weight: 600; font-size: 1.02rem; color: var(--on-dark-80);
  border-bottom: 1px solid var(--on-dark-10); transition: color var(--t-fast);
}
.drawer__nav a:hover, .drawer__nav a.is-active { color: #fff; }
.drawer__nav a .icon { width: 1.05rem; height: 1.05rem; color: var(--brass-400); }
.drawer__cta { margin-top: auto; display: grid; gap: 0.75rem; }
.drawer__social { display: flex; gap: 0.5rem; }
.drawer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--on-dark-16); }
.drawer__social a:hover { background: var(--olive-600); }

/* ---- Hero ----------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: var(--on-dark); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(102deg,
    rgba(18, 26, 12, 0.94) 0%,
    rgba(18, 26, 12, 0.80) 36%,
    rgba(20, 29, 14, 0.44) 66%,
    rgba(20, 29, 14, 0.12) 100%);
}
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(3.5rem, 13vw, 8rem) clamp(3rem, 8vw, 6rem); align-items: center; }
.hero__content { max-width: 680px; display: grid; gap: clamp(1rem, 2.4vw, 1.4rem); }
.hero__title { color: #fff; font-size: clamp(2.45rem, 1.3rem + 5.7vw, 5rem); line-height: 0.98; letter-spacing: -0.022em; }
.hero__title em { font-style: normal; color: var(--brass-300); }
.hero__lede { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.24rem); color: var(--on-dark-80); font-weight: 500; }
.hero__lede strong { color: #fff; }

.hero__features { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.hero__feature {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem; font-size: 0.86rem; font-weight: 600;
  background: var(--dark-45); border: 1px solid var(--on-dark-16);
  border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.hero__feature .icon { width: 1.05rem; height: 1.05rem; color: var(--brass-300); }
.hero__note { font-size: 0.9rem; color: var(--on-dark-62); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 0.3rem; }

.hero__compass {
  position: absolute; right: -4%; bottom: -12%; width: clamp(240px, 44vw, 560px); aspect-ratio: 1;
  color: var(--brass-300); opacity: 0.42; z-index: -1; pointer-events: none;
  animation: float-slow 9s ease-in-out infinite alternate;
}
@key-float { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-16px) rotate(4deg); } }

/* ---- Intro ---------------------------------------------------------- */
.intro__grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__figure { position: relative; justify-self: center; width: min(100%, 440px); }
.intro__figure::before {
  content: ""; position: absolute; top: -10%; right: -10%; width: 72%; aspect-ratio: 1; z-index: 0;
  opacity: 0.45; pointer-events: none; border-radius: 50%;
  background: repeating-radial-gradient(closest-side,
    transparent 0 16px,
    var(--olive-tint-55) 16px 17px);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 78%);
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 78%);
}
.intro__photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 10px solid var(--paper); box-shadow: var(--shadow-md);
}
.intro__ring { position: absolute; inset: -10px; border-radius: 50%; border: 1px solid var(--gold-tint-55); z-index: 0; }
.intro__badge {
  position: absolute; z-index: 2; left: -3%; bottom: 6%;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--paper); color: var(--ink-900); padding: 0.7rem 1rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.intro__badge .icon { width: 1.5rem; height: 1.5rem; color: var(--olive-500); }
.intro__badge b { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.intro__badge span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.intro__body { display: grid; gap: 1.05rem; }
.intro__title { font-size: clamp(1.85rem, 1.3rem + 2.4vw, 2.95rem); }
.intro__body p { font-size: 1.05rem; }
.intro__body strong { color: var(--ink-900); }
.dropcap::first-letter { font-family: var(--font-display); font-weight: 700; font-size: 3.4em; line-height: 0.7; float: left; padding: 0.06em 0.12em 0 0; color: var(--olive-600); }

/* ---- Services ------------------------------------------------------- */
.services__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.services__head .section__head { margin-bottom: 0; }
.services__note { font-size: 0.9rem; color: var(--text-muted); max-width: 32ch; }
.cards { list-style: none; display: grid; gap: 1rem; grid-template-columns: 1fr; }
.card {
  position: relative; overflow: hidden; display: grid; gap: 0.55rem; align-content: start;
  padding: 1.7rem 1.5rem 1.5rem; background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--olive-500), var(--brass-400)); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--olive-tint-55); }
.card:hover::before { transform: scaleX(1); }
.card__num { position: absolute; top: 0.7rem; right: 1.1rem; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--olive-tint-20); transition: color var(--t-med); }
.card:hover .card__num { color: var(--gold-tint-55); }
.card__icon { width: 3.4rem; height: 3.4rem; display: grid; place-items: center; border-radius: 16px; color: var(--olive-600); background: var(--olive-tint-12); border: 1px solid var(--olive-tint-20); transition: background var(--t-med), color var(--t-med); }
.card__icon .icon { width: 1.7rem; height: 1.7rem; }
.card__title { font-size: 1.4rem; }
.card__text { font-size: 0.98rem; color: var(--text-body); }
.card__link { margin-top: 0.3rem; justify-self: start; display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.9rem; color: var(--olive-600); transition: color var(--t-fast); }
.card__link .icon { width: 1.05rem; height: 1.05rem; transition: transform var(--t-med); }
.card__link:hover { color: var(--olive-500); }
.card__link:hover .icon { transform: translateX(4px); }

/* ---- Audience ------------------------------------------------------- */
.audience { list-style: none; display: grid; gap: 1.5rem 1rem; grid-template-columns: 1fr; }
.aud { display: grid; gap: 0.85rem; }
.aud__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--shadow-sm); }
.aud__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.aud:hover .aud__media img { transform: scale(1.06); }
.aud__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, var(--dark-78)); }
.aud__icon { position: absolute; z-index: 1; left: 0.85rem; bottom: 0.85rem; width: 2.8rem; height: 2.8rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--olive-600); box-shadow: var(--shadow-sm); border: 2px solid rgba(255, 255, 255, 0.85); }
.aud__icon .icon { width: 1.35rem; height: 1.35rem; }
.aud__body { display: grid; gap: 0.35rem; padding-left: 0.85rem; border-left: 3px solid var(--olive-tint-55); }
.aud__title { font-size: 1.4rem; }
.aud__text { font-size: 0.95rem; color: var(--text-body); }

/* ---- Process -------------------------------------------------------- */
.process__list { list-style: none; display: grid; gap: 2rem; grid-template-columns: 1fr; }
.step { position: relative; display: grid; gap: 0.75rem; justify-items: start; }
.step__badge { position: relative; z-index: 1; width: 4.4rem; height: 4.4rem; display: grid; place-items: center; border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; background: radial-gradient(circle at 32% 28%, var(--olive-500), var(--olive-600) 70%); box-shadow: var(--shadow-sm); }
.step__badge .icon { position: absolute; width: 1.6rem; height: 1.6rem; color: rgba(255, 255, 255, 0.28); }
.step__title { font-size: 1.35rem; }
.step__text { font-size: 0.97rem; color: var(--text-body); }

/* ---- About ---------------------------------------------------------- */
.about__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: stretch; }
.about__figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; }
.about__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__figure figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.1rem 1.1rem 0.9rem; color: #fff; font-weight: 600; background: linear-gradient(180deg, transparent, rgba(18, 26, 12, 0.85)); }
.about__figure figcaption span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--on-dark-70); }
.about__quote { position: relative; display: grid; gap: 1rem; align-content: center; padding-left: clamp(1rem, 3vw, 1.75rem); border-left: 3px solid var(--brass-400); }
.about__quote blockquote { font-family: var(--font-display); font-size: clamp(1.35rem, 1rem + 1.5vw, 1.9rem); line-height: 1.32; color: var(--ink-900); font-weight: 600; }
.about__quote blockquote::before { content: "\201C"; color: var(--brass-400); font-size: 1.6em; line-height: 0; vertical-align: -0.32em; margin-right: 0.1em; }
.about__quote p { font-size: 1rem; color: var(--text-body); }

.about__work { background: var(--forest-800); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.1rem; align-content: center; position: relative; overflow: hidden; }
.about__work::before { content: ""; position: absolute; right: -20%; top: -20%; width: 62%; aspect-ratio: 1; border-radius: 50%; opacity: 0.6; pointer-events: none; background: repeating-radial-gradient(closest-side, transparent 0 12px, var(--on-dark-12) 12px 13px); }
.about__work h3 { color: #fff; font-size: 1.6rem; position: relative; }
.work__list { list-style: none; display: grid; gap: 0.7rem; position: relative; }
.work__list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.98rem; color: var(--on-dark-80); }
.work__list .icon { width: 1.2rem; height: 1.2rem; color: var(--brass-300); margin-top: 0.18rem; }
.about__work .btn { justify-self: start; margin-top: 0.2rem; position: relative; }

/* ---- CTA ------------------------------------------------------------ */
.cta { position: relative; isolation: isolate; overflow: hidden; color: var(--on-dark); }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18, 26, 12, 0.92), rgba(18, 26, 12, 0.62) 58%, rgba(63, 109, 47, 0.55)); }
.cta__inner { display: grid; gap: 1.15rem; max-width: 760px; padding-block: clamp(3rem, 8vw, 5.5rem); }
.cta__title { color: #fff; font-size: clamp(1.9rem, 1.25rem + 3vw, 3.4rem); }
.cta__text { font-size: 1.06rem; color: var(--on-dark-80); max-width: 54ch; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 0.2rem; }
.cta__hand { font-family: var(--font-hand); font-size: clamp(1.5rem, 1rem + 1.8vw, 2.1rem); color: var(--brass-300); line-height: 1; transform: rotate(-3deg); }

/* ---- FAQ ------------------------------------------------------------ */
.faq { display: grid; gap: 0.75rem; max-width: 880px; margin-inline: auto; }
.faq__item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.faq__item[open] { border-color: var(--olive-tint-55); box-shadow: var(--shadow-sm); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.25rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink-900); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .icon { width: 1.4rem; height: 1.4rem; color: var(--olive-600); flex: none; transition: transform var(--t-med); }
.faq__item[open] .faq__q .icon { transform: rotate(180deg); }
.faq__a { padding: 0 1.25rem 1.15rem; color: var(--text-body); }
.faq__a p + p { margin-top: 0.6rem; }
.faq__foot { text-align: center; margin-top: 1.75rem; }

/* ---- Contact -------------------------------------------------------- */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__aside { display: grid; gap: 1.25rem; align-content: start; }
.contact__lede { color: var(--text-body); font-size: 1.05rem; max-width: 46ch; }
.contact__list { list-style: none; display: grid; gap: 0.35rem; }
.contact__list li { display: flex; align-items: center; gap: 0.85rem; padding: 0.5rem 0; }
.contact__list .ic { width: 2.7rem; height: 2.7rem; flex: none; display: grid; place-items: center; border-radius: 12px; color: var(--olive-600); background: var(--olive-tint-12); border: 1px solid var(--olive-tint-20); }
.contact__list .ic .icon { width: 1.3rem; height: 1.3rem; }
.contact__list b { display: block; color: var(--ink-900); }
.contact__list span { font-size: 0.84rem; color: var(--text-muted); }
.contact__list a:hover b { color: var(--olive-600); }
.contact__social { display: flex; gap: 0.6rem; }
.contact__social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--border-strong); color: var(--ink-700); transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.contact__social a:hover { background: var(--olive-600); color: #fff; border-color: var(--olive-600); }

.contact__form { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.35rem, 3vw, 2rem); box-shadow: var(--shadow-sm); display: grid; gap: 1rem; position: relative; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.86rem; color: var(--ink-900); }
.field .req { color: var(--brass-500); }
.field .input, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--ink-900); width: 100%;
  padding: 0.78rem 0.9rem; background: var(--paper);
  border: 1px solid var(--border-strong); border-radius: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 132px; resize: vertical; }
.field .input::placeholder, .field textarea::placeholder { color: var(--ink-500); opacity: 0.7; }
.field .input:focus, .field textarea:focus { outline: none; border-color: var(--olive-500); box-shadow: 0 0 0 4px var(--olive-tint-20); background: #fff; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form__status { font-size: 0.9rem; min-height: 1.2em; font-weight: 600; }
.form__status[data-tone="ok"] { color: var(--olive-600); }
.form__status[data-tone="err"] { color: var(--err); }

/* ---- Footer --------------------------------------------------------- */
.footer { background: var(--bg-darker); color: var(--on-dark-62); }
.footer__top { display: grid; gap: clamp(2rem, 4vw, 2.5rem); padding-block: clamp(2.75rem, 6vw, 4.25rem) 2.5rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__about { font-size: 0.92rem; max-width: 42ch; }
.footer__social { display: flex; gap: 0.55rem; margin-top: 1.15rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--on-dark-16); color: var(--on-dark); transition: background var(--t-fast), border-color var(--t-fast); }
.footer__social a:hover { background: var(--olive-600); border-color: var(--olive-600); }
.footer__col h3 { color: #fff; font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links { list-style: none; display: grid; gap: 0.65rem; }
.footer__links a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--on-dark-62); font-size: 0.93rem; transition: color var(--t-fast), transform var(--t-fast); }
.footer__links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-tint-55); }
.footer__links a:hover { color: #fff; transform: translateX(3px); }
.footer__contact { list-style: none; display: grid; gap: 0.7rem; font-size: 0.93rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer__contact .icon { width: 1.1rem; height: 1.1rem; color: var(--brass-400); margin-top: 0.18rem; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--on-dark-10); padding-block: 1.5rem 2rem; display: grid; gap: 0.7rem; font-size: 0.82rem; }
.footer__disclaimer { max-width: 92ch; line-height: 1.6; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; align-items: center; }
.footer__legal .dot { color: var(--brass-400); }

/* ---- Scroll to top -------------------------------------------------- */
.to-top { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--olive-600); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--t-med), transform var(--t-med), background var(--t-fast), visibility var(--t-med); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--olive-500); }
.to-top .icon { width: 1.4rem; height: 1.4rem; }

/* ---- Reveal on scroll ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* ---- Responsive ----------------------------------------------------- */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  :root { --header-h: 92px; }
  .intro__grid, .contact__grid { grid-template-columns: 1.02fr 1fr; }
  .about__grid { grid-template-columns: 0.9fr 1.15fr 1fr; }
  .process__list { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .step { justify-items: center; text-align: center; }
  .step::after {
    content: ""; position: absolute; z-index: 0; top: 2.2rem; left: calc(50% + 2.7rem);
    width: calc(100% - 5.4rem); height: 2px;
    background: repeating-linear-gradient(90deg, var(--olive-tint-55) 0 8px, transparent 8px 16px);
  }
  .step:last-child::after { display: none; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; }
}
@media (min-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .audience { grid-template-columns: repeat(3, 1fr); gap: 1.75rem 1.5rem; }
  .menu-toggle { display: none; }
  .nav { display: block; }
  .nav__list { gap: clamp(1rem, 1.5vw, 1.55rem); }
}
@media (min-width: 1240px) {
  .navbar__cta { display: inline-flex; }
}

/* ---- Motion prefs --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms; animation-iteration-count: 1; transition-duration: 0.001ms; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__compass { animation: none; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---- Print ---------------------------------------------------------- */
@media print {
  .site-header, .to-top, .drawer, .menu-toggle, .hero__compass, .cta__media::after { display: none; }
  body { color: #000; background: #fff; }
}
