:root {
  --bg: #FAF7F2;
  --bg-warm: #F4EFE5;
  --card: #FFFFFF;
  --ink: #15212B;
  --ink-soft: #455764;
  --muted: #8B9CAB;
  --line: #E8E2D4;
  --line-soft: #EFEAE0;
  --primary: #1F5E68;
  --primary-dark: #164048;
  --primary-soft: #E6EFF0;
  --accent: #E07A5F;
  --accent-dark: #C75F46;
  --accent-soft: #FBE7DF;
  --error: #B83A2E;
  --error-soft: #FBE6E2;
  --success: #2F7A4F;
  --shadow-sm: 0 1px 2px rgba(21, 33, 43, 0.04);
  --shadow: 0 2px 4px rgba(21, 33, 43, 0.04), 0 12px 32px rgba(21, 33, 43, 0.06);
  --shadow-lg: 0 8px 32px rgba(21, 33, 43, 0.10);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 720px) {
  html, body { font-size: 18px; }
}

body { padding-bottom: 88px; }
@media (min-width: 720px) { body { padding-bottom: 0; } }

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-sub {
  display: none;
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 10px;
  margin-left: 4px;
}
@media (min-width: 560px) { .brand-sub { display: inline; } }
.topbar-cta {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  transition: background 0.15s, color 0.15s;
}
.topbar-cta:hover { background: var(--accent); color: #fff; }

/* Layout */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 56px 0; }
@media (min-width: 720px) { section { padding: 88px 0; } }

/* Typography */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
}
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 20px;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 8px;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}
@media (min-width: 720px) { .lede { font-size: 1.25rem; } }

/* Hero */
.hero {
  display: grid;
  gap: 36px;
  align-items: center;
  padding-top: 40px;
}
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    padding-top: 64px;
  }
  .hero-text { order: 1; }
  .hero-photo { order: 2; }
}

.hero-text { max-width: 600px; }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; align-items: center; gap: 20px; }
}

.btn-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.btn-link:hover { color: var(--primary-dark); border-color: var(--primary); }

/* Photo */
.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-frame {
  width: min(82vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent);
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.photo-frame::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  z-index: -1;
}
.photo-frame.no-photo::after { z-index: 1; }

.photo-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.photo-caption strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}
.photo-caption span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Trust strip */
.trust {
  display: grid;
  gap: 14px;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 720px) {
  .trust { grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 40px 0; }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.trust-item strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 1rem;
}
.trust-item span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* About / bio */
.about { max-width: 720px; }
.bio p { margin: 0 0 18px; font-size: 1.08rem; line-height: 1.65; }
.bio-pull {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 1.05rem !important;
}
.bio-sign {
  margin-top: 32px !important;
  font-size: 1.05rem !important;
  color: var(--ink-soft);
}
.bio-sign span {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  font-style: italic;
  margin-left: 4px;
}

/* How it works */
.how { max-width: 760px; }
.steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}
.steps li {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step-num {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}
.steps strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Form */
.form-section {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  margin: 0 auto;
  max-width: 640px;
  scroll-margin-top: 84px;
}
@media (min-width: 720px) {
  .form-section { padding: 56px 48px; }
}
.form-intro {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin: 18px 0 0;
}
.opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 94, 104, 0.12);
}
input[aria-invalid="true"] { border-color: var(--error); }
textarea { resize: vertical; min-height: 70px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; gap: 0; }
}

fieldset { border: none; padding: 0; margin: 22px 0 0; }
fieldset legend {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  margin-bottom: 10px;
}
fieldset.inline-fs { margin-top: 18px; }
fieldset.inline-fs legend { display: block; }
.grid-2 fieldset.inline-fs { margin-top: 0; }
input[type="date"] {
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  flex: 1 1 auto;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill span {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  transition: all 0.15s;
  white-space: nowrap;
}
.pill:hover span { border-color: var(--primary); color: var(--primary); }
.pill input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pill input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(31, 94, 104, 0.18);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 400;
  cursor: pointer;
}
.check input {
  margin-top: 2px;
  accent-color: var(--primary);
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.check span { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.consent input:checked ~ span { color: var(--ink); }

.notice-inline {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.40);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.7; cursor: wait; }
.btn-primary.big {
  padding: 18px 32px;
  font-size: 1.05rem;
  width: 100%;
  margin-top: 28px;
}
@media (min-width: 480px) {
  .hero-cta .btn-primary.big { width: auto; margin-top: 0; }
}

/* Success */
.success {
  text-align: center;
  padding: 30px 16px;
}
.success-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.success h2 { margin-top: 0; }
.success p { color: var(--ink-soft); }
.success .hint { font-size: 0.9rem; color: var(--muted); margin-top: 18px; }

/* Errors */
.error {
  color: var(--error);
  font-size: 0.95rem;
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--error-soft);
  border-radius: 10px;
  border: 1px solid #F1C7C0;
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.45);
  z-index: 30;
}
.mobile-cta:hover { background: var(--accent-dark); }
@media (min-width: 720px) {
  .mobile-cta { display: none; }
}

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

html { scroll-behavior: smooth; }
