:root {
  --bg: #F7F3EC;
  --bg-alt: #EFEBE4;
  --fg: #1C3F35;
  --fg-muted: #4A6B5C;
  --fg-light: #7A9A8A;
  --accent: #C9953A;
  --accent-warm: #E8B96A;
  --border: #DDD8CE;
  --shadow: rgba(28, 63, 53, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark { display: flex; }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-region {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-region-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5BB87A;
  box-shadow: 0 0 0 2px rgba(91, 184, 122, 0.25);
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}
.nav-lang-btn {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-lang-btn:hover { color: var(--fg); background: var(--bg-alt); }
.nav-lang-btn.active { color: var(--fg); background: var(--border); }
@media (max-width: 600px) { .nav-lang { display: none; } }

/* ── HERO ── */
.hero {
  padding: 80px 40px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 4px;
}
.hero-badge-sep { color: var(--border); font-weight: 300; font-size: 14px; }
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline-em {
  font-style: italic;
  font-weight: 300;
  color: var(--fg-muted);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}
.hero-proof-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-proof-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hero-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px 0 0;
}
.hero-proof-detail {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.hero-proof-detail:hover {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

/* ── HERO VISUAL ── */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-badge-stack { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.hero-visual-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--shadow);
}
.hero-card-1 { transform: translateX(-20px); }
.hero-card-2 { transform: translateX(0px); }
.hero-card-3 { transform: translateX(-10px); }
.hero-card-icon { flex-shrink: 0; }
.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-card-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.hero-card-text span {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── PILLARS ── */
.pillars { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.pillars-inner { max-width: 1200px; margin: 0 auto; }
.pillars-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.pillars-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.pillars-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: none; }
.pillar:not(:first-child) { padding-left: 40px; }
.pillar-icon {
  width: 56px; height: 56px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ── SERVICES ── */
.services { padding: 100px 40px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 64px; }
.services-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-item:nth-child(odd) { padding-right: 40px; }
.service-item:nth-child(even) { padding-left: 40px; }
.service-item:nth-child(odd) { border-right: 1px solid var(--border); }
.service-item:nth-child(even) { border-left: 1px solid var(--border); }
.service-item:nth-child(n+3) { border-top: none; }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-rule { width: 64px; height: 3px; background: var(--accent); margin-bottom: 48px; }
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.manifesto-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.manifesto-line { width: 40px; height: 1px; background: var(--fg-muted); }
.manifesto-attr span { font-size: 13px; font-weight: 600; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.manifesto-points { display: flex; flex-direction: column; gap: 20px; max-width: 600px; }
.manifesto-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.manifesto-point-icon { flex-shrink: 0; }

/* ── CLOSING ── */
.closing { padding: 100px 40px; background: var(--fg); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-content { max-width: 760px; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 16px;
}
.closing-sub {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-warm);
  margin-bottom: 32px;
}
.closing-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 243, 236, 0.65);
}

/* ── FOOTER ── */
.footer { padding: 40px; background: var(--fg); border-top: 1px solid rgba(247,243,236,0.1); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
}
.footer-tagline { font-size: 13px; color: rgba(247,243,236,0.5); margin-top: 4px; margin-left: 28px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(247,243,236,0.4); }
.footer-dot { color: rgba(247,243,236,0.2); }

/* ── PRICING ── */
.pricing { padding: 100px 40px; border-bottom: 1px solid var(--border); background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { max-width: 620px; margin-bottom: 64px; }
.pricing-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.6; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.pricing-card {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.pricing-card:first-child { padding-left: 0; }
.pricing-card:last-child { border-right: none; padding-right: 0; }
.pricing-card:not(:first-child) { padding-left: 40px; }
.pricing-card-featured {
  background: var(--fg);
  border-radius: 12px;
  padding: 40px;
  border: none;
  box-shadow: 0 4px 20px var(--shadow);
}
.pricing-card-featured .pricing-card-label,
.pricing-card-featured .pricing-card-price,
.pricing-card-featured .pricing-card-price strong,
.pricing-card-featured .pricing-card-sub,
.pricing-card-featured .pricing-card-desc {
  color: var(--bg);
}
.pricing-card-featured .pricing-card-sub { color: var(--accent-warm); opacity: 0.8; }
.pricing-card-featured .pricing-card-desc { color: rgba(247,243,236,0.65); }
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pricing-card-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-card-price { font-size: 20px; font-weight: 400; color: var(--fg); margin-bottom: 4px; }
.pricing-card-price strong { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.pricing-card-sub { font-size: 12px; color: var(--fg-muted); margin-bottom: 20px; }
.pricing-card-desc { font-size: 13px; line-height: 1.65; color: var(--fg-muted); }
.pricing-includes { border-top: 1px solid var(--border); padding-top: 32px; }
.pricing-includes-label { font-size: 13px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.pricing-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.pricing-cta-link {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg-muted);
  transition: background 0.15s, color 0.15s;
  border-right: 1px solid var(--border);
}
.pricing-cta-link:last-child { border-right: none; }
.pricing-cta-link:hover { background: var(--bg-alt); color: var(--fg); }
.pricing-card-featured .pricing-cta-link { color: rgba(247,243,236,0.55); border-right-color: rgba(247,243,236,0.1); }
.pricing-card-featured .pricing-cta-link:hover { background: rgba(247,243,236,0.08); color: var(--bg); border-right-color: rgba(247,243,236,0.2); }
.pricing-card-featured .pricing-cta-link:last-child { border-right: none; }

.pricing-includes-list { display: flex; gap: 32px; flex-wrap: wrap; }
.pricing-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

/* ── TRUST VERIFIED ── */
.trust-verified {
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-verified-inner { max-width: 1200px; margin: 0 auto; }

/* Badge row */
.trust-verified-badges {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 0 40px 0 0;
}
.trust-badge:first-child { padding-left: 0; }
.trust-badge-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 40px 0 0;
}
.trust-badge-icon { flex-shrink: 0; }
.trust-badge-text { display: flex; flex-direction: column; gap: 2px; }
.trust-badge-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.trust-badge-sub {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Explainer section */
.trust-verified-explainer {
  padding: 60px 0;
}
.trust-explainer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.trust-explainer-header { position: sticky; top: 100px; }
.trust-explainer-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.trust-explainer-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.trust-steps { display: flex; flex-direction: column; gap: 0; }
.trust-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.trust-step:first-child { padding-top: 0; }
.trust-step:last-child { border-bottom: none; padding-bottom: 0; }
.trust-step-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.trust-step-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.trust-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-muted);
}
  .pricing { padding: 60px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card:not(:first-child) { padding-left: 0; }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-card-featured { margin: 0; }
  .pricing-includes-list { gap: 20px; }
  .nav { padding: 16px 24px; }
  .nav-region { display: none; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-badge-sep { display: none; }
  .pillars { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:not(:first-child) { padding-left: 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar-icon { margin-bottom: 16px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; padding-left: 0 !important; padding-right: 0 !important; }
  .service-item:not(:first-child) { border-top: 1px solid var(--border); }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pricing-card-actions { grid-template-columns: 1fr; }
  .pricing-cta-link { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-cta-link:last-child { border-bottom: none; }

  /* ── TRUST VERIFIED RESPONSIVE ── */
  .trust-verified { padding: 0 24px; }
  .trust-verified-badges {
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
  }
  .trust-badge {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .trust-badge:first-child { padding: 0 0 16px; }
  .trust-badge:last-child { border-bottom: none; padding: 16px 0 0; }
  .trust-badge-divider { display: none; }
  .trust-verified-explainer { padding: 40px 0; }
  .trust-explainer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-explainer-header { position: static; }
}