/* ==========================================================================
   Meadow Bridge Works — fia-main.css
   Warm editorial design system — production stylesheet.
   Order: Variables → Scrollbar → Reset/Base → Cursor orb → Image slot →
          Reveal → Ticker → Skip link → Layout utilities → Badge → Buttons →
          Visually hidden → Header → Footer → Cookie popup →
          Hero → Trust strip → Services section → Feature split →
          Process/Partners → Why choose → CTA panel → Page hero →
          About → Services page → Contacts → Contact form → Legal →
          Thank you → 404 → Accessibility → Media queries
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */

:root {
  --bg: #efe9dc;
  --ink: #14130f;
  --muted: #706b61;
  --soft: #f8f3e8;
  --line: rgba(20, 19, 15, 0.16);
  --green: #556b45;
  --moss: #bec8a0;
  --clay: #c76b4a;
  --gold: #d8b35f;

  --container-max: 1180px;
  --pad: clamp(20px, 4vw, 58px);
  --header-height: 78px;
  --radius: 30px;
  --radius-sm: 12px;
  --section-gap: clamp(85px, 13vw, 175px);
}

/* --------------------------------------------------------------------------
   2. Scrollbar
   -------------------------------------------------------------------------- */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}

/* --------------------------------------------------------------------------
   3. Reset / Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(190, 200, 160, 0.42),
      transparent 26rem
    ),
    radial-gradient(
      circle at 10% 78%,
      rgba(199, 107, 74, 0.14),
      transparent 30rem
    ),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   4. Cursor Orb
   -------------------------------------------------------------------------- */

.cursor-orb {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--clay);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 160ms ease,
    width 180ms ease,
    height 180ms ease;
}

.cursor-orb.is-large {
  width: 44px;
  height: 44px;
  opacity: 0.18;
}

/* --------------------------------------------------------------------------
   5. Image Slot
   -------------------------------------------------------------------------- */

.image-slot {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(85, 107, 69, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(199, 107, 74, 0.22), transparent 44%),
    var(--soft);
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot img[src] {
  position: relative;
  z-index: 2;
}

.image-slot img:not([src]),
.image-slot img[src=''] {
  display: none;
}

.image-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(20, 19, 15, 0.45);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   6. Scroll Reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--reveal-rotate, 0deg));
}

/* --------------------------------------------------------------------------
   7. Ticker
   -------------------------------------------------------------------------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--moss);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 25s linear infinite;
}

.ticker span {
  display: block;
  padding: 20px 34px;
  white-space: nowrap;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.065em;
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   8. Skip Link
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad);
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus-visible {
  top: 0;
}

/* --------------------------------------------------------------------------
   9. Layout Utilities
   -------------------------------------------------------------------------- */

.container {
  width: min(calc(100% - 2 * var(--pad)), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--ink);
  color: var(--bg);
  padding-block: var(--section-gap);
  padding-inline: var(--pad);
}

.section-label {
  display: block;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-top: 0.875rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.section-heading p {
  margin: 0.875rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. Badge
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(199, 107, 74, 0.35);
  border-radius: 999px;
  background: rgba(199, 107, 74, 0.08);
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Dark (ink bg) — primary action */
.btn--dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: rgba(20, 19, 15, 0.8);
  border-color: rgba(20, 19, 15, 0.8);
}

/* Outline — secondary action */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Green — tertiary accent */
.btn--primary {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}

.btn--primary:hover {
  background: #445836;
  border-color: #445836;
}

/* Muted outline */
.btn--secondary {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* Soft */
.btn--light {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--soft);
}

.btn--light:hover {
  background: var(--bg);
  border-color: var(--bg);
}

/* Arrow link — hero CTA */
.btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  border-bottom: 2px solid var(--ink);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  border-top: none;
  border-left: none;
  border-right: none;
  transition: gap 0.2s ease;
}

.btn--arrow::after {
  content: '↗';
  color: var(--clay);
}

.btn--arrow:hover {
  transform: none;
  gap: 16px;
}

/* Text link CTA */
.btn--text {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.btn--text:hover {
  transform: none;
  color: var(--ink);
}

/* Inline text link */
.text-link {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   12. Visually Hidden
   -------------------------------------------------------------------------- */

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

/* --------------------------------------------------------------------------
   13. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(239, 233, 220, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 100%;
  padding-inline: var(--pad);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 58px;
  width: auto;
}

/* Nav — desktop */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
}

.site-nav__link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current='page'] {
  color: var(--ink);
}

.site-nav__cta {
  flex-shrink: 0;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav__cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Hamburger — hidden on desktop */
.site-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  flex-shrink: 0;
}

.site-header__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header__menu-btn[aria-expanded='true'] .site-header__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__menu-btn[aria-expanded='true'] .site-header__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header__menu-btn[aria-expanded='true'] .site-header__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 32px;
  padding: clamp(34px, 6vw, 72px) var(--pad) clamp(20px, 3vw, 36px);
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.site-footer__brand p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.925rem;
}

.site-footer__heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
  display: block;
  font-size: 0.925rem;
  color: var(--muted);
  transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--ink);
}

.site-footer__copy {
  padding: 1.25rem var(--pad) clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.site-footer__copy p {
  color: var(--muted);
  font-size: 0.875rem;
  max-width: none;
}

/* --------------------------------------------------------------------------
   15. Cookie Popup
   -------------------------------------------------------------------------- */

.cookie-popup {
  position: fixed;
  z-index: 150;
  right: var(--pad);
  bottom: var(--pad);
  width: min(470px, calc(100vw - 40px));
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 243, 232, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(20, 19, 15, 0.14);
}

.cookie-popup--hidden,
.cookie-popup.is-hidden {
  display: none;
}

.cookie-popup__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: none;
}

.cookie-popup__text a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-popup__actions {
  display: flex;
  gap: 10px;
}

.cookie-popup__actions button {
  cursor: pointer;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--ink);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.cookie-popup__actions button:first-child {
  background: var(--ink);
  color: var(--bg);
}

.cookie-popup__actions button:first-child:hover {
  background: rgba(20, 19, 15, 0.8);
}

.cookie-popup__actions button:last-child:hover {
  background: var(--ink);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   16. Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-top: clamp(58px, 8vw, 120px);
  padding-bottom: clamp(70px, 10vw, 150px);
  padding-inline: var(--pad);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Eyebrow labels above h1 */
.hero-eyebrow {
  grid-column: 1 / 4;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__grid > h1 {
  grid-column: 1 / 12;
  grid-row: 2;
  margin: 0;
  font-size: clamp(54px, 9.6vw, 150px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.0488em;
  color: var(--ink);
}

/* Right-side copy + CTA */
.hero__copy {
  grid-column: 8 / 12;
  grid-row: 3;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.hero__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.38;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

/* Trust indicators (kept for structural compatibility) */
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.25rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero__trust-item::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

/* Image panel (structural compat — not used in redesigned hero) */
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero image — rotated, full image-slot */
.hero__img-wrap {
  grid-column: 1 / 7;
  grid-row: 3 / 5;
  margin-top: 74px;
  min-height: 410px;
  transform: rotate(-2deg);
}

.hero__img-wrap.reveal.is-visible {
  --reveal-rotate: -2deg;
}

/* Hero stat card — dark rotated tile */
.hero__stats {
  grid-column: 8 / 13;
  grid-row: 4;
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  margin-top: 74px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  transform: rotate(2.2deg);
}

.hero__stats.reveal.is-visible {
  --reveal-rotate: 2.2deg;
}

.metric-card__value {
  display: block;
  font-size: clamp(74px, 8vw, 126px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.09em;
  color: var(--bg);
}

.metric-card__label {
  display: block;
  max-width: 240px;
  color: rgba(239, 233, 220, 0.74);
  font-size: 16px;
  line-height: 1.35;
  max-width: none;
}

/* --------------------------------------------------------------------------
   17. Trust Strip — redesigned as proof/stats cards
   -------------------------------------------------------------------------- */

.trust-strip {
  padding-block: clamp(70px, 9vw, 130px);
  padding-inline: var(--pad);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.trust-item {
  grid-column: span 3;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.62);
}

.trust-item--dark {
  background: var(--green);
  color: var(--bg);
  border-color: transparent;
}

.trust-item__label {
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: inherit;
}

.trust-item__text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  max-width: none;
}

.trust-item--dark .trust-item__text {
  color: rgba(239, 233, 220, 0.74);
}

/* --------------------------------------------------------------------------
   18. Services Section — homepage, dark ink bg, numbered rows
   -------------------------------------------------------------------------- */

.services-section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.services-section-header .section-label {
  grid-column: 1 / 4;
  color: var(--clay);
}

.services-section-header h2 {
  grid-column: 4 / 12;
  margin: 0;
  font-size: clamp(44px, 7.5vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--bg);
}

.services-preview__grid {
  border-top: 1px solid rgba(239, 233, 220, 0.2);
}

.service-card {
  display: grid;
  grid-template-columns: 1.5fr 6fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(239, 233, 220, 0.2);
}

.service-card__num {
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: var(--gold);
}

.service-card h3,
.service-card__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--bg);
}

.service-card p,
.service-card__desc {
  max-width: 690px;
  margin: 0;
  color: rgba(239, 233, 220, 0.68);
  font-size: 18px;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   19. Feature Split — redesigned as How We Work / Model
   -------------------------------------------------------------------------- */

.feature-split {
  padding-block: var(--section-gap);
  padding-inline: var(--pad);
}

.feature-split__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feature-split__copy {
  grid-column: 1 / 6;
  align-self: center;
  display: flex;
  flex-direction: column;
}

.feature-split__copy .section-label {
  margin-bottom: 22px;
}

.feature-split__copy h2 {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.feature-split__copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

.feature-split__visual {
  grid-column: 7 / 13;
  min-height: 560px;
  transform: rotate(1.5deg);
}

.feature-split__visual.reveal.is-visible {
  --reveal-rotate: 1.5deg;
}

/* Model points row — 3-col beneath the main split */
.model-points {
  grid-column: 5 / 13;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.model-point {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.7);
}

.model-point span {
  font-size: 48px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--clay);
}

.model-point p {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: none;
}

/* Legacy list — structural compat */
.feature-split__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
}

.feature-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.55;
}

.feature-split__list li::before {
  content: '';
  display: block;
  margin-top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   20. Process — redesigned as Partners / Commercial Fit
   -------------------------------------------------------------------------- */

.process {
  padding-block: clamp(85px, 12vw, 160px);
  padding-inline: var(--pad);
  border-top: 1px solid var(--line);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.process__steps .section-label {
  grid-column: 1 / 4;
}

.process__steps h2 {
  grid-column: 4 / 11;
  margin: 0;
  font-size: clamp(50px, 9vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.09em;
  color: var(--ink);
}

.process__steps > p {
  grid-column: 8 / 12;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.38;
  max-width: none;
}

/* Partner tag pills */
.partner-pills {
  grid-column: 1 / 13;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 70px;
}

.partner-pill {
  padding: clamp(16px, 2vw, 26px) clamp(18px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 243, 232, 0.58);
  font-size: clamp(22px, 3.6vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.065em;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   21. Why Choose Us — redesigned as Split Showcase
   -------------------------------------------------------------------------- */

.why-choose {
  padding: 0 var(--pad) var(--section-gap);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Green showcase panel */
.why-choose__copy {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 62px);
  background: var(--green);
  color: var(--bg);
  border-radius: clamp(30px, 4vw, 54px);
  overflow: hidden;
}

.why-choose__copy .showcase-eyebrow {
  display: block;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-choose__copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--bg);
}

/* Image panel */
.why-choose__visual {
  min-height: 640px;
  border-radius: clamp(30px, 4vw, 54px);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   22. CTA Panel — redesigned as Contact section
   -------------------------------------------------------------------------- */

.cta-panel {
  padding-block: var(--section-gap);
  padding-inline: var(--pad);
  background: var(--soft);
}

.cta-panel__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.cta-panel__grid .section-label {
  grid-column: 1 / 13;
  margin-bottom: 0;
}

.cta-panel__grid h2 {
  grid-column: 1 / 11;
  margin: 0;
  font-size: clamp(50px, 9vw, 142px);
  line-height: 0.88;
  letter-spacing: -0.09em;
  color: var(--ink);
}

.cta-panel__grid > p {
  grid-column: 8 / 12;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.38;
  max-width: none;
}

/* Dark contact card */
.cta-panel__inner {
  grid-column: 1 / 8;
  display: grid;
  gap: 16px;
  margin-top: 56px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

.contact-name {
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-panel__inner a {
  display: block;
  width: fit-content;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: var(--bg);
  border-bottom: 2px solid rgba(239, 233, 220, 0.55);
  transition: border-color 0.2s;
}

.cta-panel__inner a:hover {
  border-color: rgba(239, 233, 220, 0.9);
}

/* --------------------------------------------------------------------------
   23. Interior Page Hero
   -------------------------------------------------------------------------- */

.page-hero {
  padding: clamp(58px, 8vw, 100px) 0 clamp(44px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero__inner h1 {
  margin-top: 0.625rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.page-hero__inner p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  max-width: 64ch;
}

/* --------------------------------------------------------------------------
   24. About Page
   -------------------------------------------------------------------------- */

.about-intro__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.about-intro__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-intro__copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.about-intro__copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 54ch;
}

.about-intro__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.55;
}

.about-intro__list li::before {
  content: '';
  display: block;
  margin-top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

.about-intro__img {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(190, 200, 160, 0.25);
  border: 1px solid var(--line);
}

.about-intro__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
}

.value-card {
  background: rgba(248, 243, 232, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  color: var(--ink);
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: none;
  line-height: 1.55;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
}

.team-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card__img {
  overflow: hidden;
  background: rgba(190, 200, 160, 0.3);
}

.team-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card__body {
  padding: 1.25rem;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-card__role {
  display: block;
  color: var(--clay);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: none;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   25. Services Page — Full Cards
   -------------------------------------------------------------------------- */

.services-full__grid {
  display: grid;
  gap: 1.5rem;
}

.service-full {
  background: rgba(248, 243, 232, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  transition: border-color 0.2s;
}

.service-full:hover {
  border-color: var(--green);
}

.service-full__img {
  overflow: hidden;
  background: rgba(190, 200, 160, 0.3);
}

.service-full__img img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.service-full__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-full__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}

.service-full__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-full__desc {
  color: var(--muted);
  max-width: none;
  line-height: 1.55;
}

.service-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.tag {
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(248, 243, 232, 0.8);
  font-size: 0.82rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   26. Contacts Page
   -------------------------------------------------------------------------- */

.contacts-layout {
  display: grid;
  gap: 2.5rem;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacts-info-item {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

.contacts-info-item__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.375rem;
}

.contacts-info-item a,
.contacts-info-item span {
  color: var(--ink);
  font-size: 0.975rem;
  transition: color 0.2s;
  max-width: none;
}

.contacts-info-item a:hover {
  color: var(--clay);
}

/* --------------------------------------------------------------------------
   27. Contact Form
   -------------------------------------------------------------------------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.contact-form__row {
  display: grid;
  gap: 1.125rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}

.required {
  color: var(--clay);
  margin-left: 0.15em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--muted);
}

.contact-form__textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.contact-form__check input[type='checkbox'] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--clay);
  cursor: pointer;
}

.contact-form__check-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: none;
}

.contact-form__check-text a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-form__privacy {
  font-size: 0.825rem;
  color: var(--muted);
  padding: 0.875rem 1rem;
  background: rgba(248, 243, 232, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  max-width: none;
  line-height: 1.55;
}

.contact-form__errors {
  background: rgba(199, 107, 74, 0.08);
  border: 1px solid rgba(199, 107, 74, 0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__errors p {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
  font-size: 0.9rem;
  max-width: none;
}

.contact-form__error {
  color: var(--clay);
  font-size: 0.875rem;
  max-width: none;
}

/* --------------------------------------------------------------------------
   28. Legal / Policy Pages
   -------------------------------------------------------------------------- */

.legal-hero {
  border-bottom: 1px solid var(--line);
}

.legal-hero .page-hero__inner {
  position: relative;
}

.legal-hero__meta {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-hero__meta strong {
  color: var(--ink);
}

.legal-section {
  padding-block: clamp(70px, 10vw, 130px);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-index {
  grid-column: 1 / 4;
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding-top: 0.4rem;
}

.legal-index__label {
  display: block;
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.legal-index nav {
  display: grid;
}

.legal-index a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.35;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-index a:first-child {
  border-top: 1px solid var(--line);
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: var(--ink);
  padding-left: 0.35rem;
}

.policy-content {
  max-width: none;
}

.legal-panel {
  grid-column: 4 / 13;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 243, 232, 0.72);
  box-shadow: 0 24px 70px rgba(20, 19, 15, 0.06);
}

.policy-content > * + * {
  margin-top: 1.5rem;
}

.legal-panel__intro {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55 !important;
}

.policy-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.policy-content h2:first-of-type {
  margin-top: 2.5rem;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  color: var(--ink);
}

.policy-content p {
  color: var(--muted);
  max-width: none;
  line-height: 1.65;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.25rem;
}

.policy-content ul {
  list-style: disc;
}
.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  color: var(--muted);
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.policy-content a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.policy-content h2[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(24px, 4vw, 40px);
  border-radius: calc(var(--radius) - 6px);
  background: var(--ink);
  color: var(--bg);
}

.legal-contact .legal-contact__label {
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.legal-contact h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--bg);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.legal-contact p {
  margin: 0;
  color: rgba(239, 233, 220, 0.7);
}

.legal-contact a {
  width: fit-content;
  color: var(--bg);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-decoration-color: rgba(239, 233, 220, 0.4);
}

/* --------------------------------------------------------------------------
   29. Thank You Page
   -------------------------------------------------------------------------- */

.thank-you {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(70px, 11vw, 150px);
}

.thank-you__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}

.thank-you__inner {
  grid-column: 1 / 8;
}

.thank-you__inner h1 {
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.thank-you__inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 54ch;
}

.thank-you__lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  line-height: 1.45 !important;
}

.thank-you__next {
  max-width: 52ch;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.thank-you__next > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.thank-you__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.thank-you__contact {
  grid-column: 9 / 13;
  display: grid;
  gap: 0.9rem;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--bg);
}

.thank-you__contact .contact-name {
  color: var(--moss);
}

.thank-you__contact h2 {
  margin: 1rem 0 0;
  color: var(--bg);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.thank-you__contact p {
  color: rgba(239, 233, 220, 0.72);
}

.thank-you__contact a {
  width: fit-content;
  color: var(--bg);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  border-bottom: 1px solid rgba(239, 233, 220, 0.5);
}

.thank-you__contact small {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(239, 233, 220, 0.2);
  color: rgba(239, 233, 220, 0.66);
}

/* --------------------------------------------------------------------------
   30. 404 Page
   -------------------------------------------------------------------------- */

.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.not-found__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.not-found__code {
  display: block;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--clay);
  line-height: 1;
  letter-spacing: -0.08em;
}

.not-found__inner h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.not-found__inner p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44ch;
  line-height: 1.6;
}

.not-found__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   31. Accessibility
   -------------------------------------------------------------------------- */

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

:focus:not(:focus-visible) {
  outline: none;
}

/* --------------------------------------------------------------------------
   32. Reduced Motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   33. Media Queries
   -------------------------------------------------------------------------- */

/* Tablet — 2-col form row */
@media (min-width: 576px) {
  .contact-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet — 2-col about/values/team/contacts */
@media (min-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

/* Desktop — wider service cards, 4-col team */
@media (min-width: 992px) {
  .service-full {
    grid-template-columns: 280px 1fr;
  }

  .service-full__img img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 240px;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile header breakpoint */
@media (max-width: 1020px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-header__menu-btn {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px var(--pad) 28px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    z-index: 99;
  }

  .site-nav--open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__link {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 26px;
    letter-spacing: -0.04em;
    text-transform: none;
    font-weight: 700;
    color: var(--ink);
  }

  .site-nav__cta {
    display: none;
  }

  /* Homepage sections: 12-col → 6-col */
  .hero__grid,
  .trust-strip__grid,
  .feature-split__grid,
  .process__steps {
    grid-template-columns: repeat(6, 1fr);
  }

  .hero-eyebrow,
  .hero__grid > h1,
  .hero__copy,
  .hero__img-wrap,
  .hero__stats,
  .feature-split__copy,
  .feature-split__visual,
  .model-points,
  .process__steps .section-label,
  .process__steps h2,
  .process__steps > p {
    grid-column: 1 / -1;
  }

  .trust-item {
    grid-column: span 3;
  }

  .model-points {
    grid-template-columns: 1fr;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .why-choose__copy,
  .why-choose__visual {
    min-height: 460px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .services-section-header {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-section-header .section-label,
  .services-section-header h2 {
    grid-column: 1 / -1;
  }
}

/* Small mobile */
@media (max-width: 620px) {
  :root {
    --pad: 18px;
    --radius: 22px;
  }

  .trust-item {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .partner-pill {
    width: 100%;
  }

  .hero__img-wrap,
  .hero__stats {
    margin-top: 240px;
  }

  .cta-panel__inner a {
    font-size: clamp(24px, 9vw, 42px);
    word-break: break-word;
  }

  .cursor-orb {
    display: none;
  }

  .cookie-popup {
    right: 18px;
    bottom: 18px;
  }
}

/* ==========================================================================
   34. Editorial Inner Page Enhancements
   ========================================================================== */

/* --- Editorial page hero modifier --- */
.page-hero--editorial {
  padding: clamp(72px, 11vw, 150px) 0 clamp(58px, 8vw, 108px);
}

.page-hero--editorial .page-hero__inner {
  gap: 0;
}

.page-hero--editorial .section-label {
  margin-bottom: 1.25rem;
}

.page-hero--editorial h1 {
  font-size: clamp(44px, 8.5vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin: 0 0 1.5rem;
  max-width: 16ch;
}

.page-hero--editorial .page-hero__desc {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  max-width: 52ch;
}

/* --- Upgraded about copy heading --- */
.about-intro__copy h2 {
  font-size: clamp(32px, 4.8vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

/* --- About intro: split layout at desktop --- */
@media (min-width: 1020px) {
  .about-intro__grid--split {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    row-gap: 3rem;
    align-items: center;
  }

  .about-intro__grid--split .about-intro__copy {
    grid-column: 1 / 7;
  }

  .about-intro__grid--split .about-intro__img {
    grid-column: 7 / 13;
    min-height: 480px;
  }

  .about-intro__grid--split-rev {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    row-gap: 3rem;
    align-items: center;
  }

  .about-intro__grid--split-rev .about-intro__copy {
    grid-column: 7 / 13;
    order: 2;
  }

  .about-intro__grid--split-rev .about-intro__img {
    grid-column: 1 / 7;
    order: 1;
    min-height: 480px;
  }

  .about-intro__grid--split .about-intro__img img,
  .about-intro__grid--split-rev .about-intro__img img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 320px;
  }
}

/* Richer image background for split sections */
.about-intro__img {
  background:
    linear-gradient(135deg, rgba(85, 107, 69, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(199, 107, 74, 0.18), transparent 45%),
    var(--soft);
}

/* --- Editorial asymmetric section header --- */
.section-editorial-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}

.section-editorial-header .section-label {
  grid-column: 1 / 4;
  align-self: start;
}

.section-editorial-header h2 {
  grid-column: 4 / 13;
  margin: 0;
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.section-editorial-header--dark h2 {
  color: var(--bg);
}

.section-editorial-header--dark .section-label {
  color: var(--clay);
}

.section-editorial-header p {
  grid-column: 4 / 10;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
  max-width: none;
}

.section-editorial-header--dark p {
  color: rgba(239, 233, 220, 0.68);
}

/* --- Numbered value/principles cards --- */
.values-grid--numbered {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.value-card--numbered {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding: clamp(24px, 3vw, 38px);
}

.value-card__num {
  display: block;
  font-size: clamp(54px, 6.8vw, 92px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: var(--clay);
  margin-bottom: 1.25rem;
}

.value-card--numbered h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.625rem;
  color: var(--ink);
}

/* --- Services page: dark numbered rows --- */
.services-dark {
  padding-block: var(--section-gap);
  background: var(--ink);
  color: var(--bg);
}

.services-dark__list {
  border-top: 1px solid rgba(239, 233, 220, 0.2);
}

.service-row {
  display: grid;
  grid-template-columns: 1.5fr 6fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(239, 233, 220, 0.2);
}

.service-row__num {
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: var(--gold);
}

.service-row__body h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--bg);
}

.service-row__body p {
  max-width: 680px;
  margin: 0 0 20px;
  color: rgba(239, 233, 220, 0.68);
  font-size: 18px;
  line-height: 1.45;
}

.service-row__img {
  width: min(440px, 100%);
  min-height: 220px;
  margin-top: 20px;
  border: 1px solid rgba(239, 233, 220, 0.12);
}

.service-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 16px;
}

.service-row__tags .tag {
  border-color: rgba(239, 233, 220, 0.22);
  background: rgba(239, 233, 220, 0.06);
  color: rgba(239, 233, 220, 0.62);
}

/* --- Contacts page: editorial hero --- */
.contact-page-hero {
  padding: clamp(85px, 13vw, 175px) 0 clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.contact-page-hero__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.contact-page-hero__inner .section-label {
  grid-column: 1 / 13;
}

.contact-page-hero__inner h1 {
  grid-column: 1 / 11;
  margin: 1.25rem 0 0;
  font-size: clamp(50px, 9vw, 142px);
  line-height: 0.88;
  letter-spacing: -0.09em;
  color: var(--ink);
}

.contact-page-hero__inner > p {
  grid-column: 8 / 12;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.38;
  max-width: none;
  align-self: end;
}

/* --- Contact direct card section --- */
.contact-direct {
  padding-block: var(--section-gap);
}

.contact-direct__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-direct__card {
  grid-column: 1 / 8;
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

.contact-direct__card .contact-name {
  color: var(--moss);
}

.contact-direct__card a {
  display: block;
  width: fit-content;
  font-size: clamp(15px, 2vw, 24px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.0085em;
  color: var(--bg);
  border-bottom: 2px solid rgba(239, 233, 220, 0.35);
  transition: border-color 0.2s;
}

.contact-direct__card a:hover {
  border-color: rgba(239, 233, 220, 0.85);
}

.contact-direct__aside {
  grid-column: 9 / 13;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-direct__aside-title {
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  font-weight: 900;
}

.contact-direct__aside > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: none;
  margin: 0;
}

.contact-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-category {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(248, 243, 232, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-category::before {
  content: '';
  display: block;
  margin-top: 0.42rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

/* --- Contacts: editorial form section --- */
.contacts-editorial {
  padding-block: var(--section-gap);
  background: var(--soft);
}

.contacts-editorial__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.contacts-editorial__left {
  grid-column: 1 / 5;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contacts-editorial__form {
  grid-column: 5 / 13;
}

.contacts-editorial__left .section-label {
  margin-bottom: 1rem;
}

.contacts-editorial__left h2 {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.contacts-editorial__left > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: none;
  margin: 0;
}

/* --- Responsive: editorial inner-page sections --- */
@media (max-width: 1020px) {
  .legal-layout,
  .thank-you__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .legal-index {
    grid-column: 1 / 3;
  }

  .legal-panel {
    grid-column: 3 / 7;
  }

  .thank-you__inner {
    grid-column: 1 / 7;
  }

  .thank-you__contact {
    grid-column: 2 / 7;
    margin-top: 2rem;
  }

  .section-editorial-header {
    grid-template-columns: repeat(6, 1fr);
  }

  .section-editorial-header .section-label,
  .section-editorial-header h2,
  .section-editorial-header p {
    grid-column: 1 / -1;
  }

  .contact-page-hero__inner {
    grid-template-columns: repeat(6, 1fr);
  }

  .contact-page-hero__inner .section-label,
  .contact-page-hero__inner h1,
  .contact-page-hero__inner > p {
    grid-column: 1 / -1;
  }

  .contact-direct__grid {
    grid-template-columns: 1fr;
  }

  .contact-direct__card,
  .contact-direct__aside {
    grid-column: 1 / -1;
  }

  .contacts-editorial__grid {
    grid-template-columns: 1fr;
  }

  .contacts-editorial__left,
  .contacts-editorial__form {
    grid-column: 1 / -1;
  }

  .contacts-editorial__left {
    position: static;
  }
}

@media (max-width: 768px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index,
  .legal-panel {
    grid-column: 1 / -1;
  }

  .legal-index {
    position: static;
    margin-bottom: 1.25rem;
  }

  .legal-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .values-grid--numbered {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .legal-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .legal-index nav {
    grid-template-columns: 1fr;
  }

  .thank-you__grid {
    grid-template-columns: 1fr;
  }

  .thank-you__inner,
  .thank-you__contact {
    grid-column: 1 / -1;
  }

  .thank-you__contact a,
  .legal-contact a {
    overflow-wrap: anywhere;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row__num {
    margin-bottom: 0.5rem;
  }

  .contact-direct__card a {
    font-size: clamp(20px, 7.5vw, 36px);
    word-break: break-all;
  }
}
