@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --rail-bg: #0e1a17;
  --rail-w: 310px;
  --cream: #fdf8f2;
  --blush: #f8efe5;
  --card-bg: #ffffff;
  --ink: #111a17;
  --muted: #637068;
  --soft: #a0ada8;
  --coral: #c4614a;
  --coral2: #d97b62;
  --coral-light: #fdf0ec;
  --sage: #2d5946;
  --sage2: #3d7360;
  --sage-light: #e8f3ee;
  --line: #e9e2d8;
  --line2: #ede8df;
  --radius: 20px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── RAIL ── */
.rail {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--rail-w);
  background: var(--rail-bg);
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  z-index: 200;
  overflow-y: auto;
}

/* ── LOGO ── */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  text-decoration: none;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.brand-emblem {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  position: relative;
}

.brand-emblem svg {
  width: 100%;
  height: 100%;
}

.brand-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
  display: block;
}

.brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral2);
  margin-top: 5px;
  display: block;
}

.brand-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3px;
}

/* ── RAIL NAV ── */
.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.rail-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.rail-nav a svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0.7;
}

.rail-nav a:hover, .rail-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.rail-nav a:hover svg, .rail-nav a.active svg { opacity: 1; }

.rail-nav .rail-cta {
  background: linear-gradient(135deg, var(--coral), var(--coral2));
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  border-radius: 10px;
  padding: 13px 15px;
  transition: opacity 0.2s, transform 0.2s;
}

.rail-nav .rail-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.rail-nav .rail-cta svg { opacity: 1; }

.rail-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.rail-contact p {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  margin-bottom: 4px;
}

.rail-contact a {
  color: var(--coral2);
  font-size: 13px;
  font-weight: 600;
}

/* ── LAYOUT SHELL ── */
.shell {
  margin-left: var(--rail-w);
  min-height: 100vh;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--cream);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 64px;
  position: relative;
  z-index: 1;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 15%;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,97,74,0.08), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--coral);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 16%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  background: rgba(14,26,23,0.88);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--coral), var(--coral2));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.hero-badge strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}

.hero-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45,89,70,0.3);
}

.btn-primary:hover {
  background: var(--sage2);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(45,89,70,0.38);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(196,97,74,0.32);
}

.btn-coral:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(196,97,74,0.42);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--line2);
}

.trust-item:last-child { border-right: none; }

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.trust-item p {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.trust-item p span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 11.5px;
}

/* ── SECTIONS ── */
.section { padding: 90px 64px; }
.section-sm { padding: 60px 64px; }
.section-blush { background: var(--blush); }
.section-white { background: #fff; }
.section-dark { background: var(--rail-bg); color: #fff; }
.section-sage { background: var(--sage); color: #fff; }

.section-header {
  margin-bottom: 52px;
}

.section-header.center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

h2.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

h2.section-title.light { color: #fff; }
h2.section-title em { font-style: italic; color: var(--sage); }
h2.section-title.light em { color: var(--coral2); }

.section-lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

.section-lead.light { color: rgba(255,255,255,0.6); }

/* ── BAND (3-step process) ── */
.band {
  background: var(--rail-bg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.band-item {
  padding: 52px 44px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.band-item:last-child { border-right: none; }

.band-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 28px;
}

.band-step {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.band-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.28;
}

.band-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-img {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(17,26,23,0.18);
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(14,26,23,0.82);
  backdrop-filter: blur(8px);
  color: var(--coral2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 30px;
  transition: box-shadow 0.22s, transform 0.22s;
}

.card:hover {
  box-shadow: 0 20px 50px rgba(17,26,23,0.1);
  transform: translateY(-3px);
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 14px;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.28;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--coral-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2;
}

.card-icon.sage { background: var(--sage-light); }
.card-icon.sage svg { stroke: var(--sage); }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--coral-light);
  position: absolute;
  top: 16px;
  left: 24px;
  font-weight: 700;
}

.testimonial-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 28px;
}

.testimonial-stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line2);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sage);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
}

.testimonial-location {
  font-size: 12px;
  color: var(--soft);
}

/* ── FAQ ── */
.faq { margin-top: 36px; }

.faq details {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq details:hover { box-shadow: 0 8px 24px rgba(17,26,23,0.06); }
.faq details[open] { border-color: var(--coral); }

.faq summary {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--coral);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
  font-weight: 300;
}

details[open] summary::after { content: '−'; }

.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  border-top: 1px solid var(--line2);
  margin: 0 24px;
  padding-top: 16px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(110deg, var(--sage), #1d3d30);
  border-radius: 24px;
  padding: 54px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,97,74,0.18), transparent 70%);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 40%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.22;
  position: relative;
  z-index: 1;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}

.cta-band .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ── FORM ── */
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
}

.form-box {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(17,26,23,0.08);
}

.form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 700;
}

.form-box .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line2);
}

label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 18px 0 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line2);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(196,97,74,0.1);
}

textarea { min-height: 112px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consent-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line2);
}

.consent-block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 14px;
}

.consent-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1.5px solid var(--line2);
  border-radius: 13px;
  margin-bottom: 10px;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}

.consent-item:has(input:checked) {
  border-color: var(--coral);
  background: var(--coral-light);
}

.consent-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--coral);
}

.consent-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
}

.consent-text strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  margin-bottom: 4px;
}

.consent-text a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submit-btn {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  background: linear-gradient(135deg, var(--sage), var(--sage2));
  color: #fff;
  border: none;
  border-radius: 50px;
  font: 600 15px/1 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 8px 24px rgba(45,89,70,0.28);
  letter-spacing: 0.3px;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(45,89,70,0.38);
}

.notice {
  display: none;
  margin-top: 16px;
  background: var(--sage-light);
  color: var(--sage);
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  text-align: center;
  border: 1px solid rgba(45,89,70,0.15);
}

/* ── SIDE PANEL ── */
.side-panel {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: var(--rail-bg);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}

.side-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.side-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 8px;
}

.side-card .side-detail {
  font-size: 13.5px;
  color: var(--coral2);
  font-weight: 500;
  margin-top: 4px;
}

.side-info {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 24px;
}

.side-info h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 13px;
}

.side-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--rail-bg);
  padding: 70px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,97,74,0.09), transparent 65%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,89,70,0.1), transparent 70%);
}

.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  line-height: 1.12;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  line-height: 1.72;
}

/* ── STORY BLOCK ── */
.story {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 24px;
  padding: 38px;
  margin: 24px 0;
}

.story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.28;
}

.story p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 14px;
}

.story p:last-child { margin-bottom: 0; }

/* ── SPLIT LIST ── */
.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.split-list > div {
  background: var(--cream);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 28px;
}

.split-list h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 600;
}

.split-list ul {
  list-style: none;
  padding: 0;
}

.split-list ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--line2);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.split-list ul li:last-child { border-bottom: none; }

.split-list ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 7px;
  flex-shrink: 0;
}

.split-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
}

/* ── LEGAL ── */
.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--ink);
  margin: 36px 0 12px;
  font-weight: 600;
}

.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 12px;
}

/* ── FOOTER ── */
.footer {
  background: var(--rail-bg);
  padding: 58px 64px 0;
}

.footer-logo-area {
  margin-bottom: 16px;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
}

.footer-logo-icon svg { width: 100%; height: 100%; }

.footer-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--coral2);
  margin-bottom: 14px;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral2);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-col p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin-bottom: 6px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
}

/* ── MOBILE ── */
.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--rail-bg);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-brand-icon {
  width: 34px;
  height: 34px;
}

.mobile-brand-icon svg { width: 100%; height: 100%; }

.mobile-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--rail-bg);
  padding: 12px 20px 20px;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.mobile-nav a.rail-cta {
  background: linear-gradient(135deg, var(--coral), var(--coral2));
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
  border-radius: 50px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  :root { --rail-w: 270px; }
  .section, .section-sm { padding-left: 44px; padding-right: 44px; }
  .page-hero { padding-left: 44px; padding-right: 44px; }
  .footer { padding-left: 44px; padding-right: 44px; }
  .hero-left { padding: 60px 44px; }
}

@media (max-width: 900px) {
  .rail { display: none; }
  .mobile-bar { display: flex; }
  .shell { margin-left: 0; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 360px; order: -1; }
  .hero-right::before { display: none; }
  .hero-left { padding: 44px 24px; }
  .hero h1 { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line2); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line2); }

  .band { grid-template-columns: 1fr; }
  .band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .split, .form-layout, .split-list, .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .section, .section-sm { padding: 52px 24px; }
  .page-hero { padding: 48px 24px; }
  .footer { padding: 48px 24px 0; }

  .cta-band { flex-direction: column; padding: 36px 28px; }
  .side-panel { position: static; }
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .trust-item:nth-child(odd) { border-right: none; }
  .form-box { padding: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
