:root {
  --ink: #46314d;
  --ink-deep: #2b1d32;
  --raspberry: #fb3351;
  --raspberry-dark: #d81f3d;
  --paper: #ffffff;
  --mist: #f6f3f7;
  --line: #ddd6e2;
  --muted: #746c79;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  width: min(calc(100% - 48px), var(--max));
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 62px; height: auto; display: block; }
.nav { display: flex; align-items: center; gap: 34px; font-size: .9rem; font-weight: 650; }
.nav a { text-decoration: none; transition: color .2s ease; }
.nav a:hover { color: var(--raspberry); }
.nav-cta { border: 1px solid var(--ink); padding: 10px 18px; }

.hero {
  width: min(calc(100% - 48px), var(--max));
  min-height: 650px;
  margin: 0 auto;
  padding: 62px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
}
.eyebrow { margin: 0 0 22px; color: var(--raspberry); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: #ff8195; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; line-height: 1.03; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.35rem, 6.5vw, 5.85rem); font-weight: 640; }
h1 span { color: var(--raspberry); }
.hero-lead { max-width: 665px; margin-bottom: 36px; color: #5f5665; font-size: 1.22rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 22px; text-decoration: none; font-size: .92rem; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--ink-deep); }
.button-secondary { border: 1px solid var(--line); }
.button-secondary:hover { border-color: var(--raspberry); color: var(--raspberry); }

.hero-visual { position: relative; height: 460px; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 15% 5% 8% 8%; background: var(--mist); border-radius: 50%; z-index: -2; }
.orbit { position: absolute; border: 3px solid var(--raspberry); border-radius: 50%; transform: rotate(-28deg); }
.orbit-one { width: 330px; height: 190px; top: 40px; right: 4px; }
.orbit-two { width: 290px; height: 360px; top: 48px; left: 30px; border-color: var(--ink); opacity: .88; }
.visual-card { position: absolute; background: #fff; box-shadow: 0 28px 70px rgba(53, 41, 63, .16); }
.card-main { width: 310px; top: 90px; left: 68px; padding: 34px; }
.card-kicker { color: var(--raspberry); font-weight: 800; letter-spacing: .16em; }
.card-main > p { margin: 13px 0 28px; font-size: 1.35rem; line-height: 1.25; font-weight: 700; }
.card-line { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: .88rem; }
.card-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--raspberry); }
.card-float { right: 0; bottom: 36px; padding: 18px 22px; background: var(--raspberry); color: white; font-size: .86rem; font-weight: 800; line-height: 1.35; transform: rotate(3deg); }

.trust-strip { padding: 30px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; background: var(--ink); color: white; }
.trust-strip p { margin: 0; display: flex; flex-direction: column; }
.trust-strip strong { font-size: .92rem; }
.trust-strip span { margin-top: 2px; color: #cfc5d4; font-size: .82rem; }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; margin-bottom: 56px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .method h2, .contact h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 4.15rem); font-weight: 620; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.04rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 290px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, color .2s ease; }
.service-card:hover, .service-card.featured { background: var(--ink); color: white; }
.service-number { color: var(--raspberry); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 62px 0 12px; font-size: 1.55rem; }
.service-card p { max-width: 470px; margin-bottom: 0; color: var(--muted); }
.service-card:hover p, .service-card.featured p { color: #d3cbd7; }

.method { width: 100%; max-width: none; padding: 120px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; background: var(--ink-deep); color: white; }
.method-intro > p:last-child { max-width: 520px; margin-top: 28px; color: #c8bdcd; font-size: 1.05rem; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid #54475d; }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid #54475d; }
.steps li > span { color: var(--raspberry); font-size: .82rem; font-weight: 800; }
.steps h3 { margin-bottom: 4px; font-size: 1.15rem; }
.steps p { margin-bottom: 0; color: #bfb3c5; font-size: .92rem; }

.section-heading.compact { grid-template-columns: 1fr; }
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.format-card { padding: 44px; background: var(--mist); }
.format-card.accent { background: var(--raspberry); color: white; }
.format-top { display: flex; justify-content: space-between; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.format-label { padding: 5px 10px; border: 1px solid currentColor; }
.format-card h3 { margin: 72px 0 16px; font-size: 1.85rem; }
.format-card p { max-width: 460px; color: var(--muted); }
.format-card.accent p { color: #ffe2e7; }
.format-card ul { margin: 28px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(53, 41, 63, .18); }
.format-card.accent ul { border-color: rgba(255,255,255,.34); }
.format-card li { margin-top: 8px; font-size: .9rem; font-weight: 650; }
.format-card li::before { content: "—"; margin-right: 10px; }

.statement { text-align: center; }
.statement blockquote { max-width: 930px; margin: 0 auto; font-size: clamp(2.1rem, 4.5vw, 4rem); font-weight: 570; line-height: 1.16; letter-spacing: -.04em; }

.contact { padding: 96px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; background: var(--ink); color: white; }
.contact address { padding-left: 28px; border-left: 3px solid var(--raspberry); font-style: normal; }
.contact address > span { display: block; margin-bottom: 12px; color: #bcafc3; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact address strong { display: block; font-size: 1.2rem; line-height: 1.55; }
.contact address a { display: inline-block; margin-top: 22px; color: #ff8195; font-weight: 750; text-underline-offset: 5px; }

footer { min-height: 145px; padding: 34px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: #1c1523; color: #bcaec3; font-size: .8rem; }
footer img { width: 52px; height: auto; padding: 5px; background: #fff; }
footer p { margin: 0; }
.footer-meta { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.footer-meta a { color: #d9cfde; text-underline-offset: 4px; }
.footer-meta a:hover { color: #ff8195; }

.legal-header .brand { display: flex; align-items: center; gap: 18px; text-decoration: none; }
.legal-header .brand span { color: var(--muted); font-size: .84rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.legal-main { width: min(calc(100% - 48px), 920px); margin: 0 auto; padding: 72px 0 120px; }
.legal-intro { padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.legal-intro h1 { margin-bottom: 22px; font-size: clamp(3rem, 7vw, 5.4rem); }
.legal-intro > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.legal-grid { display: grid; grid-template-columns: 210px 1fr; gap: 38px 64px; padding: 54px 0; border-bottom: 1px solid var(--line); }
.legal-grid h2 { margin: 0; font-size: 1.12rem; letter-spacing: -.015em; }
.legal-copy p { margin-bottom: 16px; }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy a { color: var(--raspberry-dark); font-weight: 700; text-underline-offset: 4px; }
.legal-copy strong { font-weight: 750; }
.legal-note { margin-top: 40px; padding: 24px 28px; background: var(--mist); color: var(--muted); font-size: .9rem; }

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 44px; }
  .hero-visual { height: 410px; max-width: 500px; width: 100%; margin: 0 auto; }
  .trust-strip { grid-template-columns: 1fr; gap: 18px; }
  .section-heading, .method, .contact { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 24px; }
  .method { gap: 56px; }
  .contact { gap: 48px; }
}

@media (max-width: 620px) {
  .site-header, .hero, .section { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 84px; }
  .brand img { width: 52px; }
  .nav-cta { padding: 8px 12px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero { min-height: auto; padding-bottom: 55px; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { height: 350px; }
  .orbit-one { width: 250px; height: 155px; }
  .orbit-two { width: 230px; height: 290px; left: 10px; }
  .card-main { width: 260px; top: 62px; left: 25px; padding: 26px; }
  .card-main > p { font-size: 1.15rem; }
  .card-float { right: 5px; bottom: 20px; }
  .section { padding: 86px 0; }
  .service-grid, .format-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 255px; padding: 28px; }
  .service-card h3 { margin-top: 46px; }
  .method { padding-top: 86px; padding-bottom: 86px; }
  .format-card { padding: 30px; }
  .format-card h3 { margin-top: 50px; }
  .contact { padding-top: 72px; padding-bottom: 72px; }
  footer { grid-template-columns: auto 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
  .legal-main { width: min(calc(100% - 32px), 920px); padding-top: 50px; }
  .legal-grid { grid-template-columns: 1fr; gap: 18px; }
  .legal-header .brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
