/* ==========================================================================
   Varmendo — Static stylesheet
   Faithful reproduction of the Next.js + Tailwind v4 design.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --primary: #2C4A3E;
  --primary-light: #3a6156;
  --secondary: #4A7C6F;
  --accent: #C9A84C;
  --accent-light: #dfc070;
  --background: #FAFAF7;
  --foreground: #1A1A1A;
  --muted-foreground: #6B7B74;
  --card: #FFFFFF;
  --border: #D8DDD9;
  --input: #E8EDEA;
  --ring: #4A7C6F;
  --radius: 0.25rem;
  --muted: #F0F2F0;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: inherit;
}

/* ---- Utility / helper classes ---- */
.font-display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.font-serif { font-family: var(--font-serif); }
.font-mono  { font-family: var(--font-mono); }

.label-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-balance { text-wrap: balance; }

.hidden-md { display: none; }
@media (min-width: 768px) { .hidden-md { display: inline; } }

.container-x {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container-x { padding-inline: 2rem; }
}

.max-w-3xl { max-width: 48rem; margin-inline: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-lg  { max-width: 32rem; }

/* Accent rule (small gold line) */
.rule-accent {
  display: inline-block;
  width: 1.5rem;   /* w-6 */
  height: 1px;
  background: var(--accent);
}
.rule-accent.w8 { width: 2rem; } /* w-8 */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.eyebrow.on-dark span { color: #A8B8B2; }

/* Section heading */
.h1-display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h2-display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--background);
}
.btn-primary:hover { background: var(--primary-light); }

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

.btn-arrow svg { transition: transform .2s; }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color .3s, box-shadow .3s, border-color .3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .header-inner { padding-inline: 2.5rem; }
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .header-bar { height: 5rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.brand-mark span {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}
.brand-name {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.brand:hover .brand-name { color: var(--secondary); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color .2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width .3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
/* Active link: gold so it stays visible over the dark-green page heroes
   (transparent header) instead of blending into the green background. */
.nav-link.active { color: var(--accent); font-weight: 600; }
.nav-link.active::after { width: 100%; }
/* Once the header turns into a solid light bar on scroll, switch the active
   link to dark green for crisp contrast on the light surface. */
.site-header.scrolled .nav-link.active { color: var(--primary); }
.site-header.scrolled .nav-link:hover { color: var(--secondary); }

.nav-cta {
  min-height: 2.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color .2s;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--primary-light); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: 3rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--primary);
}
@media (min-width: 768px) {
  .menu-toggle { display: none; }
}
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-open { display: none; }
.menu-toggle.open .icon-close { display: block; }

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu nav {
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-link {
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--input);
  transition: color .2s;
}
.mobile-link:last-of-type { border-bottom: 0; }
.mobile-link:hover { color: var(--primary); }
.mobile-cta {
  margin-top: 0.75rem;
  width: 100%;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--background);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color .2s;
}
.mobile-cta:hover { background: var(--primary-light); }

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
section { position: relative; }

.bg-primary { background: var(--primary); }
.bg-cream   { background: var(--background); }
.bg-white   { background: #fff; }
.bg-accent  { background: var(--accent); }

.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--background);
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid-lines .v1,
.hero-grid-lines .v2,
.hero-grid-lines .h1line { display: none; }
@media (min-width: 768px) {
  .hero-grid-lines .v1,
  .hero-grid-lines .v2 {
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(216, 221, 217, 0.4);
  }
  .hero-grid-lines .v1 { left: 33.333%; }
  .hero-grid-lines .v2 { right: 33.333%; }
  .hero-grid-lines .h1line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(216, 221, 217, 0.3);
  }
}

.hero-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 7rem 1rem 3rem;
}
@media (min-width: 768px) {
  .hero-inner { padding: 9rem 2rem 0; }
}
.hero-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-cols {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: calc(100vh - 7rem);
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-h1 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 1.125rem; }
}

.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.hero-stats .stat {
  padding: 1.25rem 1rem;
  background: #fff;
  border-left: 1px solid var(--border);
}
.hero-stats .stat:first-child { border-left: 0; }
.stat-num {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  margin-top: 0.25rem;
  color: var(--foreground);
  font-weight: 500;
  font-size: 12px;
}
.stat-sub {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
}
.hero-ctas .btn { width: 100%; }

.hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }

.hero-right {
  position: relative;
  height: 320px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-right {
    height: auto;
    min-height: calc(100vh - 7rem);
  }
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-accent-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.hero-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
  max-width: 220px;
}
.hero-float .kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-float .title {
  margin-top: 0.25rem;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
}
.hero-float .meta {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* ==========================================================================
   INTENTIONS (3-card row)
   ========================================================================== */
.intentions {
  background: var(--background);
  border-top: 1px solid var(--border);
}
.intentions-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .intentions-grid { grid-template-columns: repeat(3, 1fr); }
}
.intention-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  height: 100%;
  border-top: 1px solid var(--border);
  transition: background-color .3s;
}
.intentions-grid > *:first-child .intention-card { border-top: 0; }
@media (min-width: 768px) {
  .intention-card {
    padding: 2.5rem;
    border-top: 0;
    border-left: 1px solid var(--border);
  }
  .intentions-grid > *:first-child .intention-card { border-left: 0; }
}
.intention-card:hover { background: #fff; }
.intention-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.intention-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 62, 0.08);
  border-radius: var(--radius);
  transition: background-color .3s;
}
.intention-icon svg { color: var(--primary); transition: color .3s; }
.intention-card:hover .intention-icon { background: rgba(201,168,76,0.15); }
.intention-card:hover .intention-icon svg { color: var(--accent); }
.intention-num {
  color: var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.intention-title {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.intention-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.intention-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color .2s;
}
.intention-more svg { transition: transform .2s; }
.intention-card:hover .intention-more { color: var(--accent); }
.intention-card:hover .intention-more svg { transform: translateX(4px); }

/* ==========================================================================
   BENTO FEATURES
   ========================================================================== */
.section-pad { padding: 4rem 0; }
@media (min-width: 768px) { .section-pad { padding: 6rem 0; } }

.section-head {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-head.row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-head .lede {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 20rem;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
}
.bento-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}
.bento-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.bento-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.bento-card p {
  font-size: 0.75rem;
  line-height: 1.6;
}

/* Large hero card */
.bento-large {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
@media (min-width: 768px) {
  .bento-large { grid-column: span 2; }
}
.bento-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.bento-large .inner { position: relative; z-index: 1; }
.bento-large .bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,0.20);
  margin-bottom: 1rem;
}
.bento-large .bento-icon svg { color: var(--accent); }
.bento-large h3 {
  color: var(--background);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.bento-large p {
  color: #A8B8B2;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 28rem;
}

/* Accent card (gold) */
.bento-accent {
  background: var(--accent);
  padding: 1.75rem;
  min-height: 200px;
}
.bento-accent .bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(26,26,26,0.10);
}
.bento-accent .bento-icon svg { color: var(--foreground); }
.bento-accent h3 {
  color: var(--foreground);
  font-size: 22px;
  margin-bottom: 0.375rem;
}
.bento-accent p { color: #3a3520; font-size: 0.875rem; line-height: 1.65; }

/* Secondary teal small card */
.bento-teal {
  background: var(--secondary);
}
.bento-teal .bento-icon { background: rgba(255,255,255,0.2); }
.bento-teal .bento-icon svg { color: var(--background); }
.bento-teal h3 { color: var(--background); }
.bento-teal p { color: #C0D8D2; }

/* Plain small card */
.bento-plain {
  background: var(--background);
  border: 1px solid var(--border);
}
.bento-plain .bento-icon { background: rgba(44,74,62,0.08); }
.bento-plain .bento-icon svg { color: var(--primary); }
.bento-plain h3 { color: var(--primary); }
.bento-plain p { color: var(--muted-foreground); }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band {
  background: var(--primary);
  padding: 3rem 0;
}
@media (min-width: 768px) { .stats-band { padding: 4rem 0; } }
.stats-band-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); }
}
.stats-band-item {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--primary-light);
}
.stats-band-grid > *:first-child { border-top: 0; }
@media (min-width: 768px) {
  .stats-band-item {
    padding: 0 2rem;
    border-top: 0;
    border-left: 1px solid var(--primary-light);
  }
  .stats-band-grid > *:first-child { border-left: 0; }
}
.stats-band-num {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-band-label {
  margin-top: 0.5rem;
  color: var(--background);
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 768px) { .stats-band-label { font-size: 1rem; } }
.stats-band-sub {
  margin-top: 0.25rem;
  color: #7A9490;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stats-band-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #5A7A74;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.65;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-timeline { position: relative; }
.process-line {
  display: none;
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .process-line { display: block; left: 4.5rem; } }
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--input);
}
.process-step:last-child { border-bottom: 0; }
@media (min-width: 768px) { .process-step { gap: 4rem; } }
.process-num {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-content h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.process-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 36rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.stars { display: flex; gap: 0.25rem; }
.stars.rating { align-items: center; }
.stars svg { color: var(--accent); }
.rating-text { font-size: 0.875rem; color: var(--muted-foreground); margin-left: 0.25rem; }

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .reviews { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.review-card blockquote { flex: 1; }
.review-card blockquote p {
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.65;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--input);
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.review-loc {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.review-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--accent);
  padding: 4rem 0;
}
@media (min-width: 768px) { .cta-banner { padding: 5rem 0; } }
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) { .cta-banner-inner { flex-direction: row; } }
.cta-banner .rule-dark {
  width: 2rem;
  height: 1px;
  background: rgba(26,26,26,0.3);
  margin-bottom: 1rem;
}
.cta-banner h2 {
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 32rem;
}
.cta-banner-btn {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) { .cta-banner-btn { width: auto; } }
.btn-lg {
  min-height: 3.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  gap: 0.75rem;
}
.btn-dark { background: var(--primary); color: var(--background); }
.btn-dark:hover { background: var(--foreground); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--primary);
  color: var(--background);
}
.footer-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) { .footer-inner { padding: 4rem 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand-mark {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: var(--radius);
}
.footer-brand-mark span {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.footer-brand-name {
  color: var(--background);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-tag {
  font-size: 0.875rem;
  color: #A8B8B2;
  line-height: 1.65;
}
.footer-sub {
  font-size: 0.75rem;
  color: #7A9490;
  margin-top: 1rem;
}
.footer-col h3 {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col.contact ul { gap: 0.75rem; }
.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: #A8B8B2;
  transition: color .2s;
}
.footer-col a:hover { color: var(--background); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-item.center { align-items: center; }
.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item.center svg { margin-top: 0; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--primary-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}
.footer-copy { font-size: 0.75rem; color: #7A9490; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a {
  font-size: 0.75rem;
  color: #7A9490;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--background); }
.footer-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #5A7A74;
  line-height: 1.65;
  max-width: 42rem;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--primary);
  color: var(--background);
  padding: 1rem;
}
@media (min-width: 768px) { .cookie-banner { padding: 1.25rem 1rem; } }
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: 80rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; }
}
.cookie-text {
  font-size: 0.875rem;
  color: #A8B8B2;
  line-height: 1.65;
  max-width: 42rem;
}
.cookie-text strong { color: var(--background); font-weight: 500; }
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  transition: color .2s;
}
.cookie-text a:hover { color: var(--accent-light); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-refuse {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  background: transparent;
  border: 1px solid var(--secondary);
  color: #A8B8B2;
  border-radius: var(--radius);
  min-height: 2.5rem;
  transition: color .2s, border-color .2s;
}
.cookie-refuse:hover { color: var(--background); border-color: var(--background); }
.cookie-accept {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background: var(--accent);
  color: var(--foreground);
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  min-height: 2.5rem;
  transition: background-color .2s;
}
.cookie-accept:hover { background: var(--accent-light); }

/* ==========================================================================
   INNER PAGE HERO (dark)
   ========================================================================== */
.page-hero {
  background: var(--primary);
  padding: 7rem 0 4rem;
}
@media (min-width: 768px) { .page-hero { padding: 10rem 0 6rem; } }
.page-hero h1 {
  color: var(--background);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero p {
  margin-top: 1.5rem;
  color: #A8B8B2;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42rem;
}
@media (min-width: 768px) { .page-hero p { font-size: 1.125rem; } }
.page-hero .narrow { max-width: 48rem; }
.page-hero .narrow-2 { max-width: 42rem; }

.jump-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.jump-link {
  padding: 0.5rem 1rem;
  border: 1px solid var(--secondary);
  font-size: 0.875rem;
  color: #A8B8B2;
  border-radius: var(--radius);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  transition: color .2s, border-color .2s;
}
.jump-link:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.story-h2 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.story-p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}
@media (min-width: 768px) { .story-p { font-size: 1rem; } }
.story-p + .story-p { margin-top: 1rem; }
.story-img { position: relative; }
.story-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.story-badge {
  display: none;
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .story-badge { display: flex; } }
.story-badge .year {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}
.story-badge .desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.3;
  max-width: 120px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,74,62,0.08);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.value-icon svg { color: var(--primary); }
.value-card h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  background: var(--border);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.team-member:hover .team-photo img { transform: scale(1.05); }
.team-photo .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,74,62,0);
  transition: background-color .3s;
}
.team-member:hover .team-photo .overlay { background: rgba(44,74,62,0.2); }
.team-member h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.team-role {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.team-detail { font-size: 0.75rem; color: var(--muted-foreground); }
/* team avatar fallback (initials) */
.team-photo .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
}

.certs-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) { .certs-row { flex-direction: row; align-items: center; } }
.certs-label {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.certs-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cert-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--primary);
  border-radius: var(--radius);
  background: var(--background);
}

.center-cta { text-align: center; }
.center-cta h2 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* ==========================================================================
   SERVICES PAGE — alternating blocks
   ========================================================================== */
.service-block { padding: 4rem 0; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .service-block { padding: 6rem 0; } }
.service-block .two-col.reverse .service-text { order: 1; }
@media (min-width: 768px) {
  .service-block .two-col.reverse .service-text { order: 2; }
  .service-block .two-col.reverse .service-img { order: 1; }
}
.service-title {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.service-text > p.lead {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) { .service-text > p.lead { font-size: 1rem; } }
.service-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.service-list svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
  line-height: 1.65;
}
.service-img { position: relative; }
.service-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-img .strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.fees-stack { display: flex; flex-direction: column; gap: 2rem; }
.fee-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.fee-head {
  padding: 1rem 1.5rem;
  background: var(--primary);
}
.fee-head h3 {
  color: var(--background);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.fee-table-wrap { overflow-x: auto; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th {
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.fee-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--input);
}
.fee-table tr:last-child td { border-bottom: 0; }
.fee-table tbody tr:nth-child(odd) { background: var(--background); }
.fee-table tbody tr:nth-child(even) { background: #fff; }
.fee-range { font-size: 0.875rem; color: var(--foreground); }
.fee-rate {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}
.fee-note { font-size: 0.75rem; color: var(--muted-foreground); }

.legal-note {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-note svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.legal-note p { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.65; }
.legal-note strong { color: var(--foreground); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }
.faq-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}
.faq-card h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.faq-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(5, 1fr); gap: 4rem; }
  .contact-form-col { grid-column: span 3; }
  .contact-info-col { grid-column: span 2; }
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form h2 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}
.field .req { color: #ef4444; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: none; min-height: auto; }
.field input::placeholder,
.field textarea::placeholder { color: #B0BDB9; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .field-row { grid-template-columns: 1fr 1fr; } }

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .intent-grid { grid-template-columns: repeat(4, 1fr); } }
.intent-btn {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted-foreground);
  min-height: 2.5rem;
  transition: background-color .2s, color .2s, border-color .2s;
}
.intent-btn:hover { border-color: var(--primary); color: var(--primary); }
.intent-btn.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--background);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.consent input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.consent label { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.65; }
.consent a { color: var(--primary); text-decoration: underline; transition: color .2s; }
.consent a:hover { color: var(--accent); }

.form-submit {
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  transition: background-color .2s;
}
@media (min-width: 768px) { .form-submit { width: auto; align-self: flex-start; } }
.form-submit:hover { background: var(--primary-light); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  gap: 1.25rem;
}
.form-success svg { color: var(--secondary); }
.form-success h2 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}
.form-success p { color: var(--muted-foreground); font-size: 0.875rem; max-width: 24rem; line-height: 1.65; }
.form-reset {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  transition: color .2s;
}
.form-reset:hover { color: var(--accent); }

.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-col h2 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.info-item svg { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.info-item .info-title { font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.125rem; }
.info-item p, .info-item a { font-size: 0.875rem; color: var(--muted-foreground); transition: color .2s; }
.info-item a:hover { color: var(--primary); }

.map-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--border);
  aspect-ratio: 4 / 3;
}
.map-box .map-svg { width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin .card {
  background: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.map-pin .card .name { font-size: 0.75rem; color: var(--primary); font-weight: 500; }
.map-pin .card .addr { font-size: 0.75rem; color: var(--muted-foreground); }

.guarantee-box {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.guarantee-box .kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.guarantee-box p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; }
.guarantee-box strong { color: var(--foreground); }

/* ==========================================================================
   COMPLIANCE PAGES (prose)
   ========================================================================== */
.compliance-hero {
  background: var(--primary);
  padding: 7rem 0 3rem;
}
@media (min-width: 768px) { .compliance-hero { padding: 9rem 0 4rem; } }
.compliance-hero h1 {
  color: var(--background);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.compliance-hero .updated {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #7A9490;
}
.compliance-body {
  background: var(--background);
  padding: 3rem 0;
}
@media (min-width: 768px) { .compliance-body { padding: 5rem 0; } }
.prose {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}
.prose h2 {
  font-weight: 600;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  color: var(--primary);
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p { margin-bottom: 1rem; }
.prose ul { margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose strong { color: var(--foreground); }
.compliance-foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.compliance-foot a {
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.compliance-foot a:hover { color: var(--accent); }

/* ==========================================================================
   FADE-UP animations (replacing framer-motion) — never leave hidden
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.6s ease both;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-in { animation: none; }
  html { scroll-behavior: auto; }
}
