/* Indigo & Ink — shared site styles
   Palette and type from the approved internal design study (index.html). */

:root {
  color-scheme: light;
  --paper: #f5f2ea;
  --ink: #182c3b;
  --ink-soft: #52616a;
  --blue: #284a61;
  --coral: #bd583f;
  --mustard: #d2a33e;
  --line: rgba(24, 44, 59, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --content: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, summary { font: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
img, svg { max-width: 100%; }

.wrap { width: min(var(--content), calc(100% - 64px)); margin-inline: auto; }
.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* ---------- header / footer ---------- */

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 234, .96);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}
.wordmark-name { display: block; font-family: var(--serif); font-size: 1.12rem; letter-spacing: -.035em; }
.wordmark-note { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .57rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(19px, 3vw, 42px); }
.desktop-nav a, .mobile-menu a {
  font-size: .78rem;
  font-weight: 650;
  text-decoration: none;
}
.desktop-nav a:hover, .mobile-menu a:hover { color: var(--coral); }
.desktop-nav a[aria-current="page"] { color: var(--coral); }
.header-cta {
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--mustard);
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .045em;
  text-decoration: none;
}
.header-cta:hover { background: #dcb14e; }
.mobile-menu { display: none; }

.footer { padding-block: 26px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer p { margin: 0; color: var(--ink-soft); font-size: .67rem; line-height: 1.6; }
.footer .wordmark-name { font-size: .95rem; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { color: var(--ink-soft); font-size: .67rem; text-decoration: none; }
.footer-nav a:hover { color: var(--coral); }

/* ---------- shared page sections ---------- */

.page-hero {
  border-bottom: 1px solid var(--line);
  padding-block: 64px 58px;
}
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.02;
  max-width: 720px;
}
.page-hero h1 em { color: var(--coral); font-style: normal; }
.page-hero .lede {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.offer-line { margin: 20px 0 0; font-size: .84rem; font-weight: 650; }

h2, h3, p { margin-top: 0; }
h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.06;
}
.section { padding-block: 88px; }
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-head p:last-child { color: var(--ink-soft); font-size: .95rem; line-height: 1.8; }

.section-tint { background: #e8e5dc; }
.section-panel { padding-block: 88px; }
.panel { padding: clamp(26px, 5vw, 54px); background: #efe4ca; }

.small-note { padding-left: 15px; border-left: 2px solid var(--mustard); color: #59676c; font-size: .8rem; line-height: 1.7; }

/* ---------- buttons ---------- */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  background: var(--coral);
  color: #fff;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .03em;
  text-decoration: none;
}
.button:hover { background: #a94c36; }
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}
.button-outline:hover { background: rgba(24, 44, 59, .06); }
.text-link { font-size: .78rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* ---------- hero band (CTA strip) ---------- */

.hero-band { background: var(--blue); color: #f7f3e9; }
.hero-band-inner { padding-block: 54px; }
.hero-band h2 { margin-bottom: 10px; max-width: 640px; }
.hero-band p { max-width: 560px; margin-bottom: 0; color: #d4dadd; font-size: .9rem; line-height: 1.75; }
.hero-band .button { margin-top: 26px; background: var(--mustard); color: var(--ink); }
.hero-band .button:hover { background: #dcb14e; }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { min-height: 245px; padding: 25px 34px 20px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 32px; }
.step:last-child { border-right: 0; }
.step-number { display: inline-block; margin-bottom: 29px; color: var(--coral); font-family: var(--serif); font-size: 1.2rem; }
.step h3 { margin-bottom: 11px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; letter-spacing: -.025em; }
.step p { max-width: 330px; margin-bottom: 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.75; }

/* ---------- details / FAQ ---------- */

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 9vw, 125px); }
.faq-intro { align-self: start; }
.faq-intro h2 { max-width: 360px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 21px 38px 21px 0; cursor: pointer; font-family: var(--serif); font-size: 1.16rem; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 19px; right: 3px; color: var(--coral); content: "+"; font-family: var(--sans); font-size: 1.3rem; }
details[open] summary::after { content: "−"; }
details > p, details > div { max-width: 690px; padding: 0 35px 18px 0; color: var(--ink-soft); font-size: .83rem; line-height: 1.75; }
details > div > p { padding: 0 0 10px; }

/* ---------- intake form ---------- */

.intake-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.intake-form { padding: clamp(24px, 4vw, 40px); background: #fbfaf6; border: 1px solid var(--line); border-radius: 2px; }
.intake-form .field { margin-bottom: 22px; }
.intake-form label { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; }
.intake-form .hint { margin: -4px 0 8px; color: var(--ink-soft); font-size: .72rem; line-height: 1.6; }
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="file"],
.intake-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .88rem;
}
.intake-form textarea { min-height: 96px; resize: vertical; }
.intake-form input:focus, .intake-form textarea:focus { outline: 3px solid var(--coral); outline-offset: 1px; border-color: var(--ink); }
.intake-form .consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: .76rem; line-height: 1.65; }
.intake-form .consent input { margin-top: 3px; }
.intake-form .required-note { color: var(--ink-soft); font-size: .68rem; margin: 0 0 18px; }
.intake-form .button { width: 100%; }

/* ---------- disclosure / policy blocks ---------- */

.disclosure {
  padding: 22px 26px;
  border-left: 3px solid var(--mustard);
  background: #fbfaf6;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.8;
}
.disclosure strong { color: var(--ink); }

.policy-doc { max-width: 760px; }
.policy-doc h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-block: 54px 18px; }
.policy-doc h2:first-of-type { margin-top: 44px; }
.policy-doc h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-block: 30px 10px; }
.policy-doc p, .policy-doc li { color: var(--ink-soft); font-size: .9rem; line-height: 1.8; }
.policy-doc ul { padding-left: 22px; }
.policy-doc .effective { color: var(--ink-soft); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- confirm / 404 ---------- */

.confirm-box { max-width: 620px; }
.confirm-box h1 { font-size: clamp(2.8rem, 5.4vw, 4.6rem); }
.confirm-list { margin: 30px 0 0; padding: 0; list-style: none; }
.confirm-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding-block: 16px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .86rem; line-height: 1.7; }
.confirm-list li strong { color: var(--ink); }
.confirm-list .tick { color: var(--coral); font-family: var(--serif); font-size: 1.1rem; }

/* ---------- notice bar ---------- */

.notice-bar {
  padding: 10px 20px;
  background: var(--ink);
  color: #fbf8f0;
  text-align: center;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.notice-bar strong { color: #f0c86e; }

/* ---------- home hero ---------- */

.home-hero {
  border-bottom: 1px solid var(--line);
  padding-block: 56px 62px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: 1.03fr .97fr;
    gap: clamp(44px, 7vw, 98px);
    padding-block: 64px 75px;
  }
}
.home-hero h1 {
  margin: 18px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}
.home-hero h1 em { color: var(--coral); font-style: normal; }
.home-hero .lede { max-width: 475px; margin-bottom: 26px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; }

.confidence { background: var(--blue); color: #f7f3e9; }
.confidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.confidence-item { min-height: 115px; display: flex; align-items: center; gap: 16px; padding: 21px 25px; border-right: 1px solid rgba(255, 255, 255, .2); }
.confidence-item:first-child { padding-left: 0; }
.confidence-item:last-child { border: 0; }
.confidence-icon { flex: 0 0 34px; color: #f0c86e; font-family: var(--serif); font-size: 1.7rem; text-align: center; }
.confidence-item strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.03rem; font-weight: 400; }
.confidence-item span { color: #d4dadd; font-size: .7rem; line-height: 1.55; }

.art-stage { position: relative; width: min(100%, 510px); justify-self: center; padding: 13px 16px 25px; }
.art-stage::before {
  position: absolute;
  inset: 2% 5% 7% 12%;
  border-radius: 50%;
  background: #e9e2d2;
  content: "";
}
.art-stage::after {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(24, 44, 59, .18);
  border-radius: 50%;
  content: "";
}
.art-frame {
  position: relative;
  z-index: 1;
  width: min(82%, 350px);
  margin: auto;
  padding: 15px;
  background: #fbfaf6;
  box-shadow: 0 25px 55px rgba(38, 48, 50, .15), 0 3px 10px rgba(38, 48, 50, .08);
  transform: rotate(1.7deg);
}
.art-frame svg { display: block; width: 100%; height: auto; }
.art-caption {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: 3%;
  max-width: 178px;
  padding: 13px 16px;
  background: var(--paper);
  box-shadow: 0 6px 22px rgba(24, 44, 59, .09);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .78rem;
  font-style: italic;
  line-height: 1.45;
  transform: rotate(-2deg);
}
.art-caption b { display: block; margin-bottom: 4px; color: var(--coral); font-family: var(--sans); font-size: .57rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .wrap { width: min(var(--content), calc(100% - 44px)); }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .71rem; }
  .intake-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 1rem; }
  .wrap { width: min(var(--content), calc(100% - 38px)); }
  .header-inner { min-height: 70px; gap: 10px; }
  .mark { width: 34px; height: 34px; }
  .wordmark-name { font-size: 1rem; }
  .wordmark-note { font-size: .5rem; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { padding: 12px 0 12px 12px; font-family: var(--sans); font-size: .73rem; font-weight: 700; list-style: none; }
  .mobile-menu summary::after { display: none; }
  .mobile-menu[open] .mobile-links {
    position: absolute;
    top: 43px;
    right: 0;
    width: 190px;
    display: grid;
    gap: 0;
    padding: 8px 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 12px 24px rgba(24, 44, 59, .12);
  }
  .mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-child { border-bottom: 0; }
  .page-hero { padding-block: 46px 42px; }
  .section, .section-panel { padding-block: 64px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: 0; padding: 21px 0 25px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 15px; }
  .step h3 { margin-bottom: 7px; font-size: 1.4rem; }
  .step p { font-size: .81rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-intro h2 { max-width: 420px; margin-bottom: 10px; }
  summary { padding-block: 18px; font-size: 1.06rem; }
  details > p, details > div { font-size: .8rem; }
  .home-hero { padding-block: 48px 52px; }
  .home-hero h1 { font-size: clamp(3.3rem, 13vw, 5rem); }
  .confidence { padding-block: 8px; }
  .confidence-grid { grid-template-columns: 1fr; }
  .confidence-item, .confidence-item:first-child { min-height: 77px; padding: 14px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .confidence-item:last-child { border-bottom: 0; }
  .confidence-item strong { font-size: .97rem; }
  .art-stage { width: min(100%, 420px); padding: 5px 13px 20px; }
  .art-frame { width: min(73%, 290px); padding: 11px; }
  .art-caption { right: 0; bottom: 2%; max-width: 145px; padding: 10px 12px; font-size: .7rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}
