/* Recovered Articulation — main stylesheet */
:root {
  --navy: #0A2540;
  --navy-2: #143661;
  --navy-3: #1B4380;
  --gold: #D4A574;
  --gold-dark: #B5874E;
  --teal: #0F9B8E;
  --teal-dark: #0B7A70;
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --ink: #0E1A2B;
  --muted: #5C6B7E;
  --line: #E6DFD2;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(10,37,64,0.06);
  --shadow-md: 0 8px 24px rgba(10,37,64,0.08);
  --shadow-lg: 0 24px 60px rgba(10,37,64,0.12);
  --radius: 14px;
  --radius-lg: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; color: var(--navy); margin: 0 0 0.6em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--teal); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--teal-dark); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Nav */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
nav.top .row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: Georgia, serif; font-weight: 700; color: var(--navy); font-size: 1.25rem; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: grid; place-items: center; color: var(--gold);
  font-family: Georgia, serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: -0.03em;
  flex-shrink: 0;
}
nav.top ul { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
nav.top ul a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
nav.top ul a:hover { color: var(--teal); }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; transition: all 0.2s ease;
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
@media (max-width: 860px) { nav.top ul { display: none; } }

/* Hero */
.hero {
  position: relative; padding: 90px 0 110px;
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(212,165,116,0.18), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(15,155,142,0.12), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero .grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .hero .grid { grid-template-columns: 1fr; gap: 32px; } }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); padding: 6px 14px;
  border: 1px solid rgba(15,155,142,0.3); border-radius: 999px; background: rgba(15,155,142,0.06);
  margin-bottom: 22px;
}
.hero h1 strong { font-style: italic; color: var(--gold-dark); font-weight: 600; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero .assess-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px;
  background: var(--white); border: 1px solid var(--gold); border-radius: 999px;
  color: var(--navy); font-weight: 500; font-size: 0.92rem;
  cursor: pointer; transition: all 0.2s ease; margin-bottom: 28px;
}
.hero .assess-pill:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.hero .assess-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.4); } }
.trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 0.9rem; }
.trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 8px; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 1px; background: linear-gradient(135deg, var(--gold), transparent 40%, var(--teal));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.stat { padding: 18px; background: var(--cream-2); border-radius: 12px; }
.stat .num { font-family: Georgia, serif; font-size: 2.1rem; color: var(--navy); font-weight: 700; line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }
.wave-row { display: flex; gap: 4px; align-items: end; height: 60px; margin: 18px 0 8px; }
.wave-row span {
  flex: 1; background: linear-gradient(180deg, var(--teal), var(--navy));
  border-radius: 4px; opacity: 0.85;
  animation: wave 1.6s ease-in-out infinite;
}
.wave-row span:nth-child(2n) { animation-delay: 0.1s; }
.wave-row span:nth-child(3n) { animation-delay: 0.2s; }
.wave-row span:nth-child(5n) { animation-delay: 0.3s; }
@keyframes wave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.6); } }

/* Sections */
section { padding: 90px 0; }
section.dark { background: var(--navy); color: var(--cream); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--cream); }
section.dark p { color: rgba(250,247,242,0.78); }
section.cream-2 { background: var(--cream-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Logo strip */
.logo-strip {
  background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.logo-strip .row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.logo-strip .label { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.logo-strip .pills { display: flex; gap: 22px; flex-wrap: wrap; }
.logo-strip .pill {
  font-family: Georgia, serif; font-style: italic; color: var(--navy);
  font-size: 1.05rem; font-weight: 600; opacity: 0.7;
}

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid; place-items: center; color: var(--white);
  margin-bottom: 18px; font-weight: 700;
}
.icon-circle.teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.icon-circle.navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }

/* Methodology */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 920px) { .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .method-grid { grid-template-columns: 1fr; } }
.step {
  background: rgba(250,247,242,0.06); border: 1px solid rgba(212,165,116,0.25);
  border-radius: var(--radius); padding: 26px;
}
.step .num {
  font-family: Georgia, serif; font-size: 2.4rem; color: var(--gold);
  line-height: 1; margin-bottom: 14px; font-weight: 700;
}
.step h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--cream); border-color: transparent; transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 920px) { .price-card.featured { transform: none; } }
.price-card.featured h3, .price-card.featured .price { color: var(--cream); }
.price-card.featured p, .price-card.featured li { color: rgba(250,247,242,0.85); }
.price-card .ribbon {
  position: absolute; top: -14px; right: 26px;
  background: var(--gold); color: var(--navy); padding: 6px 14px;
  border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .price {
  font-family: Georgia, serif; font-size: 2.4rem; color: var(--navy);
  font-weight: 700; line-height: 1; margin: 12px 0 4px;
}
.price-card .per { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.price-card.featured .per { color: rgba(250,247,242,0.7); }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px; flex-grow: 1;
}
.price-card li {
  padding-left: 26px; position: relative; font-size: 0.95rem; color: var(--ink);
}
.price-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 700;
}
.price-card.featured li::before { color: var(--gold); }

/* Audiences */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .audience-grid { grid-template-columns: 1fr; } }
.audience {
  border-radius: var(--radius-lg); padding: 36px 30px; color: var(--white);
  min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.audience::before {
  content: ""; position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
  background-image: radial-gradient(circle at 20% 90%, rgba(255,255,255,0.4), transparent 50%);
}
.audience.b2c { background: linear-gradient(135deg, var(--navy), var(--teal-dark)); }
.audience.b2b { background: linear-gradient(135deg, #1B1F3B, var(--navy)); }
.audience.health { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.audience h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.audience p { color: rgba(255,255,255,0.85); margin-bottom: 18px; font-size: 0.95rem; }
.audience .tag { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-bottom: 14px; }
.audience a { color: var(--gold); font-weight: 600; }
.audience a::after { content: " →"; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
.big-stat { text-align: left; padding: 24px; }
.big-stat .n {
  font-family: Georgia, serif; font-size: 3.2rem; color: var(--navy);
  line-height: 1; font-weight: 700; margin-bottom: 8px;
}
.big-stat .l { color: var(--muted); font-size: 0.95rem; }
.big-stat .src { color: var(--gold-dark); font-size: 0.78rem; margin-top: 6px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.testi .quote {
  font-family: Georgia, serif; font-size: 1.05rem; color: var(--ink);
  line-height: 1.55; margin-bottom: 22px; position: relative; padding-top: 26px;
}
.testi .quote::before {
  content: "\201C"; position: absolute; top: -20px; left: -6px;
  font-family: Georgia, serif; font-size: 4.5rem; color: var(--gold); line-height: 1;
}
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--gold); display: grid; place-items: center;
  font-family: Georgia, serif; font-weight: 700;
  flex-shrink: 0;
}
.testi .name { font-weight: 600; color: var(--navy); }
.testi .role { color: var(--muted); font-size: 0.85rem; }

/* FAQ */
details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
details summary {
  cursor: pointer; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; color: var(--teal); font-size: 1.5rem; line-height: 1;
  transition: transform 0.2s ease; flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin-top: 14px; margin-bottom: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { color: rgba(250,247,242,0.85); }
.contact-info .item { margin-bottom: 22px; }
.contact-info .item .lbl {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
form.book {
  background: rgba(250,247,242,0.04); padding: 32px;
  border: 1px solid rgba(212,165,116,0.25); border-radius: var(--radius-lg);
}
form.book label { display: block; font-size: 0.85rem; color: var(--cream); margin: 14px 0 6px; font-weight: 500; }
form.book input, form.book select, form.book textarea {
  width: 100%; padding: 12px 14px; background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.18); border-radius: 10px;
  color: var(--cream); font: inherit; font-size: 0.95rem;
}
form.book input::placeholder, form.book textarea::placeholder { color: rgba(250,247,242,0.45); }
form.book input:focus, form.book select:focus, form.book textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(250,247,242,0.1);
}
form.book .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { form.book .form-row { grid-template-columns: 1fr; } }
form.book button { margin-top: 22px; width: 100%; }
.form-note { font-size: 0.85rem; color: rgba(250,247,242,0.6); margin-top: 12px; text-align: center; }

/* Footer */
footer {
  background: #061829; color: rgba(250,247,242,0.7); padding: 60px 0 30px;
}
footer .row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 860px) { footer .row { grid-template-columns: 1fr 1fr; } }
footer h4 { color: var(--cream); font-size: 0.95rem; font-family: -apple-system, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(250,247,242,0.7); }
footer a:hover { color: var(--gold); }
footer .legal {
  border-top: 1px solid rgba(250,247,242,0.1); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
}
footer .brand { color: var(--cream); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
