@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap');

:root {
  --ivory: #f5f0e8;
  --ivory-2: #fbf8f3;
  --navy: #202c35;
  --navy-2: #2c3942;
  --taupe: #cdbdae;
  --sage: #788477;
  --sage-soft: #e4e8e1;
  --gold: #b49a6c;
  --ink: #292725;
  --muted: #6f6a64;
  --white: #fff;
  --line: rgba(32,44,53,.13);
  --shadow: 0 28px 70px rgba(32,44,53,.10);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory-2);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid rgba(120,132,119,.72);
  outline-offset: 3px;
}


.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 999;
  transform: translateY(-160%); background: var(--navy); color: white;
  padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem;
  font-weight: 600; color: var(--sage);
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.90);
  border-bottom: 1px solid rgba(32,44,53,.06);
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.55rem; letter-spacing: .025em; color: var(--navy); font-weight: 600; }
.brand span { margin-top: 5px; color: var(--sage); font-size: .61rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .88rem; }
.nav-links a:not(.btn):hover { color: var(--sage); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; width: 22px; background: var(--navy); margin: 5px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  font-size: .88rem; font-weight: 600; transition: .22s ease; cursor: pointer;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.5); color: var(--navy); }
.btn-secondary:hover { border-color: rgba(32,44,53,.3); }
.btn-light { background: var(--ivory); color: var(--navy); }
.btn-light:hover { background: white; }

.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 78px); display: flex; align-items: center;
  background: linear-gradient(100deg, var(--ivory-2) 0%, var(--ivory) 62%, #e9e3da 100%);
}
.hero::before {
  content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(180,154,108,.25);
  border-radius: 50%; right: -170px; top: -130px;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 74px; padding: 76px 0 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin: 20px 0 22px; max-width: 760px; color: var(--navy);
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(3.45rem, 6.5vw, 6.8rem);
  line-height: .96; font-weight: 500; letter-spacing: -.035em;
}
.hero h1 em { color: var(--sage); font-weight: 500; }
.hero .lead { max-width: 650px; margin: 0 0 30px; color: #5b5a57; font-size: clamp(1.02rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 30px; display: flex; align-items: center; gap: 11px; font-size: .82rem; color: var(--muted); }
.hero-note::before { content: '✦'; color: var(--gold); }
.hero-visual { position: relative; }
.hero-frame {
  position: relative; overflow: hidden; width: min(100%, 470px); margin-left: auto;
  aspect-ratio: 4 / 5.25; border-radius: 240px 240px 28px 28px; box-shadow: var(--shadow); background: #d6d0c6;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 49% 36%; }
.hero-card {
  position: absolute; left: -38px; bottom: 36px; width: 230px;
  padding: 20px 22px; border-radius: 18px; background: rgba(245,240,232,.93); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.65); box-shadow: 0 20px 45px rgba(32,44,53,.13);
}
.hero-card strong { display: block; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 600; line-height: 1.15; }
.hero-card span { display: block; margin-top: 6px; color: var(--muted); font-size: .76rem; }

.credential-strip { background: var(--navy); color: white; }
.credential-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 38px; padding: 28px 0; }
.credential-label { color: #d8c8a9; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 600; }
.credential-text { color: rgba(255,255,255,.82); font-size: .9rem; }
.credential-text strong { color: white; font-weight: 500; }

.section { padding: 110px 0; }
.section-soft { background: var(--ivory); }
.section-navy { background: var(--navy); color: white; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2, .about-copy h2, .contact-copy h2 {
  margin: 16px 0 16px; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1.02; font-weight: 500; letter-spacing: -.025em;
}
.section-head p, .about-copy p { color: var(--muted); font-size: 1rem; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 88px; }
.about-image-wrap { position: relative; }
.about-image { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; background: #ddd5ca; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.about-image-wrap::after {
  content: ''; position: absolute; z-index: -1; width: 64%; height: 42%; background: var(--sage-soft);
  right: -22px; bottom: -22px; border-radius: 28px;
}
.about-copy .signature-line { margin-top: 28px; padding-top: 23px; border-top: 1px solid var(--line); display: grid; gap: 7px; }
.about-copy .signature-line strong { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--navy); font-size: 1.25rem; }
.about-copy .signature-line span { font-size: .8rem; color: var(--muted); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card {
  min-height: 230px; padding: 28px; background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: .22s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(32,44,53,.07); background: rgba(255,255,255,.82); }
.card-index { color: var(--gold); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; }
.audience-card h3 { margin: 36px 0 10px; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.55rem; line-height: 1.08; font-weight: 600; }
.audience-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; }
.process-sticky { position: sticky; top: 118px; }
.process-sticky h2 { color: white; margin: 18px 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; font-weight: 500; }
.process-sticky p { color: rgba(255,255,255,.64); max-width: 470px; }
.process-list { border-top: 1px solid rgba(255,255,255,.14); }
.process-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.process-item span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(216,200,169,.5); color: #d8c8a9; font-size: .8rem; }
.process-item h3 { margin: 0 0 6px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.45rem; font-weight: 600; }
.process-item p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.theme-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 62px; border-top: 1px solid var(--line); }
.theme-item { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.theme-item::before { content: '—'; color: var(--gold); }
.theme-item strong { color: var(--navy); display: block; margin-bottom: 4px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 600; }
.theme-item span { color: var(--muted); font-size: .86rem; }

.quote-section { position: relative; overflow: hidden; padding: 128px 0; background: var(--sage); color: white; }
.quote-section::after { content: '“'; position: absolute; right: 5%; top: -55px; font: 500 18rem/1 'Cormorant Garamond', Georgia, serif; color: rgba(255,255,255,.08); }
.quote-inner { max-width: 890px; }
.quote-inner blockquote { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.65rem, 5.7vw, 5rem); line-height: 1.02; font-weight: 500; }
.quote-inner p { margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: .9rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; }
.faq-intro h2 { margin: 16px 0; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.6rem, 4.8vw, 4.3rem); font-weight: 500; line-height: 1; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; cursor: pointer; color: var(--navy); font-weight: 500; }
.faq-question span:last-child { font-size: 1.2rem; color: var(--gold); transition: transform .2s ease; }
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 40px 22px 0; color: var(--muted); font-size: .91rem; }

.contact { background: #e9e2d8; }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: start; }
.contact-copy h2 { max-width: 540px; }
.contact-copy p { max-width: 520px; color: var(--muted); }
.contact-links { display: grid; gap: 10px; margin-top: 30px; }
.contact-links a { width: max-content; border-bottom: 1px solid rgba(32,44,53,.25); font-size: .9rem; }
.contact-form { padding: 32px; border-radius: 24px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 18px 55px rgba(32,44,53,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field label { font-size: .76rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea { width: 100%; border: 1px solid rgba(32,44,53,.14); border-radius: 13px; background: rgba(255,255,255,.75); padding: 13px 14px; outline: none; color: var(--ink); }
.field input:focus, .field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(120,132,119,.12); }
.field textarea { resize: vertical; min-height: 118px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .72rem; }

.site-footer { background: #18232b; color: white; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 40px; padding-bottom: 40px; }
.footer-brand strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.footer-brand p { max-width: 380px; margin: 12px 0 0; color: rgba(255,255,255,.58); font-size: .84rem; }
.footer-col strong { display: block; margin-bottom: 12px; color: #d8c8a9; text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: .84rem; margin: 7px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.44); font-size: .72rem; }

.legal-page { min-height: 72vh; padding: 90px 0 110px; }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { margin: 14px 0 30px; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; font-weight: 500; }
.legal-wrap h2 { margin: 38px 0 10px; color: var(--navy); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.7rem; }
.legal-wrap p, .legal-wrap li { color: var(--muted); }
.not-found { display: grid; place-items: center; text-align: center; min-height: 70vh; padding: 60px 20px; }
.not-found h1 { font: 500 clamp(4rem, 10vw, 8rem)/1 'Cormorant Garamond', Georgia, serif; color: var(--navy); margin: 0; }
.not-found p { color: var(--muted); max-width: 460px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  :root { --container: min(100% - 32px, 760px); }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 16px; right: 16px; top: 70px; padding: 22px;
    border-radius: 18px; background: rgba(251,248,243,.98); box-shadow: var(--shadow); border: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 14px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; padding: 66px 0 76px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(100%, 560px); margin: 0 auto; }
  .hero-frame { margin: 0 auto; }
  .hero-card { left: 0; }
  .credential-grid { grid-template-columns: 1fr; gap: 8px; }
  .about-grid, .contact-grid { gap: 50px; }
  .about-image-wrap { width: min(100%, 520px); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .process-sticky { position: static; }
  .faq-grid { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 26px); }
  .navbar { min-height: 70px; }
  .brand strong { font-size: 1.4rem; }
  .hero-grid { padding: 52px 0 64px; gap: 40px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-frame { width: 100%; border-radius: 190px 190px 24px 24px; }
  .hero-card { position: relative; width: calc(100% - 30px); left: 15px; bottom: auto; margin-top: -34px; }
  .section { padding: 78px 0; }
  .credential-grid { padding: 22px 0; }
  .audience-grid, .theme-list, .form-row { grid-template-columns: 1fr; }
  .theme-list { gap: 0; }
  .audience-card { min-height: auto; }
  .audience-card h3 { margin-top: 24px; }
  .quote-section { padding: 90px 0; }
  .quote-inner blockquote { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
