/* ── TOKENS ────────────────────────────────────────────────────────────────── */
:root {
  --cream:       hsl(40, 22%, 96%);
  --parchment:   hsl(38, 16%, 90%);
  --blush:       hsl(24, 38%, 78%);
  --blush-deep:  hsl(20, 38%, 62%);
  --taupe:       hsl(30, 10%, 50%);
  --bark:        hsl(28, 14%, 30%);
  --ink:         hsl(28, 14%, 12%);
  --white:       #ffffff;

  --serif:  'Instrument Serif', Georgia, 'Times New Roman', serif;
  --mono:   'Cousine', 'Courier New', monospace;
  --sans:   system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 4rem;
  --radius: 0.75rem;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --t:      0.35s;
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── FONT FACES ────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/s__instrumentserif__v5__jizHRFtNs2ka5fXjeivQ4LroWlx-6zAjg.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/s__instrumentserif__v5__jizBRFtNs2ka5fXjeivQ4LroWlx-6zsTj.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cousine';
  src: url('../fonts/s__cousine__v30__d6lIkaiiRdih4SpP_SkvzBTu39hchw.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cousine';
  src: url('../fonts/s__cousine__v30__d6lIkaiiRdih4SpP_SgvzBTu39hchw.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 22, 18, 0.08);
  transition: background var(--t) var(--ease);
}
.nav--scrolled { background: rgba(247, 244, 239, 0.98); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--taupe);
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.5rem;
  border-radius: 2rem;
  transition: background var(--t), transform var(--t);
}
.nav-cta:hover { background: var(--bark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}

.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--cream);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-style: italic;
}

/* ── LAYOUT ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2.5rem; }
.container--wide   { max-width: 1380px; }

.section { padding: 5rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 7rem 0; }
.section--alt { background: var(--parchment); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--blush { background: var(--blush); }

.page-top { padding-top: var(--nav-h); }

/* ── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-italic { font-style: italic; }

.headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.subhead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  font-style: italic;
}

.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.label--light { color: rgba(247, 244, 239, 0.6); }

.body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--taupe);
}

.body {
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--taupe);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--taupe);
}

.text-ink    { color: var(--ink); }
.text-cream  { color: var(--cream); }
.text-taupe  { color: var(--taupe); }
.text-blush  { color: var(--blush-deep); }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: 2.5rem;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--bark); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-blush {
  background: var(--blush);
  color: var(--ink);
}
.btn-blush:hover { background: var(--blush-deep); color: var(--white); }

.btn-outline-cream {
  border: 1.5px solid rgba(247, 244, 239, 0.6);
  color: var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--ink); }

.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content { padding: 0; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--blush-deep);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ── FULL HERO (centered text, photo bg) ───────────────────────────────────── */
.hero-full {
  min-height: 80vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-full-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 22, 18, 0.82) 0%,
    rgba(28, 22, 18, 0.4) 50%,
    rgba(28, 22, 18, 0.15) 100%
  );
}
.hero-full-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  color: var(--cream);
}

/* ── DIVIDER ───────────────────────────────────────────────────────────────── */
.divider {
  width: 2.5rem;
  height: 1px;
  background: var(--blush-deep);
  margin: 1.5rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--cream { background: rgba(247, 244, 239, 0.4); }

/* ── CARDS ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(28, 22, 18, 0.07);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28, 22, 18, 0.1);
}

.card-alt {
  background: var(--cream);
  border-color: rgba(28, 22, 18, 0.07);
}

/* ── SERVICE PILLARS ───────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 2rem;
  border-top: 1.5px solid var(--blush);
}

.pillar-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--blush-deep);
  margin-bottom: 1.5rem;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 2px solid var(--blush);
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── TWO-UP LAYOUT ─────────────────────────────────────────────────────────── */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-up--reverse .two-up-img { order: 2; }
.two-up--reverse .two-up-text { order: 1; }

.two-up-img {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.two-up-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── BLOG CARDS ────────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28, 22, 18, 0.07);
  transition: transform var(--t) var(--ease);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--parchment);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.6rem;
  flex: 1;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

.blog-card-read {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t);
}
.blog-card:hover .blog-card-read { gap: 0.75rem; }

/* ── BLOG ARTICLE ──────────────────────────────────────────────────────────── */
.article-header {
  padding: calc(var(--nav-h) + 3rem) 0 2rem;
  text-align: center;
}

.article-photo {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.article-subtitle {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.75rem 2.5rem 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--taupe);
  border-top: 1px solid var(--parchment);
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 2.5rem 0 0.75rem;
  color: var(--ink);
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 2rem 0 0.6rem;
  color: var(--ink);
  font-style: italic;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--taupe);
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}
.article-body li {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--taupe);
  margin-bottom: 0.4rem;
  list-style: disc;
}

.article-body blockquote {
  border-left: 2px solid var(--blush);
  padding: 0.75rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-item {
  border-top: 1px solid rgba(28, 22, 18, 0.1);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(28, 22, 18, 0.1); }

.faq-q {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--blush-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blush-deep);
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blush-deep); color: white; }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--taupe);
}

/* ── OFFER CARDS ───────────────────────────────────────────────────────────── */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: var(--cream);
  border: 1px solid rgba(28, 22, 18, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
}

.offer-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* ── CONTACT FORM ──────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }

.form-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-input, .form-textarea {
  background: var(--white);
  border: 1px solid rgba(28, 22, 18, 0.15);
  border-radius: 0.5rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blush-deep);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── STAT STRIP ────────────────────────────────────────────────────────────── */
.stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding: 3rem 0;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.4rem;
}

/* ── SCROLL ANIMATIONS (set by JS) ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247, 244, 239, 0.55);
  max-width: 26ch;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(247, 244, 239, 0.7);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 239, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.35);
}

/* ── UTILITY ───────────────────────────────────────────────────────────────── */
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 3rem; }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3.5rem; }
.mb-md  { margin-bottom: 2rem; }
.mb-lg  { margin-bottom: 3.5rem; }
.flex   { display: flex; align-items: center; }
.grid   { display: grid; }
.stack  { display: flex; flex-direction: column; }

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

.img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
}

.aspect-portrait { aspect-ratio: 4/5; }
.aspect-landscape { aspect-ratio: 3/2; }
.aspect-square { aspect-ratio: 1; }

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(28, 22, 18, 0.15);
  color: var(--taupe);
}

/* ── PILLARS EQUATION ──────────────────────────────────────────────────────── */
.pillars-eq {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 0;
}
.pillar-eq-item {
  padding: 2rem;
  border-top: 1.5px solid var(--blush);
}
.pillar-eq-result {
  background: var(--blush);
  border-radius: var(--radius);
  border-top: none;
  padding: 2rem;
}
.pillar-eq-label {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: var(--bark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.pillar-eq-op {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--blush-deep);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.25rem 0.75rem 0;
  line-height: 1;
  font-style: italic;
}

/* ── TESTIMONIAL PHOTO ─────────────────────────────────────────────────────── */
.testimonial-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .hero-img-wrap  { aspect-ratio: 3/2; max-height: 60vh; }
  .pillars        { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
/* ── FORMS (global) ─────────────────────────────────────────────────────────── */
.form-group, .form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
}
.form-input {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(177,119,89,0.12);
}
.form-textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 120px;
  resize: vertical;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(177,119,89,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a08878' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.form-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--blush-deep);
  flex-shrink: 0;
  cursor: pointer;
}
.stack { display: flex; flex-direction: column; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
  :root { --nav-h: 4.5rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .container  { padding: 0 1.5rem; }
  .section    { padding: 3.5rem 0; }
  .section--lg { padding: 5rem 0; }

  .pillars    { grid-template-columns: 1fr; }
  .pillars-eq { grid-template-columns: 1fr; }
  .pillar-eq-op { padding: 0.25rem 0; justify-content: flex-start; font-size: 1.5rem; }
  .pillar-eq-item { padding: 1.5rem 0; }
  .pillar-eq-result { padding: 1.5rem; }
  .testimonial-photo { width: 72px; height: 72px; }
  .two-up     { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-up--reverse .two-up-img  { order: unset; }
  .two-up--reverse .two-up-text { order: unset; }
  .blog-grid  { grid-template-columns: 1fr; }
  .stats      { gap: 2.5rem; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav { padding: 0 1.5rem; }
  .hero-full-content { padding: 3rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container--narrow { padding: 0 1.25rem; }
  .testimonial { padding: 1.75rem; }
  .btn-lg { padding: 1rem 2rem; }
}

@media (max-width: 480px) {
  .testimonial { flex-direction: column; gap: 1.25rem; }
  .testimonial-photo { width: 80px; height: 80px; }
}
