:root {
  /* Core neutrals */
  --charcoal: #2a2d2e;
  --ink: #1e1e1e;
  --stone: #6b5d4d;
  --sand: #e8dfd0;
  --fog: #f4f1ec;
  --grey: #7a7a7a;
  --grey-lt: #ddd8cf;

  /* Brand accents */
  --sage: #7a8b6f;
  --sage-deep: #647358;
  --terra: #c4704b;
  --sky: #6f8798;
  --clay-red: #c25f55;
  --mulberry: #8b6f8e;
  --ochre: #d4a24a;

  /* Accent aliases for future CMS-driven theming */
  --accent-green: var(--sage);
  --accent-orange: var(--terra);
  --accent-blue: var(--sky);
  --accent-red: var(--clay-red);
  --accent-purple: var(--mulberry);
  --accent-yellow: var(--ochre);

  --font-main: "Montserrat", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;

  /* Type scale */
  --text-sm: 11px;    /* labels, nav, buttons, small UI */
  --text-base: 14px;  /* body text, descriptions, list items */
  --text-sub: 18px;   /* sub-headings, step titles */
  --text-title: 22px; /* card titles, section titles */
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  background: var(--fog);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

main {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

[id] {
  scroll-margin-top: 104px;
}

.theme--charcoal {
  --theme-accent: var(--charcoal);
  --lp-accent: var(--charcoal);
}

.theme--stone {
  --theme-accent: var(--stone);
  --lp-accent: var(--stone);
}

.theme--sage {
  --theme-accent: var(--sage);
  --lp-accent: var(--sage);
}

.theme--terra {
  --theme-accent: var(--terra);
  --lp-accent: var(--terra);
}

.theme--sky {
  --theme-accent: var(--sky);
  --lp-accent: var(--sky);
}

.theme--mulberry {
  --theme-accent: var(--mulberry);
  --lp-accent: var(--mulberry);
}

.theme--clay-red {
  --theme-accent: var(--clay-red);
  --lp-accent: var(--clay-red);
}

.theme--ochre {
  --theme-accent: var(--ochre);
  --lp-accent: var(--ochre);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--wide {
  max-width: 1440px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  background: rgba(244, 241, 236, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(139, 125, 107, 0.1);
}

.nav-logo {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.nav-logo-icon {
  height: 44px;
  width: auto;
}

.logo-text {
  align-self: flex-end;
  line-height: 1;
  margin-bottom: -4px;
}

.logo-num {
  color: var(--clay-red);
  font-weight: 800;
}

.hero-eyebrow-leaf {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  color: var(--clay-red);
  vertical-align: middle;
}

.hero-eyebrow-leaf svg {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.mob-links a[aria-current="page"] {
  color: var(--terra);
}

.nav-leaf {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-leaf .material-symbols-outlined,
.nav-leaf .nav-leaf-icon {
  font-size: var(--text-title);
  width: var(--text-title);
  height: var(--text-title);
  color: var(--sage);
  transition: color 0.2s;
}

.nav-leaf .nav-leaf-icon {
  display: block;
  flex-shrink: 0;
}

.nav-leaf .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.nav-leaf:hover .material-symbols-outlined,
.nav-leaf[aria-current="page"] .material-symbols-outlined,
.nav-leaf:hover .nav-leaf-icon,
.nav-leaf[aria-current="page"] .nav-leaf-icon {
  color: var(--terra);
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  width: 38px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s, background 0.2s;
}

.nav-search:hover {
  border-color: var(--charcoal);
  background: rgba(42, 45, 46, 0.04);
}

.nav-search.is-open {
  width: 220px;
  background: #fff;
  border-color: var(--grey);
  cursor: default;
  overflow: visible;
}

.nav-search-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-search-btn svg {
  width: 15px;
  height: 15px;
  color: var(--stone);
  transition: color 0.2s;
}

.nav-search:hover .nav-search-btn svg,
.nav-search.is-open .nav-search-btn svg {
  color: var(--charcoal);
}

.nav-search-input {
  flex: 1;
  min-width: 0;
  padding: 0;
  padding-right: 14px;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.nav-search.is-open .nav-search-input {
  opacity: 1;
}

.nav-search-input:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 var(--sky);
}

.nav-search-input::placeholder {
  color: var(--stone);
  font-weight: 400;
}

.nav-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--grey-lt);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 100;
  padding: 6px;
}

.nav-search-result {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--charcoal);
  transition: background 0.15s;
}

.nav-search-result:hover {
  background: var(--fog);
}

.nav-search-result-title {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.3;
}

.nav-search-result-excerpt {
  display: block;
  font-size: var(--text-sm);
  color: var(--grey);
  line-height: 1.4;
  margin-top: 2px;
}

.nav-search-result-type {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sage-deep);
  background: var(--fog);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.nav-search-empty {
  padding: 16px 12px;
  font-size: var(--text-sm);
  color: var(--grey);
  text-align: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: transparent;
  color: var(--terra);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--terra);
  border-radius: 24px;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-nav-outline:hover,
.btn-nav-outline:focus-visible {
  background: var(--terra);
  color: #fff;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--sage);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 24px;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-nav:hover,
.btn-nav:focus-visible {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--grey-lt);
  white-space: nowrap;
}

.lang-switch button {
  padding: 6px 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--stone);
  transition: color 0.2s;
  text-transform: uppercase;
}

.lang-switch button.active {
  color: var(--terra);
}

.lang-switch button:hover {
  color: var(--terra);
}

.lang-switch-sep {
  color: var(--grey-lt);
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

.mob-lang {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mob-lang button {
  padding: 10px 20px;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s;
}

.mob-lang button.active {
  color: #fff;
  border-color: var(--terra);
  background: var(--terra);
}

.mob-lang button:hover {
  color: #fff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  padding: 40px 32px;
  background: var(--ink);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mob-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.mob-head .nav-logo {
  color: #fff;
}

.mob-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.mob-close svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.mob-links {
  list-style: none;
  flex: 1;
}

.mob-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mob-links a {
  display: block;
  padding: 18px 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  transition: color 0.2s;
}

.mob-links a:hover {
  color: var(--terra);
}

.mob-cta {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.btn-mob {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--sage);
  color: #fff;
  text-align: center;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 12px;
}

.btn-mob-outline {
  display: block;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--terra);
  color: var(--terra);
  text-align: center;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.hero-viewport {
  height: calc(100vh - var(--nav-height));
  height: calc(100svh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--fog);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: brightness(1.05) contrast(1) saturate(0.8);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(244, 241, 236, 0.97) 0%,
      rgba(244, 241, 236, 0.92) 35%,
      rgba(244, 241, 236, 0.55) 65%,
      rgba(244, 241, 236, 0.15) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px;
}

.hero-inner {
  max-width: 680px;
  padding-bottom: 72px;
}

.hero-eyebrow,
.page-eyebrow,
.sec-label,
.cta-eye {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--terra);
  margin-bottom: 32px;
}

.hero-eyebrow-line,
.sec-label-line {
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero-title {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 0.95;
  letter-spacing: -2px;
}

.hero-title em {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.5em;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--stone);
}

.hero-body,
.page-intro,
.sec-sub,
.cta-desc {
  font-size: var(--text-base);
  line-height: 1.8;
}

.hero-body {
  max-width: 440px;
  margin-bottom: 44px;
  color: var(--stone);
}

.hero-body strong {
  color: var(--terra);
  font-weight: 500;
}

.hero-ctas,
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost-light,
.btn-outline-sm,
.ppanel-cta,
.btn-cta-white,
.btn-ghost-dark,
.mcta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary,
.btn-cta-white {
  gap: 12px;
  padding: 16px 32px;
  background: var(--sage);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 32px;
  transition: all 0.3s;
}

.btn-primary:hover,
.btn-cta-white:hover,
.btn-primary:focus-visible,
.btn-cta-white:focus-visible {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(122, 139, 111, 0.25);
}

.btn-primary svg,
.btn-outline-sm svg,
.ppanel-cta svg,
.btn-cta-white svg,
.btn-ghost-dark svg,
.mcta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-ghost-light,
.btn-ghost-dark {
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid var(--terra);
  border-radius: 32px;
  background: transparent;
  color: var(--terra);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: var(--terra);
  color: #fff;
}

.hero-stats-wrap {
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 20px;
}

.hero-stat-val,
.mcard-glass-stat-val,
.step-num,
.sus-stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-val {
  font-size: 48px;
  color: var(--charcoal);
}

.hero-stat-val sup,
.mcard-glass-stat-val sup,
.sus-stat-val sup,
.ppanel-metric-val sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--terra);
}

.hero-stat-lbl {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--stone);
  line-height: 1.45;
  max-width: 200px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 18px 48px;
  background: var(--sand);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--terra);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone);
  opacity: 0.3;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 156px 0 108px;
  background:
    linear-gradient(
      180deg,
      rgba(232, 223, 208, 0.82) 0%,
      rgba(244, 241, 236, 0.9) 52%,
      #fff 100%
    );
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 139, 111, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.page-hero-grid > :first-child {
  max-width: 720px;
}

.page-eyebrow {
  margin-bottom: 22px;
  color: var(--terra);
}

.page-title,
.sec-h,
.cta-title {
  line-height: 1.05;
  letter-spacing: -1px;
}

.page-title {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 0.98;
  text-wrap: balance;
}

.page-title em,
.sec-h em,
.cta-title em {
  font-style: normal;
  color: var(--terra);
}

.page-intro {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--stone);
}

.page-actions {
  margin-top: 34px;
}

.page-hero-art {
  position: relative;
  width: min(100%, 520px);
  min-height: 0;
  aspect-ratio: 0.96;
  margin-left: auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--charcoal);
  box-shadow: 0 24px 80px rgba(42, 45, 46, 0.12);
}

.page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.page-hero-compact {
  padding: 72px 0 34px;
}

.page-hero-compact .page-hero-grid {
  grid-template-columns: minmax(0, 1.48fr) minmax(360px, 0.84fr);
  gap: 30px;
  align-items: center;
}

.page-hero-compact .page-hero-grid > :first-child {
  max-width: 920px;
}

.page-hero-compact .page-title {
  max-width: 18ch;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
}

.page-hero-compact .page-intro {
  max-width: 62ch;
  font-size: var(--text-base);
  line-height: 1.65;
}

.page-hero-compact .page-actions {
  margin-top: 22px;
}

.page-hero-compact .page-hero-art {
  width: min(100%, 500px);
  aspect-ratio: 1.04;
  border-radius: 28px;
}

.page-hero-compact .page-hero-card {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 18px;
}

.page-hero-compact .page-hero-card-copy {
  font-size: var(--text-base);
  line-height: 1.55;
}

.page-summary {
  padding: 108px 0;
  background: #fff;
}

.page-summary.alt {
  background: var(--fog);
}

.page-summary-head,
.models-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.page-summary-head .sec-sub,
.models-head .sec-sub {
  max-width: 640px;
  margin-bottom: 0;
}

.summary-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.summary-card,
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(139, 125, 107, 0.1);
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.summary-card {
  background: var(--fog);
}

.page-summary.alt .summary-card,
.contact-card {
  background: #fff;
}

.summary-card:hover,
.contact-card:hover,
.summary-card:focus-within,
.contact-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.summary-card-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
}

.summary-card-title {
  font-size: var(--text-title);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.summary-card-body,
.contact-card-body {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
}

.summary-card-body,
.contact-card-body {
  flex: 1;
}

.summary-card-link,
.contact-card-link {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
}

/* Per-card accent colors */
.summary-card:nth-child(1) .summary-card-kicker,
.summary-card:nth-child(1) .summary-card-link { color: var(--terra); }
.summary-card:nth-child(2) .summary-card-kicker,
.summary-card:nth-child(2) .summary-card-link { color: var(--sage); }
.summary-card:nth-child(3) .summary-card-kicker,
.summary-card:nth-child(3) .summary-card-link { color: var(--sky); }

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

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.contact-form-panel {
  border-radius: 16px;
  background: #fff;
}

.contact-form-card {
  padding: 40px;
}

.contact-form-head {
  margin-bottom: 32px;
}

.contact-form-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

.contact-form-copy,
.contact-form-note,
.contact-side-list li,
.contact-side-step p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: var(--text-base);
  border: none;
  border-bottom: 2px solid var(--grey-lt);
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  transition: border-color 0.25s;
}

.form-input,
.form-select {
  height: 48px;
  padding: 0 0 8px;
}

.form-textarea {
  min-height: 120px;
  padding: 8px 0;
  resize: vertical;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c4704b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 0 center;
  background-size: 14px;
  background-repeat: no-repeat;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-bottom-color: var(--sky);
}

.form-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.form-chip {
  position: relative;
}

.form-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--grey-lt);
  border-radius: 999px;
  background: transparent;
  color: var(--stone);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}

.form-chip span:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.form-chip input:checked + span {
  border-color: var(--terra);
  background: var(--terra);
  color: #fff;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-lt);
}

.contact-form-note {
  max-width: 420px;
}

.contact-form-submit {
  flex-shrink: 0;
}

.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.contact-form-status {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(122, 139, 111, 0.2);
  border-radius: 12px;
  background: rgba(122, 139, 111, 0.06);
  color: var(--charcoal);
  font-size: var(--text-base);
  line-height: 1.65;
}

.contact-form-card.is-submitted {
  box-shadow: 0 8px 32px rgba(122, 139, 111, 0.08);
}

.contact-form-side {
  display: grid;
  gap: 20px;
}

.contact-form-panel {
  padding: 28px;
}

.contact-side-title {
  margin-bottom: 14px;
  font-size: var(--text-sub);
  font-weight: 700;
  line-height: 1.2;
}

.contact-side-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.contact-side-list li {
  position: relative;
  padding-left: 18px;
}

.contact-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

.contact-side-steps {
  display: grid;
  gap: 14px;
}

.contact-side-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(139, 125, 107, 0.14);
}

.contact-side-step:first-child {
  padding-top: 0;
  border-top: none;
}

.contact-side-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--charcoal);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-title {
  font-size: var(--text-sub);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ══════ FAQ ACCORDION ══════ */
.sec-faq {
  padding: 100px 0;
  background: var(--fog);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-accordion {
  border-bottom: 1px solid var(--grey-lt);
}

.faq-accordion:first-child {
  border-top: 1px solid var(--grey-lt);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: var(--text-sub);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-accordion-trigger:hover,
.faq-accordion-trigger:focus-visible {
  color: var(--terra);
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--grey-lt);
  transition: all 0.3s;
}

.faq-accordion-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--charcoal);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s;
}

.faq-accordion.open .faq-accordion-icon {
  background: var(--terra);
  border-color: var(--terra);
}

.faq-accordion.open .faq-accordion-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-accordion.open .faq-accordion-body {
  max-height: 300px;
}

.faq-accordion-answer {
  padding: 0 0 24px;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  color: var(--stone);
  max-width: 640px;
}

.sec-label {
  color: var(--terra);
  margin-bottom: 20px;
}

.sec-h {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
}

.sec-sub {
  max-width: 540px;
  margin-bottom: 56px;
  font-weight: 300;
  color: var(--stone);
}

.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.sec-personas {
  padding: 100px 0 120px;
  position: relative;
  background: var(--fog);
}

.personas-tabs-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 28px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
}

.personas-tabs-bleed::-webkit-scrollbar {
  display: none;
}

.personas-tabs-shell {
  display: flex;
  justify-content: center;
  min-width: fit-content;
}

.personas-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  min-width: max-content;
  margin-bottom: 32px;
}

.ptab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--theme-accent, var(--grey-lt));
  border-radius: 24px;
  background: transparent;
  color: var(--stone);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}

.ptab:hover {
  color: var(--theme-accent, var(--charcoal));
  border-color: var(--theme-accent, var(--stone));
}

.ptab.active {
  color: #fff;
  background: var(--theme-accent, var(--charcoal));
  border-color: var(--theme-accent, var(--charcoal));
}

.ptab.active .ptab-icon {
  color: currentColor;
}

.ptab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-accent, var(--charcoal));
  flex-shrink: 0;
}

.ptab-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ppanel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 48px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
}

.ppanel.active {
  display: grid;
}

.ppanel-num,
.ppanel-section-label,
.mcard-cert,
.f-col-title,
.f-copy {
  font-family: var(--font-mono);
}

.ppanel-num {
  margin-bottom: 28px;
  font-size: var(--text-sm);
  color: var(--stone);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ppanel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--theme-accent, var(--terra));
}

.ppanel-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ppanel-name {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.ppanel-tagline {
  margin-bottom: 40px;
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
}

.ppanel-needs,
.ppanel-offers {
  display: flex;
  flex-direction: column;
}

.ppanel-need,
.ppanel-offer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--grey-lt);
}

.ppanel-need:last-child,
.ppanel-offer:last-child {
  border-bottom: 1px solid var(--grey-lt);
}

.ppanel-need {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.6;
  color: var(--stone);
}

.ppanel-need-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--terra);
}

.ppanel-cta {
  gap: 12px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--sage);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 28px;
  transition: all 0.3s;
}

.ppanel-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

.ppanel-section-label {
  margin-bottom: 20px;
  font-size: var(--text-sm);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
}

.ppanel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.ppanel-metric {
  padding: 24px 20px;
  border-radius: 12px;
  background: var(--fog);
}

.ppanel-metric-val {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
}

.ppanel-metric-lbl,
.mspec-l,
.mcard-glass-stat-lbl,
.step-desc,
.why-item-desc,
.sus-pill-desc,
.f-links a,
.f-ci,
.f-tagline,
.cta-contact-info {
  color: var(--stone);
}

.ppanel-metric-lbl {
  font-size: var(--text-sm);
}

.ppanel-offer-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ppanel-offer-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ppanel-offer-text {
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--stone);
}

.ppanel-offer-text strong {
  display: block;
  margin-bottom: 2px;
  color: var(--charcoal);
}

.sec-process {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: var(--charcoal);
  color: #fff;
}

.sec-process::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.08) 0%, transparent 70%);
}

.sec-process .sec-label,
.sec-process .sec-label-line {
  color: var(--sand);
}

.sec-process .sec-h {
  color: #fff;
}

.sec-process .sec-sub {
  color: rgba(255, 255, 255, 0.6);
}

.steps,
.why-grid,
.sus-pillars,
.models-grid,
.footer-grid {
  display: grid;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding: 40px 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.35s;
}

.step:nth-child(2) {
  transform: translateY(24px);
}

.step:nth-child(4) {
  transform: translateY(16px);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 112, 75, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.step:nth-child(2):hover {
  transform: translateY(20px);
}

.step:nth-child(4):hover {
  transform: translateY(12px);
}

.step-accent {
  width: 32px;
  height: 3px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.step:nth-child(1) .step-accent {
  background: var(--terra);
}

.step:nth-child(2) .step-accent {
  background: var(--sage);
}

.step:nth-child(3) .step-accent {
  background: var(--sand);
}

.step:nth-child(4) .step-accent {
  background: var(--stone);
}

.step-num {
  margin-bottom: 20px;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.05);
}

.step-title {
  margin-bottom: 12px;
  font-size: var(--text-sub);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step-desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Process: Timeline Comparison ── */

.sec-tl-compare {
  padding: 120px 0;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}

.sec-tl-compare .sec-label,
.sec-tl-compare .sec-label-line { color: var(--sand); }
.sec-tl-compare .sec-h { color: #fff; }
.sec-tl-compare .sec-sub { color: rgba(255,255,255,0.6); }

.tl-compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 56px;
}

.tl-compare-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tl-compare-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.tl-compare-label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.tl-compare-duration {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.tl-compare-track {
  position: relative;
  display: flex;
  gap: 2px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
}

.tl-compare-bar {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 2px;
  min-width: 0;
}

.tl-compare-bar[data-flex="1"] {
  flex: 1;
}

.tl-compare-bar[data-flex="3"] {
  flex: 3;
}

.tl-compare-bar[data-flex="4"] {
  flex: 4;
}

.tl-compare-bar[data-flex="5"] {
  flex: 5;
}

.tl-compare-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Conventional: pale-to-red gradient building urgency left to right */
.tl-conv .tl-compare-bar { color: #fff; }
.tl-conv .tl-compare-bar:nth-child(1) { background: rgba(194,95,85,0.20); color: rgba(255,255,255,0.7); }
.tl-conv .tl-compare-bar:nth-child(2) { background: rgba(194,95,85,0.35); color: rgba(255,255,255,0.8); }
.tl-conv .tl-compare-bar:nth-child(3) { background: rgba(194,95,85,0.55); }
.tl-conv .tl-compare-bar:nth-child(4) { background: rgba(194,95,85,0.78); }
.tl-conv .tl-compare-bar:nth-child(5) { background: var(--clay-red); }

/* Modular: short, accented */
.tl-mod { width: 13%; min-width: 180px; }
.tl-mod .tl-compare-bar { background: var(--sage); color: #fff; }
.tl-mod .tl-compare-bar:nth-child(even) { background: var(--sage); }

.tl-compare-stat {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tl-stat-num {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
}

.tl-stat-label {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  line-height: 1.6;
}

/* ── Process: Gantt Timeline ── */

.sec-gantt {
  padding: 120px 0;
  background: var(--fog);
}

.gantt-wrap {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gantt-grid {
  display: grid;
  grid-template-columns: 180px repeat(8, 1fr);
  gap: 6px 0;
  min-width: 700px;
}

.gantt-week-header {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--grey-lt);
}

.gantt-week-header:first-child {
  text-align: left;
  color: var(--stone);
  font-weight: 600;
  font-size: var(--text-sm);
}

.gantt-track-label {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--charcoal);
  padding: 14px 20px 14px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey-lt);
}

.gantt-cell {
  padding: 8px 2px;
  border-bottom: 1px solid var(--grey-lt);
}

.gantt-cell[data-col="2-3"] {
  grid-column: 2 / 3;
}

.gantt-cell[data-col="2-4"] {
  grid-column: 2 / 4;
}

.gantt-cell[data-col="2-6"] {
  grid-column: 2 / 6;
}

.gantt-cell[data-col="2-8"] {
  grid-column: 2 / 8;
}

.gantt-cell[data-col="2-9"] {
  grid-column: 2 / 9;
}

.gantt-cell[data-col="3-7"] {
  grid-column: 3 / 7;
}

.gantt-cell[data-col="4-8"] {
  grid-column: 4 / 8;
}

.gantt-cell[data-col="4-10"] {
  grid-column: 4 / 10;
}

.gantt-cell[data-col="6-10"] {
  grid-column: 6 / 10;
}

.gantt-cell[data-col="7-10"] {
  grid-column: 7 / 10;
}

.gantt-cell[data-col="8-9"] {
  grid-column: 8 / 9;
}

.gantt-cell[data-col="8-10"] {
  grid-column: 8 / 10;
}

.gantt-cell[data-col="9-10"] {
  grid-column: 9 / 10;
}

.gantt-bar {
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.gantt-bar--terra { background: var(--terra); }
.gantt-bar--sage { background: var(--sage); }
.gantt-bar--blue { background: var(--sky); }
.gantt-bar--red { background: var(--clay-red); }
.gantt-bar--purple { background: var(--mulberry); }
.gantt-bar--yellow { background: var(--ochre); color: var(--charcoal); }
.gantt-bar--charcoal { background: var(--charcoal); }
.gantt-bar--stone { background: var(--stone); }
.gantt-bar--sand { background: var(--sand); color: var(--charcoal); }
.gantt-bar--ink { background: var(--ink); }

.gantt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.gantt-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--stone);
}

.gantt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.gantt-parallel-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #fff;
  border-left: 3px solid var(--sage);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ── Process: Stage Deep-dive ── */

.sec-stages {
  padding: 120px 0;
  background: #fff;
}

.stages-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}

.stage-block {
  display: grid;
  grid-template-columns: 80px 1fr 340px;
  gap: 0 40px;
  padding: 48px 0;
  border-top: 1px solid var(--grey-lt);
}

.stage-block:last-child {
  border-bottom: 1px solid var(--grey-lt);
}

.stage-num-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stage-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--grey-lt);
  line-height: 1;
}
.stage-block:nth-child(1) .stage-num { color: var(--sky); }
.stage-block:nth-child(2) .stage-num { color: var(--sage); }
.stage-block:nth-child(3) .stage-num { color: var(--ochre); }
.stage-block:nth-child(4) .stage-num { color: var(--terra); }

.stage-accent {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  margin-top: 16px;
}

.stage-block:nth-child(1) .stage-accent { background: var(--terra); }
.stage-block:nth-child(2) .stage-accent { background: var(--sage); }
.stage-block:nth-child(3) .stage-accent { background: var(--sand); }
.stage-block:nth-child(4) .stage-accent { background: var(--stone); }

.stage-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stage-title {
  font-size: var(--text-title);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.stage-subtitle {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
}

.stage-desc {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}

.stage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
  border-left: 1px solid var(--grey-lt);
}

.stage-detail-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stage-detail-label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

.stage-detail-val {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
}
.stage-block:nth-child(1) .stage-detail-group:first-child .stage-detail-val { color: var(--sky); }
.stage-block:nth-child(2) .stage-detail-group:first-child .stage-detail-val { color: var(--sage); }
.stage-block:nth-child(3) .stage-detail-group:first-child .stage-detail-val { color: var(--ochre); }
.stage-block:nth-child(4) .stage-detail-group:first-child .stage-detail-val { color: var(--terra); }

.stage-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-deliverables li {
  font-size: var(--text-base);
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.stage-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

@media (max-width: 960px) {
  .stage-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stage-num-col {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .stage-accent { margin-top: 0; }
  .stage-sidebar {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--grey-lt);
    padding-top: 20px;
  }
  .tl-mod { width: 40%; }
  .gantt-grid { grid-template-columns: 140px repeat(8, 1fr); }
}

@media (max-width: 580px) {
  .gantt-grid { grid-template-columns: 100px repeat(8, 1fr); min-width: 580px; }
  .tl-mod { width: 60%; }
  .tl-compare-stat { flex-direction: column; gap: 12px; }

  .stage-num {
    font-size: 36px;
  }

  .stage-title {
    font-size: var(--text-sub);
  }

  .stage-desc {
    font-size: var(--text-base);
  }

  .stage-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stage-sidebar .stage-detail-group:last-child {
    grid-column: 1 / -1;
  }
}

.sec-models {
  padding: 120px 0 80px;
  position: relative;
  overflow: visible;
  background: var(--fog);
}

.btn-outline-sm {
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--terra);
  border-radius: 24px;
  background: transparent;
  color: var(--terra);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-outline-sm:hover,
.btn-outline-sm:focus-visible {
  background: var(--terra);
  color: #fff;
}

.models-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mcard:hover,
.mcard:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

.mcard-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.mcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mcard:hover .mcard-img img {
  transform: scale(1.05);
}

.mcard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.5) 0%, rgba(30, 30, 30, 0) 50%);
}

.mcard-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--terra);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mcard:nth-child(1) .mcard-tag { background: var(--terra); }
.mcard:nth-child(2) .mcard-tag { background: var(--sage); }
.mcard:nth-child(3) .mcard-tag { background: var(--stone); }
.mcard:nth-child(4) .mcard-tag { background: var(--sky); }

.mcard:nth-child(1) .mcta { background: var(--terra); }
.mcard:nth-child(1) .mcta:hover { background: #a85d3e; }
.mcard:nth-child(2) .mcta { background: var(--sage); }
.mcard:nth-child(2) .mcta:hover { background: var(--sage-deep); }
.mcard:nth-child(3) .mcta { background: var(--stone); }
.mcard:nth-child(3) .mcta:hover { background: #5a4e40; }
.mcard:nth-child(4) .mcta { background: var(--sky); }
.mcard:nth-child(4) .mcta:hover { background: #5d7585; }

.mcard-cert {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(30, 30, 30, 0.6);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mcard-glass-stat {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mcard-glass-stat-val {
  font-size: 28px;
  color: #fff;
}

.mcard-glass-stat-lbl {
  font-size: var(--text-sm);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}

.mbody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 24px;
}

.mname {
  margin-bottom: 4px;
  font-size: var(--text-title);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.msub {
  margin-bottom: 24px;
  font-size: var(--text-sm);
  color: var(--stone);
  letter-spacing: 0.5px;
}

.mspecs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.mspec {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--fog);
}

.mspec-l {
  margin-bottom: 4px;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

.mspec-v {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 700;
}

.mfeats {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-bottom: 20px;
}

.mfeat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--stone);
}

.mfeat:last-child {
  border-bottom: none;
}

.mfeat svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mtiers {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mtier {
  flex: 1;
  padding: 6px 3px;
  border-radius: 6px;
  background: var(--fog);
  color: var(--grey-lt);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mtier.hl {
  background: var(--terra);
  color: #fff;
}

.mcta {
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--sage);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  min-height: 48px;
  white-space: nowrap;
  margin-top: auto;
}

.mcta:hover {
  background: var(--sage-deep);
}

.mcta:hover svg {
  transform: translateX(4px);
}

.sec-why {
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  background: var(--sand);
}

.sec-why::before {
  content: "";
  position: absolute;
  left: -200px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 139, 111, 0.12) 0%, transparent 60%);
}

.why-grid {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 16px;
}

.why-item {
  position: relative;
  padding: 36px 28px;
  border: 1px solid rgba(139, 125, 107, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.35s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

/* Hero card — spans 2 rows, photo background */
.why-item--hero {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--charcoal);
  color: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}

.why-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.92) 30%, rgba(30, 30, 30, 0.4) 70%, rgba(30, 30, 30, 0.15) 100%);
  pointer-events: none;
}

.why-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 44px 40px;
  margin-top: auto;
  justify-content: flex-end;
}

.why-item--hero:hover {
  background: var(--charcoal);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
}

.why-item--hero .why-item-num {
  color: rgba(255, 255, 255, 0.55);
}

.why-item--hero .why-item-desc {
  color: rgba(255, 255, 255, 0.7);
}

.why-item-stat {
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--terra);
}

.why-item-stat span {
  font-size: 28px;
  font-weight: 400;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.55);
}

/* Standard right-column cards */
.why-item:nth-child(2) .why-item-accent {
  background: var(--sage);
}

.why-item:nth-child(3) .why-item-accent {
  background: var(--stone);
}

.why-item-accent {
  width: 28px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Wide bottom card */
.why-item--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.why-item--wide:hover {
  background: rgba(255, 255, 255, 0.9);
}

.why-item-wide-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--terra);
  opacity: 0.2;
}

.why-item-wide-body .why-item-title {
  margin-bottom: 4px;
}

.why-item-wide-flow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-item-wide-flow span {
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--stone);
  background: rgba(139, 125, 107, 0.08);
  border-radius: 100px;
  white-space: nowrap;
}

.why-item-wide-flow span::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
}

.why-item-wide-flow span:not(:last-child) {
  position: relative;
  margin-right: 10px;
}

.why-item-wide-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--grey-lt);
}

.why-item-num {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1px;
  color: var(--stone);
  opacity: 0.5;
}

.why-item-title,
.sus-pill-title {
  margin-bottom: 12px;
  font-size: var(--text-sub);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-item-desc,
.sus-pill-desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Exploded module section ── */

.sec-exploded {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.exploded-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: center;
}

.exploded-text {
  padding-right: 56px;
}

.exploded-text .sec-h {
  max-width: 14ch;
}

.exploded-text .sec-sub {
  max-width: 42ch;
}

.exploded-img {
  position: relative;
  overflow: hidden;
  margin-right: calc((min(100vw, 1200px) - 100vw) / 2 - 48px);
  border-radius: 20px 0 0 20px;
  min-height: 460px;
}

.exploded-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

/* ── Result / interior section ── */

.sec-result {
  padding: 120px 0;
  background: var(--fog);
  overflow: hidden;
}

.result-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  align-items: center;
}

.result-text {
  padding-left: 56px;
}

.result-text .sec-h {
  max-width: 16ch;
}

.result-text .sec-sub {
  max-width: 42ch;
}

.result-img {
  position: relative;
  overflow: hidden;
  margin-left: calc((min(100vw, 1200px) - 100vw) / 2 - 48px);
  border-radius: 0 20px 20px 0;
  min-height: 460px;
}

.result-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.sec-sustain {
  padding: 80px 0 120px;
  position: relative;
  background: var(--fog);
}

.sus-layout {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  align-items: center;
}

.sus-img-wrap {
  position: relative;
  z-index: 1;
  margin-top: -12%;
  margin-bottom: -12%;
}

.sus-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.sus-img-stat {
  position: absolute;
  right: 24px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.sus-stat-val {
  flex-shrink: 0;
  font-size: 36px;
  color: #fff;
}

.sus-stat-lbl {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.sus-right {
  position: relative;
  z-index: 0;
  padding: 80px 0 80px 80px;
}

.sus-pillars {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.sus-pill {
  padding: 28px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.sus-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.sus-pill-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

.sus-pill-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sec-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3530 50%, var(--terra) 150%);
}

.sec-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.15) 0%, transparent 60%);
}

.sec-cta::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -250px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 139, 111, 0.1) 0%, transparent 60%);
}

.cta-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}

.cta-eye {
  margin-bottom: 18px;
  color: var(--terra);
}

.cta-title {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
}

.cta-desc {
  max-width: 460px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}

.cta-right > .btn-cta-white,
.cta-right > .btn-ghost-dark {
  width: 100%;
}

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--terra);
}

.cta-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.cta-contact-info svg,
.f-ci svg {
  width: 13px;
  height: 13px;
  stroke: var(--terra);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer {
  background: #fff;
  padding: 40px 0 0;
  border-top: 1px solid var(--grey-lt);
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--grey-lt);
}

.f-logo {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.f-logo-icon {
  height: 48px;
  width: auto;
}

.f-logo span {
  line-height: 1;
  margin-bottom: -3px;
}

.f-logo .logo-num {
  color: var(--terra);
  font-weight: 800;
}

.f-tagline {
  max-width: 260px;
  margin-bottom: 24px;
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  color: var(--stone);
}

.f-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid var(--grey-lt);
  border-radius: 8px;
}

.f-cert-badge {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 1px;
}

.f-cert-lbl {
  font-size: var(--text-sm);
  color: var(--stone);
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-ci {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
}

.f-col-title {
  margin-bottom: 20px;
  font-size: var(--text-sm);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  opacity: 0.8;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.f-links a {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--stone);
  transition: color 0.2s;
}

.f-links a:hover,
.f-bl a:hover {
  color: var(--terra);
}

.f-nl-form {
  display: flex;
  margin-top: 6px;
}

.f-nl-in {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--grey-lt);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: var(--fog);
  color: var(--charcoal);
}

.f-nl-in::placeholder {
  color: var(--stone);
}

.f-nl-in:focus {
  border-color: var(--sky);
  outline: 2px solid var(--sky);
  outline-offset: -2px;
}

.f-nl-btn {
  padding: 12px 18px;
  border: 1px solid var(--sage);
  border-radius: 0 8px 8px 0;
  background: var(--sage);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.f-nl-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
}

.f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.f-copy {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--stone);
}

.f-bl {
  display: flex;
  gap: 24px;
  list-style: none;
}

.f-bl a {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--stone);
  transition: color 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.7s ease both;
}

.fd1 {
  animation-delay: 0.12s;
}

.fd2 {
  animation-delay: 0.24s;
}

.fd3 {
  animation-delay: 0.36s;
}

@media (max-width: 1560px) {
  .nav {
    gap: 18px;
    padding: 0 28px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    letter-spacing: 1.2px;
  }

  .nav-search {
    display: none;
  }

  .btn-nav-outline {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-nav {
    padding: 9px 18px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 1360px) {
  .nav {
    gap: 14px;
    padding: 0 24px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .nav-logo-icon {
    height: 40px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    letter-spacing: 1px;
  }

  .btn-nav {
    padding: 9px 16px;
    letter-spacing: 1.2px;
  }

  .lang-switch {
    padding-left: 10px;
  }
}

@media (max-width: 1200px) {
  .nav {
    gap: 18px;
  }

  .nav-links {
    position: static;
    left: auto;
    transform: none;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    letter-spacing: 0.9px;
  }

  .nav-actions {
    gap: 0;
  }

  .nav-search,
  .btn-nav-outline,
  .btn-nav {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 980px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links,
  .nav-actions,
  .nav-search,
  .lang-switch {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: var(--text-sm);
    letter-spacing: 1.5px;
  }

  .btn-nav-outline,
  .btn-nav {
    padding: 8px 16px;
    font-size: var(--text-sm);
    letter-spacing: 1.5px;
  }

  .models-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 1120px) {
  .page-hero {
    padding: 116px 0 56px;
  }

  .page-hero-compact {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .page-hero-grid,
  .page-hero-compact .page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .page-hero-grid > :first-child,
  .page-hero-compact .page-hero-grid > :first-child,
  .page-hero-compact .page-title,
  .page-hero-compact .page-intro {
    max-width: none;
  }

  .page-hero-art,
  .page-hero-compact .page-hero-art {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0;
    border-radius: 20px;
  }
}

@media (max-width: 960px) {
  .container {
    padding: 0 24px;
  }

  .nav {
    padding: 0 24px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-inner {
    padding-bottom: 60px;
  }

  .hero-stats {
    padding: 28px 24px;
  }

  .page-hero-grid,
  .sus-layout,
  .cta-box,
  .footer-grid,
  .ppanel {
    grid-template-columns: 1fr;
  }

  .exploded-img {
    margin-right: calc((min(100vw, 1200px) - 100vw) / 2 - 24px);
  }

  .exploded-text {
    padding-right: 32px;
  }

  .exploded-text .sec-h {
    max-width: none;
  }

  .exploded-text .sec-sub {
    max-width: none;
  }

  .result-img {
    margin-left: calc((min(100vw, 1200px) - 100vw) / 2 - 24px);
  }

  .result-text {
    padding-left: 32px;
  }

  .result-text .sec-h {
    max-width: none;
  }

  .result-text .sec-sub {
    max-width: none;
  }

  .steps,
  .sus-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-item--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }

  .why-hero-content {
    padding: 36px 32px;
  }

  .why-item-stat {
    font-size: 60px;
    margin-bottom: 16px;
  }

  .why-item--wide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-item-wide-num {
    display: none;
  }

  .why-item-wide-flow {
    flex-wrap: wrap;
  }

  .page-hero-grid {
    gap: 32px;
  }

  .page-hero-grid > :first-child {
    max-width: none;
  }

  .page-hero-compact {
    padding-top: 64px;
    padding-bottom: 42px;
  }

  .page-hero-compact .page-hero-grid {
    gap: 26px;
  }

  .page-hero-art {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1.18;
    margin: 0 auto;
  }

  .page-hero-compact .page-hero-art {
    max-width: 560px;
    aspect-ratio: 1.2;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(244, 241, 236, 0.92) 0%,
        rgba(244, 241, 236, 0.78) 50%,
        rgba(244, 241, 236, 0.45) 100%
      );
  }

  .page-hero {
    padding: 120px 0 72px;
  }

  .sec-tl-compare,
  .sec-gantt,
  .sec-stages {
    padding: 80px 0;
  }

  .sec-faq {
    padding: 72px 0;
  }

  .page-summary {
    padding: 72px 0;
  }

  .page-summary-head,
  .models-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sus-img-wrap img {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .sus-right {
    padding: 48px 0 0;
  }

  .sus-img-stat {
    right: 16px;
    bottom: 16px;
  }

  .cta-right {
    align-items: flex-start;
  }

  .personas-tabs {
    gap: 8px;
  }

  .ptab {
    padding: 8px 14px;
    font-size: var(--text-sm);
  }

  .ppanel {
    padding: 32px 24px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .trust-strip {
    gap: 16px;
    padding: 14px 24px;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    font-size: var(--text-sm);
  }

  .hero-ctas .btn-ghost-light {
    background: rgba(244, 241, 236, 0.88);
    color: var(--charcoal);
    border-color: rgba(196, 112, 75, 0.82);
    box-shadow: 0 14px 32px rgba(42, 45, 46, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (max-width: 580px) {
  .hero-content,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(244, 241, 236, 0.95) 0%,
        rgba(244, 241, 236, 0.85) 60%,
        rgba(244, 241, 236, 0.5) 100%
      );
  }

  .hero-viewport {
    height: auto;
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100svh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
  }

  .hero-inner {
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .hero-stat-val {
    font-size: 36px;
  }

  .hero-stats {
    padding: 20px 16px;
  }

  .hero-stat {
    padding: 12px 8px;
  }

  .hero-stat-lbl {
    font-size: var(--text-sm);
  }

  .steps,
  .sus-pillars,
  .models-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .why-item--hero {
    min-height: 300px;
  }

  .why-hero-content {
    padding: 28px 24px;
  }

  .exploded-layout {
    grid-template-columns: 1fr;
  }

  .exploded-text {
    padding-right: 0;
  }

  .exploded-img {
    margin-right: -24px;
    border-radius: 16px 0 0 16px;
    min-height: 280px;
  }

  .sec-exploded,
  .sec-result {
    padding: 80px 0;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-text {
    padding-left: 0;
  }

  .result-img {
    margin-left: -24px;
    border-radius: 0 16px 16px 0;
    min-height: 280px;
    order: -1;
  }

  .why-item-stat {
    font-size: 52px;
    margin-bottom: 12px;
  }

  .why-item--wide {
    padding: 28px 24px;
  }

  .page-title {
    max-width: none;
  }

  .page-hero {
    padding: 100px 0 48px;
  }

  .page-hero-compact {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .page-hero-compact .page-title {
    font-size: clamp(32px, 9vw, 46px);
  }

  .page-hero-art {
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .page-hero-compact .page-hero-art {
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .page-hero-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .page-hero-card-copy {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .page-hero-card-label {
    font-size: var(--text-sm);
  }

  .personas-tabs-bleed {
    padding: 0 20px;
  }

  .hero-ctas,
  .page-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost-light,
  .btn-outline-sm {
    width: 100%;
  }

  .summary-card,
  .contact-card,
  .contact-form-card,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-form-submit {
    width: 100%;
  }

  .page-summary {
    padding: 56px 0;
  }

  .sec-tl-compare,
  .sec-gantt,
  .sec-stages {
    padding: 56px 0;
  }

  .sec-faq {
    padding: 48px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .f-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-eyebrow {
    margin-bottom: 20px;
    font-size: var(--text-sm);
  }

  .hero-body {
    font-size: var(--text-base);
    margin-bottom: 28px;
  }

  .hero-stat-val {
    font-size: 32px;
  }

  .hero-stat-lbl {
    font-size: var(--text-sm);
  }

  .hero-stat {
    padding: 10px 4px;
  }

  .hero-stats {
    padding: 16px 12px;
  }

  .page-hero {
    padding: 92px 0 36px;
  }

  .page-hero-compact {
    padding-top: 56px;
    padding-bottom: 24px;
  }

  .page-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .page-intro {
    font-size: var(--text-base);
  }

  .page-eyebrow,
  .sec-label {
    font-size: var(--text-sm);
    letter-spacing: 2px;
  }

  .sec-h {
    font-size: clamp(24px, 7vw, 32px);
  }

  .sec-sub {
    font-size: var(--text-base);
  }

  .mob-links a {
    font-size: var(--text-title);
    padding: 14px 0;
  }

  .mob-head {
    margin-bottom: 32px;
  }
}

/* ── News ── */

.news-shell {
  padding: 44px 0 80px;
}

.news-shell .container {
  display: grid;
  gap: 48px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-chip {
  padding: 8px 18px;
  border: 1px solid rgba(42, 45, 46, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-chip:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.news-chip.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.news-tile[hidden] {
  display: none;
}

.news-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.news-tile {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(42, 45, 46, 0.08);
  box-shadow: 0 8px 24px rgba(42, 45, 46, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--charcoal);
}

.news-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42, 45, 46, 0.1);
}

.news-tile-img {
  overflow: hidden;
  height: 160px;
}

.news-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-tile:hover .news-tile-img img {
  transform: scale(1.05);
}

.news-tile-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1;
}

.news-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.news-tile--large .news-tile-img {
  height: 280px;
}

.news-tile--wide {
  grid-column: span 2;
}

.news-tile--wide .news-tile-img {
  height: 180px;
}

.news-tile--tall {
  grid-row: span 2;
}

.news-tile-title {
  font-size: var(--text-sub);
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.news-tile--large .news-tile-title {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.8px;
}

.news-tile-excerpt {
  color: var(--stone);
  font-size: var(--text-base);
  line-height: 1.7;
}

.news-tile-date {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1px;
  color: var(--stone);
}

@media (max-width: 1040px) {
  .news-bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .news-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .news-tile--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .news-tile--large .news-tile-img {
    height: 200px;
  }
  .news-tile--wide {
    grid-column: span 2;
  }
  .news-tile--tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .news-bento {
    grid-template-columns: 1fr;
  }
  .news-tile--large,
  .news-tile--wide,
  .news-tile--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--stone);
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--fog);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.3px;
  transition: gap 0.2s ease;
}

.news-read-link:hover {
  gap: 12px;
}

.news-read-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(42, 45, 46, 0.08);
  box-shadow: 0 12px 32px rgba(42, 45, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(42, 45, 46, 0.1);
}

.news-card-img {
  overflow: hidden;
  height: 200px;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  flex: 1;
}

.news-card-title {
  font-size: var(--text-title);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.news-card-excerpt {
  color: var(--stone);
  font-size: var(--text-base);
  line-height: 1.7;
}

.news-card-link {
  margin-top: auto;
  padding-top: 8px;
}

/* ── Solutions: Floor Plan ── */

.sec-floorplan {
  padding: 100px 0;
  background: #fff;
}

.fp-unit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

.fp-diagram {
  position: relative;
  background: var(--fog);
  border: 1px solid var(--grey-lt);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 100px 80px 80px 70px 60px;
  grid-template-areas:
    "living living"
    "kitchen kitchen"
    "bed1 bed2"
    "bed1 bed2"
    "hall bath"
    "hall bath";
  gap: 4px;
  overflow: hidden;
}

.fp-room {
  background: #fff;
  border: 1px solid var(--grey-lt);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.4s ease;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.fp-room[data-room="living"] {
  grid-area: living;
}

.fp-room[data-room="kitchen"] {
  grid-area: kitchen;
}

.fp-room[data-room="bed1"] {
  grid-area: bed1;
}

.fp-room[data-room="hall"] {
  grid-area: hall;
}

.fp-room[data-room="bed2"] {
  grid-area: bed2;
}

.fp-room[data-room="bath"] {
  grid-area: bath;
}

.fp-room .fp-room-label {
  transition: all 0.3s ease;
}

.fp-room:hover {
  border-color: var(--terra);
}

.fp-room--has-photo .fp-room-label {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.fp-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.fp-diagram.show-photo .fp-photo {
  opacity: 1;
}

.fp-diagram.show-photo .fp-room {
  opacity: 0;
}

.fp-room--accent {
  background-color: rgba(196, 112, 75, 0.04);
  border-color: rgba(196, 112, 75, 0.15);
}

.fp-room-label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.fp-unit-specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fp-unit-features {
  display: flex;
  flex-direction: column;
}

.fp-configs {
  padding-top: 56px;
  border-top: 1px solid var(--grey-lt);
}

.fp-configs-label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
}

.fp-stacking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fp-stack-item {
  padding: 28px;
  border: 1px solid var(--grey-lt);
  border-radius: 16px;
  background: var(--fog);
  display: flex;
  flex-direction: column;
}

.fp-stack-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--terra);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fp-stack-tag--sage { background: var(--sage); }
.fp-stack-tag--stone { background: var(--stone); }
.fp-stack-tag--blue { background: var(--sky); }
.fp-stack-tag--red { background: var(--clay-red); }
.fp-stack-tag--purple { background: var(--mulberry); }
.fp-stack-tag--yellow { background: var(--ochre); color: var(--charcoal); }

.fp-stack-visual {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  flex: 1;
  align-content: end;
}

.fp-stack-visual--6  { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
.fp-stack-visual--12 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
.fp-stack-visual--24 { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(6, 1fr); }
.fp-stack-item--full {
  margin-top: 20px;
}

/* 100+ unit buildings layout */
.fp-buildings {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 20px;
}

.fp-bldg {
  display: grid;
  gap: 2px;
}

.fp-bldg[data-span="2"] {
  flex: 2;
}

.fp-bldg[data-span="3"] {
  flex: 3;
}

.fp-bldg[data-span="4"] {
  flex: 4;
}

.fp-bldg[data-span="6"] {
  flex: 6;
}

.fp-bldg[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.fp-bldg[data-cols="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.fp-bldg[data-cols="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.fp-bldg[data-cols="6"] {
  grid-template-columns: repeat(6, 1fr);
}

.fp-bldg[data-rows="2"] {
  grid-template-rows: repeat(2, 1fr);
}

.fp-bldg[data-rows="3"] {
  grid-template-rows: repeat(3, 1fr);
}

.fp-bldg[data-rows="4"] {
  grid-template-rows: repeat(4, 1fr);
}

.fp-bldg[data-rows="6"] {
  grid-template-rows: repeat(6, 1fr);
}

.fp-bldg div {
  aspect-ratio: 1;
  border-radius: 2px;
}

.fp-bldg--terra div    { background: var(--terra); }
.fp-bldg--sage div     { background: var(--sage); }
.fp-bldg--sky div      { background: var(--sky); }
.fp-bldg--ochre div    { background: var(--ochre); }
.fp-bldg--mulberry div { background: var(--mulberry); }
.fp-bldg--stone div    { background: var(--stone); }

.fp-unit-sq {
  min-height: 42px;
  background: #fff;
  border: 1px solid var(--grey-lt);
  border-radius: 4px;
}

.fp-stack-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── Solutions: Comparison Table ── */

.sec-compare {
  padding: 120px 0;
  background: var(--charcoal);
  color: #fff;
}

.sec-compare .sec-label { color: var(--sand); }
.sec-compare .sec-label-line { background: var(--sand); }
.sec-compare .sec-h { color: #fff; }
.sec-compare .sec-sub { color: rgba(255, 255, 255, 0.6); }

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
}

.compare-table thead {
  background: rgba(255, 255, 255, 0.06);
}

.compare-th-metric,
.compare-th-mod,
.compare-th-conv {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 400;
}

.compare-th-mod { color: var(--terra); }
.compare-th-conv { color: rgba(255, 255, 255, 0.6); }

.compare-th-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(196, 112, 75, 0.15);
  border: 1px solid rgba(196, 112, 75, 0.25);
  font-size: var(--text-sm);
  letter-spacing: 1px;
  color: var(--terra);
  vertical-align: middle;
}

.compare-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.compare-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-metric {
  padding: 22px 24px;
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.compare-metric-note {
  display: block;
  margin-top: 3px;
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.compare-val {
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 700;
  vertical-align: middle;
}

.compare-val--mod { color: #fff; }
.compare-val--conv { color: rgba(255, 255, 255, 0.55); }

.compare-val--win {
  border-left: 3px solid var(--terra);
  padding-left: 21px;
}

.compare-footnote {
  margin-top: 20px;
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Solutions: Site Qualification ── */

.sec-qualify {
  padding: 100px 0;
  background: #fff;
}

.qualify-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.qualify-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.qualify-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-lt);
}

.qualify-item:first-child {
  border-top: 1px solid var(--grey-lt);
}

.qualify-item-check {
  padding-top: 2px;
}

.qualify-item-check svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
}

.qualify-item-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.qualify-item-detail {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

.qualify-note {
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--fog);
  border-left: 3px solid var(--sage);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

.qualify-card {
  position: sticky;
  top: 120px;
  padding: 36px;
  border-radius: 20px;
  background: var(--fog);
  border: 1px solid var(--grey-lt);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualify-card-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
}

.qualify-card-title {
  font-size: var(--text-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

.qualify-card-body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  margin: 0;
}

.qualify-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qualify-card-list li {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.qualify-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.qualify-card-note {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .fp-unit-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qualify-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .qualify-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .fp-stacking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .fp-stacking-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio / Bento Grid ── */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 16px;
}

.bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

.bento-tag {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}

.bento-title {
  font-size: var(--text-sub);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.bento-meta {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* Span variants */
.bento-wide  { grid-column: span 2; }
.bento-tall  { grid-row: span 2; }
.bento-large { grid-column: span 2; grid-row: span 2; }

/* Text cards */
.bento-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 20px;
  cursor: default;
}

.bento-text--dark {
  background: var(--charcoal);
  color: #fff;
}

.bento-text--terra {
  background: var(--terra);
  color: #fff;
}

.bento-text--sage {
  background: var(--sage);
  color: #fff;
}

.bento-text--sand {
  background: var(--sand);
  color: var(--charcoal);
}

.bento-text-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: auto;
}

.bento-text-value {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-text-label {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.4;
}

.bento-text-quote {
  font-size: var(--text-sub);
  font-weight: 500;
  line-height: 1.45;
  font-style: italic;
}

.bento-text-cite {
  margin-top: 12px;
  font-size: var(--text-sm);
  font-style: normal;
  opacity: 0.6;
}

/* ── Map hero (portfolio) ── */

.map-hero-wrap {
  position: relative;
  background: var(--fog);
}

.map-hero {
  position: relative;
  z-index: 3;
  min-height: 580px;
  padding-top: 100px;
  display: flex;
  align-items: flex-end;
  background: transparent;
}

/* Canvas: sibling of section, positioned relative to wrapper.
   Sits above bg but below hero content. Overflows past hero freely. */
.map-hero-canvas {
  position: absolute;
  right: 5%;
  top: 48%;
  transform: translateY(-50%);
  width: 58%;
  aspect-ratio: 1114 / 942;
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, black 60%);
}

.map-hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  filter: contrast(1.4) brightness(0.82);
}

/* Re-enable pointer on pins */
.map-pin { pointer-events: auto; }

/* Pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.map-pin[data-pin="montreal"] {
  left: 78%;
  top: 76%;
}

.map-pin[data-pin="levis"] {
  left: 82.5%;
  top: 72%;
}

.map-pin[data-pin="trois-rivieres"] {
  left: 80%;
  top: 74%;
}

.map-pin[data-pin="sherbrooke"] {
  left: 79.5%;
  top: 79%;
}

.map-pin[data-pin="gatineau"] {
  left: 73%;
  top: 77%;
}

.map-pin[data-pin="rimouski"] {
  left: 86%;
  top: 70%;
}

.map-pin[data-pin="magog"] {
  left: 79%;
  top: 78%;
}

.map-pin[data-pin="saguenay"] {
  left: 82%;
  top: 67%;
}

.map-pin[data-pin="chicoutimi"] {
  left: 82.2%;
  top: 68.5%;
}

.map-pin[data-pin="drummondville"] {
  left: 80%;
  top: 77%;
}

.map-pin[data-pin="valleyfield"] {
  left: 76%;
  top: 78%;
}

.map-pin[data-pin="joliette"] {
  left: 77%;
  top: 75%;
}

.map-pin[data-pin="saint-jean"] {
  left: 75%;
  top: 79%;
}

.map-pin span {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--terra);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(196, 112, 75, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

.map-pin--sage span {
  background: var(--sage);
  box-shadow: 0 2px 8px rgba(122, 139, 111, 0.4);
}

.map-pin--amber span {
  background: var(--ochre);
  box-shadow: 0 2px 8px rgba(212, 148, 58, 0.4);
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  animation: map-pulse 2.5s ease-out infinite;
}

@keyframes map-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

.map-pin::before {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 7px 14px;
  background: var(--charcoal);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}

.map-pin::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.map-pin:hover span {
  transform: scale(1.6);
}

.map-pin:hover::before,
.map-pin:hover::after {
  opacity: 1;
}

/* Text content — sits above the map */
.map-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-bottom: 56px;
  padding-top: 40px;
}

.map-hero-title {
  max-width: 13ch;
  font-size: clamp(42px, 5.3vw, 74px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.map-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.map-hero-stat {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 125, 107, 0.1);
  border-radius: 100px;
  font-size: var(--text-base);
  color: var(--stone);
}

.map-hero-stat strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--charcoal);
  margin-right: 4px;
}

/* Legend */
.map-legend {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-base);
  color: var(--stone);
  font-weight: 500;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.map-legend-dot--terra { background: var(--terra); }
.map-legend-dot--sage  { background: var(--sage); }
.map-legend-dot--amber { background: var(--ochre); }
.map-legend-dot--blue { background: var(--sky); }
.map-legend-dot--red { background: var(--clay-red); }
.map-legend-dot--purple { background: var(--mulberry); }
.map-legend-dot--yellow { background: var(--ochre); }

@media (max-width: 700px) {
  .map-hero-canvas {
    width: 120%;
    right: -20%;
    opacity: 0.35;
  }
}

/* Portfolio stats bar */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.portfolio-stat {
  text-align: center;
}

.portfolio-stat-val {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--charcoal);
}

.portfolio-stat-lbl {
  font-size: var(--text-base);
  color: var(--stone);
  margin-top: 4px;
}

.page-eyebrow--stone {
  color: var(--stone);
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-overlay {
    opacity: 1;
  }
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 24px;
  }
  .portfolio-stat-val {
    font-size: 32px;
  }
  .bento-text-value {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .bento-wide,
  .bento-large {
    grid-column: span 1;
  }
  .bento-tall {
    grid-row: span 1;
  }
}

/* ── Article ── */

.article {
  padding: 48px 0 80px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.article-breadcrumbs span {
  opacity: 0.4;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.3px;
  transition: gap 0.2s ease;
}

.article-back:hover {
  gap: 12px;
}

.article-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-header {
  margin-bottom: 40px;
}

.article-title {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.article-lede {
  margin-top: 20px;
  font-size: var(--text-sub);
  line-height: 1.75;
  color: var(--stone);
}

.article-cover {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 48px;
}

.article-cover img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.article-body {
  display: grid;
  gap: 24px;
}

.article-body h2 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-top: 16px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--stone);
}

.article-body ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  color: var(--stone);
}

.article-body li {
  line-height: 1.75;
}

.article-pullquote {
  padding: 24px 28px;
  border-left: 3px solid var(--terra);
  background: var(--fog);
  border-radius: 0 16px 16px 0;
  font-size: var(--text-title);
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--charcoal);
  margin: 16px 0;
}

.rich-embed {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.rich-embed__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.rich-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rich-embed__caption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone);
}

.news-related {
  padding: 80px 0 80px;
  border-top: 1px solid rgba(42, 45, 46, 0.08);
}

.news-related .container {
  display: grid;
  gap: 40px;
}

@media (max-width: 1040px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid,
  .news-grid-2 {
    grid-template-columns: 1fr;
  }
  .article-title {
    font-size: clamp(28px, 8vw, 42px);
  }
  .article-lede {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════════
   PERSONA LANDING PAGES
   ══════════════════════════════════════════ */

/* ── Needs grid ── */
.lp-needs-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-need {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(139, 125, 107, 0.1);
  border-radius: 20px;
  background: var(--fog);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.lp-need:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.lp-need-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--theme-accent, var(--terra));
  color: #fff;
  font-size: var(--text-base);
  font-weight: 700;
}

.lp-need-text {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
}

/* ── Offers grid ── */
.lp-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-offer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(139, 125, 107, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.lp-offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.lp-offer-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--theme-accent, var(--terra)) 12%, transparent);
}

.lp-offer-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--theme-accent, var(--terra));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-offer-title {
  font-size: var(--text-sub);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

.lp-offer-body {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
  flex: 1;
}

/* ── Landing page lead form ── */
.lp-form-section {
  padding: 108px 0;
  background: #fff;
}

.lp-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.lp-form-intro {
  padding-top: 12px;
}

.lp-form-intro .sec-h {
  margin-bottom: 16px;
}

.lp-form-intro .sec-sub {
  margin-bottom: 32px;
}

.lp-form-trust {
  display: grid;
  gap: 18px;
}

.lp-form-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--stone);
}

.lp-form-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--theme-accent, var(--terra)) 12%, transparent);
}

.lp-form-trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--theme-accent, var(--terra));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lp-form-card {
  padding: 36px;
  border-radius: 20px;
  background: var(--fog);
  border: 1px solid rgba(139, 125, 107, 0.08);
}

.lp-form-card .contact-form-grid {
  gap: 22px 20px;
}

.lp-form-card .contact-form-footer {
  margin-top: 24px;
  padding-top: 22px;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.lp-form-card .contact-form-note {
  max-width: none;
  text-align: center;
  font-size: var(--text-sm);
}

.lp-form-card .contact-form-submit {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Landing page persona hero icon ── */
.lp-hero-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--theme-accent, var(--terra));
  margin-bottom: 20px;
}

.lp-hero-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ── Landing page accent overrides ── */
.page-hero-compact .page-title em { color: var(--theme-accent, var(--terra)); }
.page-hero-compact ~ .hero-stats-wrap .hero-stat-val sup { color: var(--theme-accent, var(--terra)); }

/* ── Landing page responsive ── */
@media (max-width: 960px) {
  .lp-needs-grid {
    grid-template-columns: 1fr;
  }
  .lp-offers-grid {
    grid-template-columns: 1fr;
  }
  .lp-form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
