/* ============================================
   Anne Alms Consulting — Design System
   Editorial, premium, trust-based. No cards,
   no shadows, no gradients — thin rules and
   generous space carry the structure instead.
   ============================================ */

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

:root {
  --ivory: #F7F2E9;
  --sand: #E8DFCC;
  --navy: #1B2B44;
  --bronze: #B0763F;
  --ink: #3E3A34;

  --serif: 'Lora', Georgia, serif;
  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --rule: 1px solid rgba(27, 43, 68, 0.14);
  --rule-light: 1px solid rgba(247, 242, 233, 0.22);

  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.12; font-weight: 500; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); line-height: 1.22; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1.1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--bronze); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--bronze);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--bronze);
  color: var(--ivory);
}
.btn-primary:hover { background: #96602f; }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--ivory); }
.btn-on-navy {
  background: var(--ivory);
  color: var(--navy);
}
.btn-on-navy:hover { background: var(--sand); }
.btn-ghost {
  background: transparent;
  color: var(--bronze);
  border: none;
  padding: 0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 233, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wordmark span { color: var(--bronze); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
}
nav.main-nav a:hover { color: var(--bronze); text-decoration: none; }
nav.main-nav a.active { color: var(--navy); border-bottom: 1px solid var(--bronze); padding-bottom: 3px; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; }
  nav.main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
    border-top: var(--rule);
    margin-top: 14px;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  nav.main-nav.open ~ .header-cta,
  nav.main-nav.open .mobile-cta { display: inline-block; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
section.on-sand { background: var(--sand); }
section.on-navy { background: var(--navy); color: var(--ivory); }
section.on-navy h1, section.on-navy h2, section.on-navy h3 { color: var(--ivory); }
section.on-navy p { color: rgba(247,242,233,0.82); }
section.on-navy .eyebrow { color: #D9AB74; }
section.on-navy .eyebrow::before { background: #D9AB74; }

.hr {
  border: none;
  border-top: var(--rule);
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-copy h1 { margin-bottom: 0.45em; }
.hero-copy p.subhead {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.stat-panel {
  background: var(--navy);
  color: var(--ivory);
  padding: 52px 40px;
  text-align: left;
}
.stat-panel .stat-number {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.2em;
}
.stat-panel .stat-label {
  font-size: 0.95rem;
  color: #D9AB74;
  margin-bottom: 1.4em;
}
.stat-panel .stat-list { list-style: none; margin: 0; padding: 0; }
.stat-panel .stat-list li {
  padding: 12px 0;
  border-top: var(--rule-light);
  font-size: 0.95rem;
  color: rgba(247,242,233,0.85);
}
.stat-panel .stat-list li:first-child { border-top: none; padding-top: 0; }

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--sand);
  padding: 22px 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.proof-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--navy);
  text-align: center;
}
.proof-strip .divider { color: var(--bronze); font-style: normal; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}
.two-col.reverse { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 860px) { .two-col.reverse { grid-template-columns: 1fr; } }

/* ---------- Dimension list (sequential — numbering legitimate) ---------- */
.dim-list { list-style: none; margin: 32px 0 0; padding: 0; }
.dim-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: var(--rule);
}
.dim-list li:last-child { border-bottom: var(--rule); }
.dim-list .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 1.1rem;
}
.dim-list h4 { margin-bottom: 0.2em; color: var(--navy); font-size: 1.05rem; }
.dim-list p { margin: 0; font-size: 0.96rem; color: var(--ink); }

/* ---------- Simple list (who this is for) ---------- */
.plain-list { list-style: none; margin: 28px 0 0; padding: 0; }
.plain-list li {
  padding: 18px 0;
  border-top: var(--rule);
  font-size: 1.04rem;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}
.plain-list li:last-child { border-bottom: var(--rule); }
.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 27px;
  width: 8px;
  height: 1px;
  background: var(--bronze);
}

/* ---------- Pull quote ---------- */
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  line-height: 1.5;
  max-width: 42ch;
  border-left: 2px solid var(--bronze);
  padding-left: 28px;
  margin: 1.4em 0;
}

/* ---------- Offer columns ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
  margin-top: 40px;
}
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
}
.offer-col {
  padding: 40px 32px;
  border-left: var(--rule);
}
.offer-col:first-child { border-left: none; }
@media (max-width: 900px) {
  .offer-col { border-left: none; border-top: var(--rule); }
  .offer-col:first-child { border-top: none; }
}
.offer-col .price {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--navy);
  margin: 0.3em 0 0.15em;
}
.offer-col .best-for {
  font-size: 0.9rem;
  color: var(--bronze);
  margin: 1.2em 0 1.4em;
}
.offer-col .best-for strong { color: var(--navy); }
.offer-note {
  font-size: 0.88rem;
  color: #7a7568;
  font-style: italic;
  margin-top: 1em;
}

/* ---------- Forms ---------- */
form.stack { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid rgba(27,43,68,0.28);
  background: var(--ivory);
  color: var(--ink);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
  border-color: var(--bronze);
}
.field-hint { font-size: 0.85rem; color: #7a7568; }
.form-status { font-size: 0.95rem; margin-top: 14px; }
.form-status.success { color: #3f6b3f; }
.form-status.error { color: #a13d3d; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: rgba(247,242,233,0.82);
  padding: 56px 0 34px;
}
footer.site-footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: var(--rule-light);
}
footer.site-footer .foot-wordmark {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory);
}
footer.site-footer .tagline { font-size: 0.94rem; max-width: 40ch; margin-top: 8px; }
footer.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer.site-footer nav a { color: rgba(247,242,233,0.82); font-size: 0.94rem; }
footer.site-footer nav a:hover { color: var(--ivory); }
footer.site-footer .foot-bottom {
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(247,242,233,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 26ch; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 48ch; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 8px; }

/* ---------- Alt paths (contact) ---------- */
.alt-paths { list-style: none; margin: 24px 0 0; padding: 0; }
.alt-paths li {
  padding: 16px 0;
  border-top: var(--rule);
  font-size: 1rem;
}
.alt-paths li:last-child { border-bottom: var(--rule); }
.alt-paths strong { color: var(--navy); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.88rem; color: #7a7568; }

/* ---------- Portrait ---------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.portrait-frame {
  position: relative;
  border: 1px solid var(--bronze);
  padding: 14px;
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0%);
}
.portrait-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--bronze);
  margin-top: 14px;
}

/* ---------- Assessment ---------- */
.assess-shell { max-width: 680px; margin: 0 auto; }
.progress-track {
  height: 3px;
  background: var(--sand);
  margin-bottom: 40px;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--bronze);
  transition: width 0.3s ease;
  width: 0%;
}
.progress-label {
  font-size: 0.85rem;
  color: var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 10px;
}
.dim-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--sand);
  padding: 5px 12px;
  margin-bottom: 18px;
}
.q-prompt { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); margin-bottom: 28px; line-height: 1.4; }
.options { display: flex; flex-direction: column; gap: 0; border-top: var(--rule); }
.option {
  display: block;
  padding: 18px 4px;
  border-bottom: var(--rule);
  cursor: pointer;
  font-size: 1rem;
}
.option:hover { background: rgba(176,118,63,0.06); }
.option input { margin-right: 14px; accent-color: var(--bronze); }
.option.selected { background: rgba(176,118,63,0.1); }
.assess-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.assess-actions .btn:disabled { opacity: 0.4; cursor: not-allowed; }
.link-back { font-size: 0.92rem; color: var(--ink); }

.gate-box { max-width: 480px; margin: 0 auto; text-align: center; }

.result-bars { margin: 36px 0; }
.bar-row { margin-bottom: 22px; }
.bar-row .bar-label { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 8px; color: var(--navy); font-weight: 600; }
.bar-track { height: 10px; background: var(--sand); }
.bar-fill { height: 100%; background: var(--bronze); }

.constraint-box {
  background: var(--sand);
  padding: 36px 32px;
  margin: 32px 0;
}
.constraint-box h3 { color: var(--navy); }
.constraint-box .kicker { font-size: 0.85rem; color: var(--bronze); font-weight: 600; margin-bottom: 6px; }

#assessment-app { min-height: 420px; }
.hidden { display: none !important; }

.book-band { background: var(--navy); color: var(--ivory); padding: 44px 36px; text-align: center; margin-top: 36px; }
.book-band h3 { color: var(--ivory); }
.book-band p { color: rgba(247,242,233,0.82); margin-left: auto; margin-right: auto; }
