@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --navy: #333F4B;
  --emerald: #1F9C5B;
  --emerald-dark: #177A47;
  --cream: #F7F3EC;
  --cream-2: #EFE9DD;
  --border: #DCD3C4;
  --muted: #6B6256;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  font-weight: 600;
}

.accent-italic {
  font-style: italic;
  color: var(--emerald);
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
nav.main-nav { display: flex; align-items: center; gap: 32px; }
nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color .15s;
}
nav.main-nav a:hover { color: var(--emerald); }
.btn {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--emerald-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
  padding: 10.5px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.mobile-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #2b3542 100%);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
}
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12.5px;
  font-weight: 600;
  color: #8fd6ac;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 780px;
  margin: 0 auto 22px;
}
.hero p.sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 18px;
  color: #D9DEE4;
}

/* Sections */
section { padding: 84px 0; }
.section-cream2 { background: var(--cream-2); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .muted { color: #B9C0C8; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 14px;
  display: block;
}
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }
.section-navy .section-head p { color: #C6CCD3; }

/* Trust strip */
.trust-strip {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Problem / solution */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.split .card h3 { font-size: 21px; margin-bottom: 14px; }
.split .card.solution { border-color: var(--emerald); background: #F0F9F3; }
.split .card p { color: var(--muted); }

/* Pillars grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--emerald);
  font-size: 15px;
  margin-bottom: 12px;
  display: block;
}
.pillar-card h4 { font-size: 17px; margin-bottom: 8px; font-family: 'Outfit'; font-weight: 600; }
.pillar-card p { font-size: 14.5px; color: var(--muted); }

/* Pillar rows (Services page, detailed) */
.pillar-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.pillar-row:last-child { border-bottom: none; }
.pillar-row .pnum {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--emerald);
  opacity: .5;
}
.pillar-row h3 { font-size: 21px; margin-bottom: 8px; }
.pillar-row p { color: var(--muted); font-size: 16px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: left; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Fraunces';
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: left;
}
.price-card.featured {
  border: 2px solid var(--emerald);
  box-shadow: 0 12px 32px rgba(31,156,91,.15);
  position: relative;
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--emerald);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.price-card .tier-name { font-size: 14px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.price-card .amount { font-family: 'Fraunces'; font-size: 38px; margin-bottom: 4px; }
.price-card .amount span { font-size: 15px; font-weight: 400; color: var(--muted); font-family: 'Outfit'; }
.price-card .for { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 26px; }
.price-card ul li {
  padding: 9px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  display: flex;
  gap: 10px;
}
.price-card ul li:first-child { border-top: none; }
.price-card ul li .check { color: var(--emerald); font-weight: 700; }
.price-card .btn, .price-card .btn-outline { width: 100%; text-align: center; }

.plans-link {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
}
.plans-link a { color: var(--emerald); font-weight: 600; }

/* Starter callout */
.starter-callout {
  background: var(--white);
  border: 1.5px solid var(--emerald);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.starter-callout h3 { font-size: 20px; margin-bottom: 8px; }
.starter-callout p { color: var(--muted); font-size: 15px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 28px;
}
.testi p.quote { font-family: 'Fraunces'; font-style: italic; font-size: 17px; margin-bottom: 18px; }
.testi .who { font-size: 14px; color: #B9C0C8; }

/* Table (retainer tiers detail) */
.tier-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.tier-table th, .tier-table td { padding: 16px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border); }
.tier-table th { background: var(--cream-2); font-family: 'Fraunces'; font-weight: 600; }
.tier-table td.check { color: var(--emerald); font-weight: 700; text-align: center; }
.tier-table td.dash { color: var(--muted); text-align: center; }
.tier-table tr:last-child td { border-bottom: none; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #C6CCD3;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { font-family: 'Outfit'; color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { color: #B9C0C8; font-size: 14.5px; display: block; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  font-size: 13.5px;
  color: #8B93A0;
  text-align: center;
}

/* Owner story / about */
.owner-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.owner-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-2), var(--border));
  border-radius: 20px;
}
.owner-split h2 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 20px; }
.owner-split p { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Outfit';
  font-size: 15px;
  background: var(--white);
  color: var(--navy);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.contact-side {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-side h3 { font-size: 18px; margin-bottom: 18px; }
.contact-line { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
.contact-line .lbl { color: var(--muted); min-width: 90px; }

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .split, .owner-split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps, .pricing-grid, .testimonials { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .pillar-row { grid-template-columns: 1fr; gap: 8px; }
  .starter-callout { grid-template-columns: 1fr; text-align: center; }
}
