:root {
  --cream: #fffcf9;
  --paper: #ffffff;
  --sand: #f8f1ea;
  --plum: #3a2233;
  --ink: #2c1f2a;
  --soft: #7b6a76;
  --rose: #e0708f;
  --rose-deep: #c85478;
  --rose-soft: #fbe4ea;
  --rose-mid: #f3bccb;
  --sage: #dfe9e0;
  --sage-ink: #40604a;
  --line: #efe3e8;
  --radius: 14px;
  --max-width: 1120px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -.015em; }
a { color: var(--rose-deep); }
.rose { color: var(--rose); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 252, 249, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 600;
  color: var(--plum); text-decoration: none;
}
.logo-mark { display: flex; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--soft); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--plum); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose); color: #fff;
  border: 0; border-radius: 10px;
  padding: 13px 22px;
  font: inherit; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(224, 112, 143, .28);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { background: var(--rose-deep); transform: translateY(-1px); }
.btn:disabled { opacity: .6; cursor: default; transform: none; }
.btn-small { padding: 9px 16px; font-size: 14px; box-shadow: none; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--max-width); margin: 0 auto;
  padding: 68px 24px 54px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rose); margin: 0 0 14px;
}
.hero h1 { font-size: 52px; line-height: 1.06; margin: 0 0 18px; color: var(--plum); }
.h1-turn { display: block; }
.hero-sub { font-size: 18px; line-height: 1.6; color: #5d4b57; margin: 0 0 26px; max-width: 34em; }

.apply-form { display: flex; gap: 8px; flex-wrap: wrap; }
.apply-form input[type="text"], .apply-form input[type="email"] {
  flex: 1 1 180px; min-width: 0;
  padding: 13px 15px; font: inherit; font-size: 15px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); color: var(--ink);
}
.apply-form input::placeholder { color: #b4a2ad; }
.apply-form input:focus { outline: 2px solid var(--rose-mid); border-color: var(--rose); }
.apply-form.wide { max-width: 620px; margin: 24px 0 0; }
.field-website { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 13.5px; color: var(--soft); margin: 12px 0 0; }
.form-note.is-success { color: var(--sage-ink); font-weight: 500; }
.form-note.is-error { color: #c0392b; }

.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 26px 0 0; }
.trust li { font-size: 13.5px; color: var(--soft); display: flex; align-items: center; gap: 7px; }
.trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rose-mid); }

/* ---------- hero mock ---------- */
.hero-art { display: flex; justify-content: center; }
.mock { position: relative; width: 100%; max-width: 400px; height: 360px; }
.mock-cover, .mock-page {
  position: absolute; border-radius: 10px;
  box-shadow: 0 18px 40px rgba(90, 50, 70, .16);
}
.mock-cover {
  left: 0; top: 26px; width: 196px; height: 272px;
  background: linear-gradient(160deg, #fdf1f5, #f6dde8);
  padding: 22px 20px; display: flex; flex-direction: column;
  border: 1px solid #f2d8e2;
}
.mock-brand {
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rose);
}
.mock-title {
  font-family: 'Fraunces', Georgia, serif; font-size: 25px; line-height: 1.12;
  color: var(--plum); margin-top: 18px; font-weight: 600;
}
.mock-chip {
  margin-top: auto; align-self: flex-start;
  background: #fff; color: var(--rose); border-radius: 20px;
  font-size: 8.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px;
}
.mock-page {
  right: 0; top: 0; width: 210px; height: 300px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 22px 20px; display: flex; flex-direction: column;
}
.mock-eyebrow { font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
.mock-h { font-family: 'Fraunces', Georgia, serif; font-size: 19px; line-height: 1.15; color: var(--plum); margin: 8px 0 14px; font-weight: 600; }
.line { display: block; height: 6px; border-radius: 3px; background: #f0e7ec; margin-bottom: 7px; }
.line.w90 { width: 90%; } .line.w85 { width: 85%; } .line.w80 { width: 80%; }
.line.w75 { width: 75%; } .line.w60 { width: 60%; }
.mock-fig { background: var(--sand); border-radius: 7px; padding: 10px; margin: 8px 0 12px; }

/* ---------- band ---------- */
.band { background: var(--plum); color: #f6e9ef; }
.band-inner {
  max-width: 860px; margin: 0 auto; padding: 44px 24px; text-align: center;
}
.band p {
  font-family: 'Fraunces', Georgia, serif; font-size: 23px; line-height: 1.45;
  margin: 0; font-weight: 300;
}

/* ---------- sections ---------- */
.section { max-width: var(--max-width); margin: 0 auto; padding: 70px 24px; }
.section.alt { max-width: none; background: var(--sand); }
.section.alt > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section.narrow { max-width: 780px; }
.section-title { font-size: 34px; color: var(--plum); margin: 0 0 10px; }
.section-sub { font-size: 17px; color: var(--soft); margin: 0 0 36px; max-width: 44em; }
.section-sub.left { margin-bottom: 30px; }
.page-h1 { font-size: 42px; color: var(--plum); margin: 0 0 14px; }

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 40px; }
.steps.compact { grid-template-columns: 1fr; gap: 18px; }
.steps li { position: relative; padding-left: 52px; }
.step-n {
  position: absolute; left: 0; top: 2px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-soft); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.steps h3 { font-size: 19px; margin: 4px 0 6px; color: var(--plum); }
.steps p { margin: 0; color: #5d4b57; font-size: 15px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.card h3 { font-size: 18px; margin: 0 0 8px; color: var(--plum); }
.card p { margin: 0; font-size: 14.5px; color: #5d4b57; }

/* ---------- fit ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-col { border-radius: var(--radius); padding: 26px 26px 22px; }
.fit-col.yes { background: var(--sage); }
.fit-col.no { background: #f6eef0; }
.fit-col h3 { font-size: 19px; margin: 0 0 14px; color: var(--plum); }
.fit-col ul { margin: 0; padding-left: 20px; }
.fit-col li { margin-bottom: 9px; font-size: 15px; color: #4e3f4a; }
.fit-col.yes li::marker { color: var(--sage-ink); }
.fit-col.no li::marker { color: var(--rose); }

/* ---------- split / terms ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.section.alt.split { padding-inline: max(24px, calc((100% - var(--max-width)) / 2)); }
/* Both columns fill their tracks, so the outer margins stay even. */
.section.alt.split > * { width: 100%; max-width: none; margin-inline: 0; }
.split > * { max-width: none; }
.split-copy p { color: #5d4b57; font-size: 16px; margin: 0 0 16px; max-width: 34em; }
.split-copy .btn { margin-top: 10px; }
.terms { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.terms > div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.terms > div:last-child { border-bottom: 0; }
.terms dt { color: var(--soft); font-size: 14.5px; }
.terms dd { margin: 0; font-weight: 600; color: var(--plum); font-size: 14.5px; text-align: right; }
.terms-band { display: flex; flex-wrap: wrap; gap: 28px; background: var(--sand); border-radius: var(--radius); padding: 20px 24px; margin: 28px 0; }
.terms-band dt { color: var(--soft); font-size: 13px; }
.terms-band dd { margin: 2px 0 0; font-weight: 600; color: var(--plum); }

/* ---------- faq ---------- */
.faq { max-width: none; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 600; color: var(--plum);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 12px 0 2px; color: #5d4b57; font-size: 15.5px; max-width: 46em; }

/* ---------- apply band ---------- */
.apply-band { text-align: left; }
.apply-band .form-note { max-width: 40em; margin: 14px 0 0; }

/* ---------- footer ---------- */
.footer { background: var(--plum); color: #e6d6de; margin-top: 20px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 40px 24px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.foot-logo { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 600; margin: 0 0 8px; color: #fff; }
.foot-note { margin: 0; font-size: 14px; max-width: 40em; color: #c9b3be; }
.foot-contact { display: flex; flex-direction: column; gap: 9px; font-size: 14px; text-align: right; }
.foot-mail { display: inline-block; margin-top: 14px; font-size: 14px; color: var(--rose-mid); text-decoration: none; }
.foot-mail:hover { color: #fff; }
.foot-contact .foot-quiet { margin-top: 12px; }
.foot-contact a { color: var(--rose-mid); text-decoration: none; }
.foot-contact a:hover { color: #fff; }
.foot-label { color: #9c8391; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.foot-social { display: inline-flex; align-items: center; gap: 7px; justify-content: flex-end; }
.foot-social svg { flex: none; }
.foot-quiet { opacity: .72; font-size: 13px; }
.foot-contact span { color: #9c8391; font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 46px; gap: 36px; }
  .hero h1 { font-size: 38px; }
  .hero-art { order: -1; }
  .mock { height: 300px; max-width: 340px; }
  .mock-cover { width: 168px; height: 232px; }
  .mock-page { width: 180px; height: 256px; }
  .steps, .cards, .fit-grid, .split { grid-template-columns: 1fr; }
  .cards { gap: 14px; }
  .nav-links { display: none; }
  .section { padding: 48px 20px; }
  .section-title { font-size: 27px; }
  .band p { font-size: 19px; }
  .footer-inner { flex-direction: column; }
  .foot-contact { text-align: left; }
  .foot-social { justify-content: flex-start; }
}
