/* ── fonts ───────────────────────────────────────────────────── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-latin-ext-wght-normal.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ── tokens ─────────────────────────────────────────────────── */
:root {
  /* primary: deep teal-slate — calmer, less corporate than navy */
  --c-navy:          #1a3836;
  --c-navy-dark:     #0f2322;
  --c-navy-hover:    #234e4b;

  /* accent: dark amber — warm invitation, not urgent */
  --c-green:         #8b6000;   /* text-safe (≥5:1 on cream) */
  --c-green-light:   #fef3db;
  --c-amber-dec:     #c09020;   /* decorative only: circles, borders */

  /* surfaces */
  --c-bg:            #f5f1eb;   /* warm cream */
  --c-bg-alt:        #ebe6dd;   /* warm beige, not blue */
  --c-surface:       #ffffff;

  /* text */
  --c-text:          #1b1e1d;
  --c-text-muted:    #4a5250;

  /* chrome */
  --c-border:        #d4cdc4;
  --c-highlight:     #fef3db;
  --c-highlight-border: #c09020;

  --f-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --sz-xs:   0.8125rem;
  --sz-sm:   0.875rem;
  --sz-base: 1.0625rem;
  --sz-md:   1.125rem;
  --sz-lg:   1.25rem;
  --sz-xl:   1.5rem;
  --sz-2xl:  1.875rem;
  --sz-3xl:  2.25rem;
  --sz-4xl:  2.875rem;

  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-normal: 1.65;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(26,56,54,.08);
  --shadow-md: 0 4px 16px rgba(26,56,54,.12);
  --shadow-lg: 0 8px 32px rgba(26,56,54,.16);

  --w-max:    860px;
  --w-narrow: 700px;
}

/* ── reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--sz-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── layout helpers ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container-narrow {
  max-width: var(--w-narrow);
}

/* ── buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: var(--sz-base);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .15s, color .15s, border-color .15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-navy);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-navy-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--c-navy);
  color: #fff;
}
.btn-large {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--sz-md);
}
.btn-full { width: 100%; }

/* ── navigation ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-block: var(--sp-4);
}
.nav-logo {
  font-weight: 700;
  font-size: var(--sz-md);
  color: var(--c-navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-size: var(--sz-xs);
  font-weight: 400;
  color: var(--c-text-muted);
  line-height: 1;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--c-navy); }
.nav-cta { margin-left: var(--sp-4); }
.nav-menu-btn {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  color: var(--c-navy);
  padding: var(--sp-2) var(--sp-3);
}

/* ── sections ────────────────────────────────────────────────── */
.section { padding-block: var(--sp-20); }
.section-alt { background: var(--c-bg-alt); }
.section-title {
  font-size: var(--sz-2xl);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--c-navy);
  margin-bottom: var(--sp-4);
}
.section-lead {
  font-size: var(--sz-md);
  color: var(--c-text-muted);
  max-width: 54ch;
  margin-bottom: var(--sp-10);
}

/* ── hero ────────────────────────────────────────────────────── */
.hero {
  padding-block: var(--sp-20) var(--sp-16);
  background: var(--c-surface);
}
.hero-eyebrow {
  font-size: var(--sz-sm);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: var(--sp-5);
}
.hero-title {
  font-size: clamp(var(--sz-2xl), 4.5vw, var(--sz-4xl));
  font-weight: 800;
  line-height: var(--lh-tight);
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
  max-width: 20ch;
}
.hero-lead {
  font-size: var(--sz-lg);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}
.hero-stat {
  display: inline-flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-5) var(--sp-8);
  background: var(--c-highlight);
  border-left: 4px solid var(--c-highlight-border);
  border-radius: var(--r-sm);
  min-width: 220px;
}
.stat-number {
  font-size: var(--sz-4xl);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}
.stat-label {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  max-width: 22ch;
}

/* ── cards (problem) ─────────────────────────────────────────── */
.cards {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.cards--2 {
  grid-template-columns: repeat(2, 1fr);
}
.card-icon {
  font-size: var(--sz-2xl);
  font-weight: 800;
  color: rgba(26,56,54,.18);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.card h3 {
  font-size: var(--sz-md);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.card p {
  font-size: var(--sz-base);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}
.card-when {
  font-size: var(--sz-sm) !important;
  font-weight: 600;
  color: var(--c-green) !important;
  margin-bottom: var(--sp-3);
}

/* ── story ───────────────────────────────────────────────────── */
.story-eyebrow,
.story-title,
.story-content,
.story-author {
  max-width: var(--w-narrow);
}
.story-eyebrow {
  font-size: var(--sz-sm);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: var(--sp-4);
}
.story-title {
  font-size: var(--sz-2xl);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--c-navy);
  margin-bottom: var(--sp-8);
  max-width: 30ch;
}
.story-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.story-content p {
  font-size: var(--sz-md);
  line-height: var(--lh-normal);
  color: var(--c-text);
}
.story-highlight {
  font-size: var(--sz-xl) !important;
  font-weight: 700 !important;
  color: var(--c-navy) !important;
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-highlight);
  border-left: 4px solid var(--c-highlight-border);
  border-radius: var(--r-sm);
}
.story-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.author-info strong {
  font-size: var(--sz-base);
  color: var(--c-navy);
}
.author-info span {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
}

/* ── steps ───────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: var(--w-narrow);
}
.step {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  font-size: var(--sz-base);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-size: var(--sz-md);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}
.step-content p {
  font-size: var(--sz-base);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* ── checklist ───────────────────────────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: var(--w-narrow);
}
.checklist li {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  font-size: var(--sz-md);
  line-height: var(--lh-snug);
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--c-amber-dec);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── pricing ─────────────────────────────────────────────────── */
.pricing-tiers {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: var(--sp-8);
}
.pricing-tier {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pricing-tier .pricing-amount {
  font-size: var(--sz-2xl);
  margin-bottom: var(--sp-3);
}
.pricing-tier .pricing-note {
  margin-bottom: 0;
}
.pricing-card {
  background: var(--c-surface);
  border: 2px solid var(--c-navy);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-10);
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: var(--w-narrow);
  margin-inline: auto;
}
.pricing-label {
  font-size: var(--sz-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.pricing-amount {
  font-size: var(--sz-4xl);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.pricing-note {
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-8);
}
.pricing-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  max-width: 36ch;
  margin-inline: auto;
}
.pricing-includes li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--sz-base);
}
.pricing-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--c-amber-dec);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-footnote {
  margin-top: var(--sp-6);
  font-size: var(--sz-sm);
  color: var(--c-text-muted);
  text-align: center;
}

/* ── testimonials ────────────────────────────────────────────── */
.testimonials {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-size: var(--sz-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  margin-bottom: var(--sp-5);
  quotes: none;
}
.testimonial cite {
  font-size: var(--sz-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--c-text-muted);
}

/* ── faq ─────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: var(--w-narrow);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: var(--sp-6);
}
.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-item h3 {
  font-size: var(--sz-md);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.faq-item p {
  font-size: var(--sz-base);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* ── contact form ────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
  max-width: var(--w-narrow);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: var(--sz-sm);
  font-weight: 600;
  color: var(--c-text);
}
.form-group input,
.form-group textarea {
  font-family: var(--f-body);
  font-size: var(--sz-base);
  color: var(--c-text);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  line-height: var(--lh-normal);
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-navy);
}
.form-group textarea { resize: vertical; }

.contact-direct {
  max-width: var(--w-narrow);
  text-align: center;
  color: var(--c-text-muted);
  font-size: var(--sz-sm);
}
.contact-direct p { margin-bottom: var(--sp-3); }
.contact-note { margin-top: var(--sp-5); margin-bottom: 0; }
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.contact-link {
  display: inline-block;
  font-size: var(--sz-md);
  font-weight: 600;
  color: var(--c-navy);
  text-decoration: underline;
  text-decoration-color: var(--c-border);
  transition: text-decoration-color .15s;
}
.contact-link:hover { text-decoration-color: var(--c-navy); }

/* ── footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.75);
  padding-block: var(--sp-12);
}
.footer-content {
  display: grid;
  gap: var(--sp-8);
}
.footer-brand strong {
  display: block;
  font-size: var(--sz-md);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-1);
}
.footer-brand span {
  font-size: var(--sz-sm);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}
.footer-nav a {
  font-size: var(--sz-sm);
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; }
.footer-legal {
  font-size: var(--sz-xs);
  line-height: var(--lh-normal);
  color: rgba(255,255,255,.5);
  max-width: 56ch;
}
.footer-legal p + p { margin-top: var(--sp-2); }

/* ── mobile nav ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: var(--sp-4) var(--sp-6);
    gap: var(--sp-4);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open a { font-size: var(--sz-base); }
  .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
}

/* ── prose (content pages: GDPR, etc.) ──────────────────────── */
.prose {
  max-width: var(--w-narrow);
  margin-inline: auto;
}
.prose h1 {
  font-size: var(--sz-4xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--c-navy);
  margin-bottom: var(--sp-8);
}
.prose h2 {
  font-size: var(--sz-xl);
  font-weight: 600;
  color: var(--c-navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-3);
}
.prose p {
  margin-bottom: var(--sp-4);
  line-height: var(--lh-relaxed);
}
.prose ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.prose li {
  margin-bottom: var(--sp-2);
  line-height: var(--lh-relaxed);
}
.prose strong { font-weight: 600; }

/* ── responsive adjustments ──────────────────────────────────── */
@media (max-width: 600px) {
  .cards--2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section { padding-block: var(--sp-16); }
  .pricing-card { padding: var(--sp-8); }
  .step { flex-direction: column; gap: var(--sp-4); }
}
