/* ── TOKENS ─────────────────────────────────────── */
:root {
  --navy:     #1A3A5C;
  --navy-dk:  #0F2439;
  --teal:     #0F6E56;
  --teal-lt:  #E1F5EE;
  --teal-mid: #9FE1CB;
  --gold:     #B7860B;
  --gold-lt:  #FDF3DC;
  --gold-mid: #E8C96A;
  --cream:    #FAF8F4;
  --sand:     #F2EDE4;
  --bark:     #C4A882;
  --white:    #FFFFFF;
  --ink:      #1C1816;
  --muted:    #6B6560;
  --faint:    #9E9890;
  --border:   #E2DAD0;
  --max:      1160px;
  --r:        6px;
  --r-lg:     12px;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; font-weight: 600; color: var(--navy); }
h1 { font-size: clamp(38px, 5vw, 62px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }
p { line-height: 1.75; color: var(--muted); }
strong { color: var(--ink); font-weight: 600; }

/* ── UTILITY ─────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; }
.tag--gold { color: var(--gold); }
.tag--gold::before { background: var(--gold); }
.tag--white { color: rgba(255,255,255,0.7); }
.tag--white::before { background: rgba(255,255,255,0.5); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 13px 26px; border-radius: var(--r);
  transition: all 0.2s ease;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #0A5741; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,110,86,0.25); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--gold-lt); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.35); padding: 4px 0; border-radius: 0; letter-spacing: 0.03em; font-size: 13px; }
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,58,92,0.08); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; flex-direction: column; }
.nav__logo-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1; }
.nav__logo-tag { font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 13.5px; font-weight: 500; color: var(--muted); position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav__link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav__link:hover, .nav__link.active { color: var(--navy); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__cta { font-size: 13.5px; font-weight: 600; color: var(--white); background: var(--teal); padding: 10px 22px; border-radius: var(--r); transition: all 0.2s; }
.nav__cta:hover { background: var(--navy); }

/* ── HERO SHARED ─────────────────────────────────── */
.hero { padding: 130px 0 90px; position: relative; overflow: hidden; }
.hero--dark { background: var(--navy-dk); }
.hero--dark h1, .hero--dark h2, .hero--dark h3 { color: var(--white); }
.hero--dark p { color: rgba(255,255,255,0.6); }

/* Organic blob decoration */
.blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  opacity: 0.07;
}

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); }
.bg-navy-dk { background: var(--navy-dk); }
.bg-teal-lt { background: var(--teal-lt); }
.bg-gold-lt { background: var(--gold-lt); }
.bg-white { background: var(--white); }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,58,92,0.09); }
.card--featured { background: var(--navy); border-color: var(--navy); }
.card--featured h3, .card--featured h4 { color: var(--white); }
.card--featured p { color: rgba(255,255,255,0.6); }
.card--teal { background: var(--teal-lt); border-color: rgba(15,110,86,0.2); }

/* ── PROBLEM CARD ────────────────────────────────── */
.problem-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--r); padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: 0 4px 24px rgba(26,58,92,0.08); }
.problem-card__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.problem-card__title { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.problem-card__text { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ── STEP BOX ────────────────────────────────────── */
.step { padding: 32px 28px; border-radius: var(--r-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); position: relative; }
.step__num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 12px; }
.step__title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.step__text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }

/* ── TRUST BAR ───────────────────────────────────── */
.trust { background: var(--gold-lt); border-top: 1px solid #E8D99A; border-bottom: 1px solid #E8D99A; padding: 16px 0; }
.trust__inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust__item { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.trust__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; }

/* ── VALUE ITEM ──────────────────────────────────── */
.value-item__accent { width: 28px; height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: 16px; }
.value-item__title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }

/* ── QUOTE BLOCK ─────────────────────────────────── */
.quote-block { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; }
.quote-block::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 100px; color: var(--teal-lt); position: absolute; top: -10px; left: 24px; line-height: 1; }
.quote-block__text { font-family: 'Playfair Display', serif; font-size: clamp(16px, 2vw, 20px); font-style: italic; line-height: 1.6; color: var(--navy); margin-bottom: 20px; position: relative; z-index: 1; }
.quote-block__attr { font-size: 13px; color: var(--muted); }
.quote-block__attr strong { color: var(--navy); }

/* ── NAME MEANING ────────────────────────────────── */
.name-box { display: flex; gap: 16px; align-items: flex-start; background: var(--teal-lt); border: 1px solid rgba(15,110,86,0.2); border-radius: var(--r); padding: 20px; margin-top: 24px; }
.name-box__char { font-size: 40px; color: var(--teal); line-height: 1; flex-shrink: 0; }
.name-box__text { font-size: 13.5px; line-height: 1.7; color: var(--ink); }
.name-box__text strong { display: block; margin-bottom: 4px; color: var(--teal); }

/* ── PACKAGE CARD ────────────────────────────────── */
.pkg-card { border-radius: var(--r-lg); padding: 36px 32px; border: 1px solid var(--border); background: var(--white); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.pkg-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,58,92,0.1); }
.pkg-card--featured { background: var(--navy); border-color: var(--navy); }
.pkg-card__badge { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 20px; background: var(--teal-lt); color: var(--teal); }
.pkg-card--featured .pkg-card__badge { background: rgba(255,255,255,0.12); color: var(--gold-mid); }
.pkg-card__num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 12px; }
.pkg-card--featured .pkg-card__num { color: rgba(255,255,255,0.1); }
.pkg-card__title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pkg-card--featured .pkg-card__title { color: var(--white); }
.pkg-card__tagline { font-size: 12px; font-weight: 600; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.pkg-card--featured .pkg-card__tagline { color: var(--gold-mid); }
.pkg-card__price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pkg-card--featured .pkg-card__price { color: var(--white); }
.pkg-card__price-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.pkg-card--featured .pkg-card__price-note { color: rgba(255,255,255,0.5); }
.pkg-card__divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pkg-card--featured .pkg-card__divider { border-color: rgba(255,255,255,0.12); }
.pkg-card__desc { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.pkg-card--featured .pkg-card__desc { color: rgba(255,255,255,0.6); }
.pkg-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
.pkg-card__feature { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.pkg-card--featured .pkg-card__feature { color: rgba(255,255,255,0.65); }
.pkg-card__feature::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pkg-card--featured .pkg-card__feature::before { color: var(--gold-mid); }

/* ── RESOURCE CARD ───────────────────────────────── */
.resource-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,92,0.08); }
.resource-card__top { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.resource-card__body { padding: 24px; }
.resource-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px; }
.resource-card__title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.resource-card__price { font-size: 16px; font-weight: 700; color: var(--teal); margin-bottom: 16px; }
.resource-card__free { color: var(--gold); }

/* ── BLOG CARD ───────────────────────────────────── */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,92,0.08); }
.blog-card__top { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 10px; }
.blog-card__title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card__excerpt { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--faint); display: flex; gap: 16px; }

/* ── FORM ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; color: var(--ink); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,110,86,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section { background: var(--teal); padding: 72px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: -60px; left: 10%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--navy-dk); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer__brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer__brand-tag { font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.footer__desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__address { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.3); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer__link { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer__link:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── GRID HELPERS ────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--r-lg); overflow: hidden; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-sub { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--muted); max-width: 520px; margin-top: 12px; }
.section-sub--white { color: rgba(255,255,255,0.55); }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; } .d5 { animation-delay: 0.5s; }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero { background: var(--navy); padding: 130px 0 72px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin-top: 16px; font-size: 17px; }
.page-hero .tag { color: rgba(255,255,255,0.6); }
.page-hero .tag::before { background: rgba(255,255,255,0.4); }

/* ── DIVIDER ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CONTACT DETAILS ─────────────────────────────── */
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon { width: 40px; height: 40px; background: var(--teal-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 4px; }
.contact-detail__value { font-size: 15px; color: var(--ink); }

/* ── SUCCESS MESSAGE ─────────────────────────────── */
.success-msg { display: none; background: var(--teal-lt); border: 1px solid rgba(15,110,86,0.3); border-radius: var(--r); padding: 20px 24px; text-align: center; }
.success-msg.show { display: block; }
.success-msg strong { color: var(--teal); }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .grid-2, .grid-3, .grid-4, .grid-steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  section { padding: 64px 0; }
  .hero { padding: 100px 0 64px; }
}
