:root {
  --primary: #9d174d;
  --bg: #fdf1f6;
  --ink: #2a0e1c;
  --accent: #fb7185;
  --paper: #fff8fb;
  --line: #f0d0dd;
  --mute: #7a3a55;
  --display: 'Sora', system-ui, sans-serif;
  --body: 'Sora', system-ui, sans-serif;
  --r: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.wrap { width: min(1140px, 92vw); margin-inline: auto; }

h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-family: var(--display); font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; line-height: 1.1; }
h3 { font-family: var(--display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--mute); line-height: 1.65; }
.lead { font-size: clamp(16px, 1.4vw, 18px); color: var(--mute); max-width: 50ch; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(253,241,246,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { font-size: 18px; font-weight: 800; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand__leaf { color: var(--primary); font-size: 20px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; font-size: 14.5px; padding: 13px 24px; border-radius: 999px; transition: transform 0.15s, background 0.15s; }
.btn:hover { transform: translateY(-2px); background: #7d1140; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--ghost { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: #fff0f5; }

/* HERO */
.hero { padding: clamp(48px, 7vw, 88px) 0 0; }
.hero__mono { max-width: 680px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); margin-bottom: 20px; }
.hero__mono h1 { margin-bottom: 20px; }
.hero__desc { font-size: 17px; color: var(--mute); max-width: 46ch; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__divider { width: 48px; height: 3px; background: var(--line); border-radius: 2px; margin: 32px 0; }
.hero__stats { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat span { font-size: 12px; color: var(--mute); font-weight: 500; }
.stat__sep { font-size: 22px; color: var(--line); font-weight: 300; }
.hero__img-row { margin-top: 40px; width: 100%; height: clamp(280px, 40vw, 480px); overflow: hidden; }
.hero__fig { height: 100%; margin: 0; }
.hero__fig img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* SECTION COMMON */
.section { padding: clamp(60px, 8vw, 96px) 0; }

/* RANGE */
.range__head { max-width: 52ch; margin-bottom: 44px; }
.range__head h2 { margin-bottom: 12px; }
.range__head p { color: var(--mute); }
.range__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.range-item { background: var(--paper); padding: 26px; display: flex; gap: 16px; min-height: 160px; }
.range-item:hover { background: #fff; }
.range-item__num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--primary); background: rgba(157,23,77,.08); border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.range-item__body { flex: 1; }
.range-item__body h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.range-item__body p { font-size: 14px; color: var(--mute); line-height: 1.55; }
.range-item__note { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }

/* PLAN */
.plan { background: var(--ink); padding: clamp(60px, 8vw, 96px) 0; }
.plan__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.plan h2 { color: #fff; margin-bottom: 16px; }
.plan .eyebrow { color: var(--accent); }
.plan .lead { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.plan__steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.plan__step { display: flex; gap: 14px; align-items: flex-start; }
.plan__step span { background: var(--primary); color: #fff; font-weight: 800; font-size: 13px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.plan__step p { color: rgba(255,255,255,.72); font-size: 15px; margin: 0; }
.plan__card-wrap { display: flex; }
.plan__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 28px; width: 100%; }
.plan__card-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 18px; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; }
.plan__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.plan__dot--1 { background: #fb7185; }
.plan__dot--2 { background: #10b981; }
.plan__dot--3 { background: #fbbf24; }
.plan__dot--4 { background: #60a5fa; }
.plan__list strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
.plan__list div { font-size: 13.5px; color: rgba(255,255,255,.6); }
.plan__card-note { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: rgba(255,255,255,.5); }

/* TRUST */
.trust__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.trust__main h2 { margin-bottom: 16px; }
.trust__main p { max-width: 48ch; color: var(--mute); }
.trust__items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.trust__icon { font-size: 28px; margin-bottom: 12px; }
.trust__item strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 8px; }
.trust__item p { font-size: 13.5px; color: var(--mute); line-height: 1.55; }

/* CONTACT */
.contact { padding: clamp(60px, 8vw, 96px) 0; }
.contact__band { background: linear-gradient(135deg, var(--primary) 0%, #6b0f36 100%); border-radius: 24px; padding: clamp(36px, 5vw, 60px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.contact__left h2 { color: #fff; margin-bottom: 10px; }
.contact__left p { color: rgba(255,255,255,.8); max-width: 46ch; }
.contact__hours { margin: 8px 0 16px !important; color: rgba(255,255,255,.65) !important; font-size: 14px; }
.contact__row { display: flex; gap: 20px; flex-wrap: wrap; }
.contact__row a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact__row a:hover { color: #fff; }
.contact__right p { color: rgba(255,255,255,.8); max-width: 26ch; margin-bottom: 18px; font-size: 15px; }

/* FOOTER */
.foot { background: var(--ink); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.foot__in span:first-child { color: rgba(255,255,255,.85); font-weight: 600; }
.foot__in span:last-child { color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .range__grid { grid-template-columns: repeat(2, 1fr); }
  .plan__inner { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .contact__band { flex-direction: column; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .range__grid { grid-template-columns: 1fr; }
  .trust__items { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__sep { display: none; }
}
