/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #F5F0E8;
  --navy: #1B2A4A;
  --green: #2E6B3E;
  --green-light: #EAF3DE;
  --green-dark: #1C3A28;
  --border: rgba(27,42,74,0.12);
  --text-muted: rgba(27,42,74,0.6);
  --text-faint: rgba(27,42,74,0.4);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --max: 1100px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--navy); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); line-height: 1.12; letter-spacing: -0.3px; }
h1 { font-size: clamp(42px, 6vw, 66px); }
h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 0.5rem; }
h3 { font-size: 20px; }
p { line-height: 1.75; }
strong { font-weight: 500; }

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; }
.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 1.25rem; }
.sec-label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.5rem; }
.sec-sub { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 600px; }
.divider { height: 0.5px; background: var(--border); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 500; padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer; transition: background 0.15s, opacity 0.15s; text-align: center; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #2a3d5f; }
.btn-outline { background: transparent; color: var(--navy); border: 0.5px solid var(--border); }
.btn-outline:hover { background: rgba(27,42,74,0.04); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; padding: 11px; font-size: 14px; }

/* ── NAV ── */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: var(--cream); border-bottom: 0.5px solid var(--border); position: sticky; top: 0; z-index: 200; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 32px; height: 32px; object-fit: contain; }
.nav-logo-text { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); }

/* Mobile menu */
.mobile-menu { display: none; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 0.5px solid var(--border); padding: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 1rem 2rem; font-size: 15px; color: var(--navy); border-bottom: 0.5px solid var(--border); }
.mobile-menu .btn { margin: 1rem 2rem; width: calc(100% - 4rem); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; padding: 0; max-width: 100%; margin: 0; overflow: hidden; min-height: 560px; }
.hero-logo { display: flex; align-items: center; justify-content: center; background: var(--cream); padding: 3rem 2rem 3rem 3rem; }
.hero-swan { width: 100%; max-width: 520px; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.hero-content { padding: 4rem 3rem 4rem 2rem; }
.hero-content .eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 0.75rem; }
.hero-tagline { font-family: var(--serif); font-size: 26px; font-weight: 400; font-style: italic; color: var(--green); margin-bottom: 1.5rem; }
.hero-sub { font-size: 15px; color: var(--text-muted); line-height: 1.85; max-width: 480px; margin-bottom: 2.25rem; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BRAND STORY ── */
.brand-story { padding: 5rem 2rem; position: relative; overflow: hidden; }
.brand-story-inner { max-width: 600px; margin: 0 auto 0 0; position: relative; z-index: 1; max-width: var(--max); }
.brand-story h2 { margin-bottom: 1rem; }
.brand-story p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; max-width: 560px; }
.brand-story strong { color: var(--navy); }
.brand-chip { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 0.5px solid var(--border); border-radius: 8px; padding: 0.9rem 1.1rem; margin-top: 0.75rem; }
.brand-chip div { display: flex; flex-direction: column; gap: 2px; }
.brand-chip strong { font-size: 13px; font-weight: 500; color: var(--navy); display: block; }
.brand-chip span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── SECTIONS ── */
.section { padding: 4.5rem 2rem; }
.section-white { background: #fff; }

/* ── WORKFLOW ── */
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wf-step { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.wf-num { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--green); margin-bottom: 0.75rem; }
.wf-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 0.35rem; }
.wf-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.wf-date { font-size: 12px; font-weight: 500; color: var(--green); margin-top: 0.75rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.pc { background: var(--cream); border: 0.5px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.pc-pop { border: 1.5px solid var(--green); background: #fff; }
.pc-badge { font-size: 11px; font-weight: 500; color: var(--green); margin-bottom: 0.35rem; }
.pc-name { font-size: 12px; color: var(--text-muted); margin-bottom: 0.6rem; }
.pc-price { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--navy); letter-spacing: -0.3px; }
.pc-period { font-size: 12px; color: var(--text-faint); }
.pc-note { font-size: 12px; color: var(--text-faint); margin-top: 0.35rem; }

.onboard-box { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.onboard-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.onboard-label { font-size: 13px; font-weight: 500; color: var(--navy); }
.onboard-sub { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.onboard-price { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--navy); flex-shrink: 0; }

.email-note { font-size: 12px; color: var(--text-faint); margin-bottom: 1.5rem; line-height: 1.6; }

.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.addon { background: var(--cream); border: 0.5px solid var(--border); border-radius: 8px; padding: 0.9rem 1rem; }
.addon h4 { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.addon p { font-size: 12px; color: var(--text-muted); }

.incl-box { background: var(--cream); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.incl-title { font-size: 12px; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.refer-box .incl-title { color: var(--text-muted); }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.55; }
.check { color: var(--green); font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.arrow { color: rgba(27,42,74,0.3); flex-shrink: 0; margin-top: 1px; }
.dash { color: rgba(27,42,74,0.3); flex-shrink: 0; margin-top: 1px; }

/* ── FIT ── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fit-card { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.fit-h { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 1rem; }
.fit-yes { color: var(--green); }
.fit-no { color: var(--text-faint); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fit-list li { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.55; }

/* ── WORKSHOPS ── */
.ws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.ws-card { background: var(--cream); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.ws-live { background: #fff; border: 1.5px solid var(--green); }
.ws-dim { opacity: 0.5; }
.ws-sess { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.5rem; }
.ws-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.6rem; }
.ws-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--navy); line-height: 1.2; }
.ws-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.live-pill { flex-shrink: 0; font-size: 11px; font-weight: 500; background: var(--green-light); color: #3B6D11; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.coming-soon { font-size: 12px; color: var(--text-faint); flex-shrink: 0; }
.ws-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ws-meta span { font-size: 12px; color: var(--text-muted); }
.ws-footer { display: flex; align-items: center; justify-content: space-between; }
.ws-price { font-size: 13px; color: var(--text-muted); }
.price-green { color: var(--green); font-weight: 500; }

.digital-note { background: var(--cream); border: 0.5px solid var(--border); border-radius: 8px; padding: 1.1rem 1.35rem; font-size: 13px; color: var(--text-muted); max-width: 520px; line-height: 1.65; }
.digital-note strong { color: var(--navy); font-weight: 500; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 500; color: #3B6D11; margin-bottom: 1rem; }
.about-name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 0.15rem; }
.about-role { font-size: 12px; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cred-list li { font-size: 12px; color: rgba(27,42,74,0.65); }
.about-copy p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.about-copy strong { color: var(--navy); }

/* ── FAQ ── */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-group-label { font-size: 12px; font-weight: 500; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.faq-list { border: 0.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; padding: 1.1rem 1.35rem; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--sans); }
.faq-q span:first-child { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.45; }
.faq-icon { font-size: 18px; color: var(--green); flex-shrink: 0; font-weight: 300; line-height: 1; transition: transform 0.2s; }
.faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.75; padding: 0 1.35rem 1.1rem; display: none; }
.faq-a.open { display: block; }

/* ── CONTACT / GET STARTED ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.intake-form { background: var(--cream); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--navy); margin-bottom: 5px; display: block; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 9px 11px; font-size: 13px; font-family: var(--sans); border: 0.5px solid rgba(27,42,74,0.2); border-radius: 6px; background: #fff; color: var(--navy); transition: border-color 0.15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 12px; color: var(--text-faint); margin-top: 0.85rem; text-align: center; line-height: 1.55; }

.notify-box { background: var(--cream); border: 0.5px solid var(--border); border-radius: 8px; padding: 1.1rem 1.25rem; margin-top: 1rem; }
.notify-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.6; }
.notify-box strong { color: var(--navy); font-weight: 500; }
.notify-row { display: flex; gap: 8px; }
.notify-row input { flex: 1; padding: 9px 11px; font-size: 13px; font-family: var(--sans); border: 0.5px solid rgba(27,42,74,0.2); border-radius: 6px; background: #fff; color: var(--navy); }
.notify-row input:focus { outline: none; border-color: var(--green); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #fff; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-logo { padding: 2rem 2rem 0; }
  .hero-swan { max-width: 320px; margin: 0 auto; }
  .hero-content { padding: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .workflow-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
  .ws-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .brand-story { padding: 3rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
