/* ============================================================
   TOAD TAX — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,30..100;1,9..144,300..900,30..100&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&f[]=jetbrains-mono@400&display=swap');

:root {
  /* Palette — warm cream + deep forest + peach accent */
  --bg: #F2EBDA;
  --bg-deep: #E9DEC3;
  --bg-card: #FAF4E4;
  --bg-dark: #142A20;

  --primary: #1F3D30;
  --primary-deep: #0F261C;
  --primary-mid: #2D5240;

  --accent: #E89B5D;
  --accent-deep: #D17F3E;
  --accent-soft: #F0BC8A;

  --sage: #B8C9A8;
  --moss: #6B8268;
  --mustard: #D4B25C;
  --terracotta: #B85A3E;

  --text: #122821;
  --text-soft: #4A5C52;
  --text-mute: #7A8780;
  --text-on-dark: #F2EBDA;
  --text-on-dark-soft: #B8C9A8;

  --line: rgba(18, 40, 33, 0.14);
  --line-strong: rgba(18, 40, 33, 0.32);
  --line-on-dark: rgba(242, 235, 218, 0.14);

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --f-sans: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --container-tight: 720px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0.05, 0.2, 1);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================================
   Reset
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ============================================================
   Typography
   ============================================================ */

.display, h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 460;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1, .h1 {
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h2, .h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h3, .h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.018em;
  line-height: 1.15;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

h4 {
  font-size: 1.2rem;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}

em, .italic {
  font-style: italic;
  font-feature-settings: "ss01";
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--moss);
}

.lede {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--text-soft);
  font-variation-settings: "opsz" 80, "SOFT" 70;
}

.text-soft { color: var(--text-soft); }
.text-mute { color: var(--text-mute); }
.text-accent { color: var(--accent-deep); }

.serif { font-family: var(--f-display); font-weight: 420; }

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--container-narrow); }
.container.tight { max-width: var(--container-tight); }

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

section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }
section.loose { padding: 150px 0; }

@media (max-width: 760px) {
  section { padding: 80px 0; }
  section.loose { padding: 100px 0; }
}

.divider {
  border: none;
  height: 1px;
  background: var(--line);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-on-dark);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px rgba(18, 40, 33, 0.5);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-deep);
}
.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  color: var(--bg);
}

.btn-ghost {
  color: var(--text);
  padding: 16px 4px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.btn-ghost:hover {
  border-bottom-color: var(--text);
}
.btn-ghost .arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-card);
}

.btn-sm { padding: 11px 18px; font-size: 0.88rem; }
.btn-lg { padding: 19px 32px; font-size: 1.05rem; }

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 235, 218, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 640px) {
  .nav-inner { padding: 14px 22px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-weight: 530;
  font-size: 1.32rem;
  letter-spacing: -0.025em;
  color: var(--text);
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.brand-mark {
  width: 30px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.brand .dot {
  color: var(--accent-deep);
  font-style: italic;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.96rem;
  font-weight: 450;
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-cta { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--text);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 32px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 420;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.hero-headline {
  font-size: clamp(3.2rem, 9vw, 8.4rem);
  letter-spacing: -0.038em;
  line-height: 0.93;
  font-weight: 420;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-top: 28px;
  position: relative;
}
.hero-headline em {
  font-style: italic;
  color: var(--primary);
  font-weight: 380;
}
.hero-headline .underline {
  position: relative;
  display: inline-block;
}
.hero-headline .underline svg {
  position: absolute;
  left: -2%;
  right: -2%;
  width: 104%;
  height: auto;
  bottom: -0.18em;
  pointer-events: none;
  overflow: visible;
}
.hero-headline .underline svg path {
  stroke: var(--accent);
  stroke-width: 3.4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: squiggle-draw 1.4s 0.5s var(--ease-out) forwards;
}
@keyframes squiggle-draw {
  to { stroke-dashoffset: 0; }
}

.hero-sub {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  line-height: 1.4;
  color: var(--text-soft);
  margin-top: 28px;
  max-width: 580px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 80, "SOFT" 70;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.hero-aside {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-aside-mark {
  width: 42px;
  height: 32px;
  color: var(--moss);
  flex-shrink: 0;
}
.hero-aside p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* hero side decoration */
.hero-decor {
  position: absolute;
  top: -20px;
  right: -60px;
  width: 460px;
  pointer-events: none;
  opacity: 0.92;
  animation: pad-float 12s ease-in-out infinite;
  transform-origin: 60% 50%;
}
@keyframes pad-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
}
@media (max-width: 1100px) {
  .hero-decor { width: 380px; right: -80px; opacity: 0.85; }
}
@media (max-width: 980px) {
  .hero-decor { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-decor { animation: none; }
}

/* Page hero (smaller, used on subpages) */
.page-hero {
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  letter-spacing: -0.032em;
  margin-top: 16px;
  max-width: 14ch;
}
.page-hero p {
  margin-top: 22px;
  max-width: 580px;
}

/* ============================================================
   Trust strip
   ============================================================ */

.trust {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-list {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-list span {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 480;
  letter-spacing: -0.015em;
  color: var(--text-soft);
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

/* ============================================================
   Sections
   ============================================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head-meta { display: flex; flex-direction: column; gap: 16px; }
.section-head-text { max-width: 480px; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 50px; }
}

/* ============================================================
   Service cards
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s var(--ease);
  position: relative;
  min-height: 280px;
}
.service-card:hover { background: var(--bg-card); }

.service-card .num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--moss);
}
.service-card h3 {
  font-size: 1.65rem;
  margin-top: 6px;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.service-card .more {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.service-card:hover .more::after { transform: translateX(4px); }

@media (max-width: 760px) {
  .service-card { padding: 32px 26px; min-height: 220px; }
}

/* ============================================================
   How it works (numbered steps)
   ============================================================ */

.how {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.how h2 { color: var(--text-on-dark); }
.how .eyebrow { color: var(--sage); }
.how .eyebrow::before { background: var(--sage); }
.how .lede { color: var(--text-on-dark-soft); }

.how-decor {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  pointer-events: none;
}
.how-decor::before, .how-decor::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
}
.how-decor::before { width: 70%; height: 70%; }
.how-decor::after { width: 40%; height: 40%; background: var(--accent); border: none; opacity: 0.85; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 48px; }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 280;
  font-size: 4.6rem;
  line-height: 0.85;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
}
.step h3 { color: var(--text-on-dark); }
.step p { color: var(--text-on-dark-soft); font-size: 0.97rem; }

/* ============================================================
   Stats
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 44px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--primary);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.stat-num em { font-style: italic; color: var(--accent-deep); font-weight: 380; }
.stat-label {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.4;
  max-width: 16ch;
}

@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ============================================================
   Testimonial / Editorial pull-quote
   ============================================================ */

.quote {
  padding: 130px 0;
  position: relative;
}
.quote-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.quote-mark {
  font-family: var(--f-display);
  font-size: 9rem;
  line-height: 0.5;
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 280;
  display: block;
  margin-bottom: 12px;
}
.quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 380;
  font-variation-settings: "opsz" 80, "SOFT" 70;
  color: var(--text);
}
.quote blockquote em { color: var(--primary); font-style: italic; }
.quote-cite {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-transform: uppercase;
}
.quote-cite-line {
  width: 36px;
  height: 1px;
  background: var(--line-strong);
}

/* ============================================================
   Founder note (editorial signature)
   ============================================================ */

.founder {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 880px) {
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
}
.founder-meta { display: flex; flex-direction: column; gap: 18px; }
.founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--moss) 0%, var(--primary-mid) 50%, var(--primary-deep) 100%);
  position: relative;
  overflow: hidden;
}
.founder-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nn)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.founder-portrait svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  height: 60%;
  color: rgba(242, 235, 218, 0.85);
}
.founder-text p {
  font-family: var(--f-display);
  font-weight: 380;
  font-size: 1.32rem;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--text);
  font-variation-settings: "opsz" 60, "SOFT" 70;
  margin-bottom: 20px;
}
.founder-text p:first-child::first-letter {
  font-family: var(--f-display);
  font-size: 4.4em;
  float: left;
  line-height: 0.85;
  padding: 0.06em 0.12em 0 0;
  color: var(--primary);
  font-weight: 420;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.founder-sig {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.founder-sig svg { width: 120px; height: 36px; color: var(--primary); }
.founder-sig-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  font-variation-settings: "opsz" 36, "SOFT" 80;
}

/* ============================================================
   CTA section
   ============================================================ */

.cta-section {
  padding: 130px 0 140px;
  text-align: center;
  position: relative;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.034em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cta-section .lede {
  margin: 24px auto 40px;
  max-width: 520px;
}
.cta-section .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
}
.cta-decor svg { width: min(80%, 700px); height: auto; color: var(--primary); }

/* ============================================================
   Footer
   ============================================================ */

.foot {
  background: var(--primary-deep);
  color: var(--text-on-dark);
  padding: 90px 0 32px;
  position: relative;
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
.foot-brand .brand { color: var(--text-on-dark); margin-bottom: 18px; }
.foot-brand .brand-mark { color: var(--accent); }
.foot-tagline {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--text-on-dark);
  font-weight: 380;
  font-variation-settings: "opsz" 60, "SOFT" 70;
  max-width: 24ch;
  margin-bottom: 28px;
}
.foot-col h4 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col a {
  font-size: 0.95rem;
  color: var(--text-on-dark-soft);
  transition: color 0.2s var(--ease);
}
.foot-col a:hover { color: var(--accent); }

.foot-bottom {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-soft);
}
.foot-bottom .made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.foot-bottom .made svg { width: 14px; height: 14px; color: var(--accent); }

.foot-mega {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 280;
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(242, 235, 218, 0.05);
  text-align: center;
  margin: 80px auto -60px;
  padding-bottom: 0;
  pointer-events: none;
  user-select: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.tier {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(18, 40, 33, 0.18);
}
.tier.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-on-dark);
}
.tier.featured h3 { color: var(--text-on-dark); }
.tier.featured .tier-price { color: var(--accent); }
.tier.featured .tier-price em { color: var(--text-on-dark-soft); }
.tier.featured .tier-desc { color: var(--text-on-dark-soft); }
.tier.featured ul li { color: var(--text-on-dark-soft); border-color: var(--line-on-dark); }
.tier.featured ul li::before { color: var(--accent); }
.tier.featured .btn-outline { border-color: rgba(242, 235, 218, 0.3); color: var(--text-on-dark); }
.tier.featured .btn-outline:hover { background: var(--bg); color: var(--primary); border-color: var(--bg); }

.tier-tag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--primary-deep);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 500;
}
.tier-name {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 4px;
}
.tier h3 { font-size: 1.6rem; margin-bottom: 14px; }
.tier-price {
  font-family: var(--f-display);
  font-size: 3rem;
  letter-spacing: -0.035em;
  font-weight: 420;
  line-height: 1;
  color: var(--primary);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 4px;
}
.tier-price em {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
  margin-left: 4px;
}
.tier-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  min-height: 50px;
}
.tier ul { margin-bottom: 28px; }
.tier ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li::before {
  content: "✓";
  color: var(--accent-deep);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.tier .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   Service detail rows (alternating)
   ============================================================ */

.service-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:nth-child(even) > div:first-child {
  order: 2;
}
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .service-row:nth-child(even) > div:first-child { order: 0; }
}
.service-row .num-large {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 6rem;
  font-weight: 280;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 0.8;
  margin-bottom: 8px;
}
.service-row h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: -0.028em; }
.service-row p { color: var(--text-soft); font-size: 1.04rem; line-height: 1.55; margin-top: 18px; max-width: 50ch; }
.service-row ul { margin-top: 26px; }
.service-row ul li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  font-size: 0.97rem;
}
.service-row ul li::before {
  content: "○";
  color: var(--accent-deep);
}
.service-row ul li:last-child { border-bottom: 1px solid var(--line); }

.service-visual {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.service-visual svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  height: 70%;
  color: var(--primary);
  opacity: 0.85;
}
.service-visual.alt { background: var(--primary); }
.service-visual.alt svg { color: var(--accent); }
.service-visual.tan { background: var(--bg-deep); }

/* ============================================================
   About — values
   ============================================================ */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 880px) {
  .values { grid-template-columns: 1fr; }
}
.value {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.value-num {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}
.value h3 { font-size: 1.45rem; }
.value p { color: var(--text-soft); font-size: 0.97rem; }

/* ============================================================
   Team grid
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
.member {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-pic {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.member-pic.green { background: linear-gradient(140deg, var(--moss), var(--primary)); }
.member-pic.peach { background: linear-gradient(140deg, var(--accent-soft), var(--accent-deep)); }
.member-pic.sage { background: linear-gradient(140deg, var(--sage), var(--moss)); }
.member-pic.mustard { background: linear-gradient(140deg, var(--mustard), var(--terracotta)); }
.member-pic::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nm'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nm)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.member-pic svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  color: rgba(242, 235, 218, 0.7);
}
.member-name {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 480;
  letter-spacing: -0.015em;
  margin-top: 10px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.member-role {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 1.32rem;
  font-weight: 460;
  letter-spacing: -0.018em;
  color: var(--text);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--bg); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 70ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   Contact / Form
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-top: 50px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}
.field input, .field textarea, .field select {
  font-family: var(--f-sans);
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}

.tcpa-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.tcpa-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.tcpa-consent label {
  font-family: var(--f-sans);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.tcpa-consent label strong {
  color: var(--text);
  font-weight: 500;
}
.tcpa-consent label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tcpa-consent label a:hover { color: var(--accent-deep); }
.tcpa-consent.invalid {
  border-color: var(--terracotta);
  background: rgba(184, 90, 62, 0.06);
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info p { color: var(--text-soft); margin-bottom: 28px; }
.contact-info dl { display: grid; gap: 18px; }
.contact-info dt {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 4px;
}
.contact-info dd {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 460;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

/* ============================================================
   Reveal-on-load animations
   ============================================================ */

.reveal { opacity: 0; transform: translateY(20px); animation: reveal 0.85s var(--ease-out) forwards; }
.r-1 { animation-delay: 0.05s; }
.r-2 { animation-delay: 0.15s; }
.r-3 { animation-delay: 0.25s; }
.r-4 { animation-delay: 0.35s; }
.r-5 { animation-delay: 0.45s; }
.r-6 { animation-delay: 0.55s; }

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

/* Scroll-reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   Helpers
   ============================================================ */

.flow > * + * { margin-top: 1.2em; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 14px; }
.mt-4 { margin-top: 28px; }
.mt-6 { margin-top: 44px; }
.mb-0 { margin-bottom: 0 !important; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--text-soft);
}
