:root {
  --page: #f4f8fb;
  --page-deep: #e9f0f5;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --ink: #23384d;
  --ink-soft: #556978;
  --muted: #5d7486;
  --primary: #4979a3;
  --primary-dark: #365f84;
  --primary-soft: #dceaf4;
  --line: rgba(74, 123, 168, .18);
  --shadow: 0 18px 55px rgba(42, 73, 101, .10);
  --shadow-soft: 0 8px 30px rgba(42, 73, 101, .07);
  --shell: 1200px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --z-content: 1;
  --z-floating: 40;
  --z-header: 100;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: 80px;
  background: rgba(244, 248, 251, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .22s, background .22s, box-shadow .22s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(244, 248, 251, .96); box-shadow: 0 8px 30px rgba(35, 56, 77, .05); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
}
.brand-mark svg { width: 46px; height: 42px; display: block; }
.brand-copy { display: grid; line-height: 1.25; }
.brand-copy strong { font-size: 13px; font-weight: 700; }
.brand-copy small { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.desktop-nav a, .footer-links a { position: relative; text-decoration: none; font-size: 13px; font-weight: 600; }
.desktop-nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .22s var(--ease);
}
.desktop-nav a:hover::after, .footer-links a:hover::after { right: 0; }

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, border-color .2s, transform .2s;
}
.nav-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

.menu-button { display: none; border: 0; background: none; width: 48px; height: 48px; cursor: pointer; position: relative; }
.menu-button span { position: absolute; left: 10px; right: 10px; height: 1px; background: var(--ink); top: 20px; transition: transform .22s, top .22s; }
.menu-button span:last-child { top: 28px; }
.menu-button[aria-expanded="true"] span { top: 24px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu { background: var(--page); padding: 18px 24px 30px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 18px; }
.mobile-menu .mobile-menu-cta { margin-top: 18px; background: var(--primary); color: white; text-align: center; border: 0; border-radius: 12px; padding: 15px; }

.hero { min-height: 860px; padding: 148px 0 92px; position: relative; overflow: hidden; }
.hero-grid { position: relative; z-index: var(--z-content); display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.eyebrow { margin: 0 0 24px; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; font-weight: 700; color: var(--primary-dark); }

.hero h1, .section-heading h2, .contact h2, .faq-heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: 1.01;
  margin: 0;
}
.hero h1 { font-size: clamp(56px, 6.4vw, 96px); }
.hero h1.hero-long-title { max-width: 720px; font-size: clamp(43px, 4.35vw, 66px); line-height: 1.08; letter-spacing: -.045em; }
.hero h1 em, .contact h2 em { color: var(--primary); font-style: italic; }
.hero-aside { margin: 24px 0 0; color: var(--primary-dark); font-family: var(--serif); font-size: 19px; line-height: 1.55; font-style: italic; }
.hero-aside span { color: var(--ink-soft); }
.hero-text { max-width: 650px; margin: 24px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 38px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 10px 26px rgba(74, 123, 168, .20); }
.button-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 12px 32px rgba(74, 123, 168, .28); }
.button-outline { border-color: var(--primary); color: var(--primary-dark); background: rgba(255,255,255,.5); }
.button-outline:hover { background: var(--primary); color: white; }

.text-link, .inline-link { display: inline-flex; gap: 10px; align-items: center; min-height: 44px; font-size: 13px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span, .inline-link span { transition: transform .22s; }
.text-link:hover span, .inline-link:hover span { transform: translate(3px, 3px); }

.hero-facts { list-style: none; padding: 26px 0 0; margin: 42px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 32px; }
.hero-facts li { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-facts li::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); margin: 0 9px 2px 0; }

.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.photo-frame { width: min(100%, 490px); aspect-ratio: 3 / 4; position: relative; overflow: hidden; border-radius: 48% 48% 28px 28px; background: var(--page-deep); box-shadow: var(--shadow); }
.photo-frame::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.72); border-radius: calc(48% - 8px) calc(48% - 8px) 20px 20px; z-index: 1; pointer-events: none; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; filter: saturate(.78) contrast(.94); }
.photo-caption { position: absolute; inset: auto 0 0; padding: 58px 28px 25px; display: flex; justify-content: space-between; z-index: 2; color: white; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(transparent, rgba(28,52,73,.68)); }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(3px); }
.glow-left { width: 520px; height: 520px; left: -330px; top: 220px; background: rgba(74,123,168,.05); }
.glow-right { width: 380px; height: 380px; right: -220px; bottom: 30px; border: 1px solid rgba(74,123,168,.12); }

.topic-strip { background: var(--primary-dark); color: white; padding: 16px 0; overflow: hidden; }
.topic-marquee { display: flex; width: max-content; gap: 22px; padding-left: 22px; animation: topicScroll 44s linear infinite; }
.topic-marquee:hover { animation-play-state: paused; }
.topic-track { display: flex; align-items: center; gap: 10px 22px; flex-shrink: 0; }
.topic-track span { font-family: var(--serif); font-size: 15px; white-space: nowrap; }
.topic-track i { width: 4px; height: 4px; background: #bcd4e5; border-radius: 50%; flex-shrink: 0; }
@keyframes topicScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topic-marquee { animation: none; flex-wrap: wrap; }
}
/* legacy fallback */
.topic-list { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px 22px; }
.topic-list span { font-family: var(--serif); font-size: 15px; white-space: nowrap; }
.topic-list i { width: 4px; height: 4px; background: #bcd4e5; border-radius: 50%; }

.requests { background: linear-gradient(180deg, var(--page) 0%, #eef5f9 100%); }
.request-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.request-card {
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.request-card > span { color: var(--primary); font-family: var(--serif); font-size: 12px; }
.request-card h3 { margin: auto 0 16px; font-family: var(--serif); font-size: 25px; line-height: 1.4; font-weight: 400; letter-spacing: -.02em; }
.request-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.request-card-help { background: var(--primary-dark); color: white; }
.request-card-help > span, .request-card-help p { color: rgba(255,255,255,.72); }
.request-card-help a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; font-weight: 700; text-underline-offset: 4px; }

.section { padding: clamp(90px, 10vw, 145px) 0; }
.section-index { margin: 0; font-size: 10px; line-height: 1.4; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--primary-dark); }

.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.lead-quote { margin: 0; max-width: 980px; font-family: var(--serif); font-size: clamp(30px, 4vw, 52px); line-height: 1.36; letter-spacing: -.035em; }
.about-columns { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.about-story p { margin: 0 0 18px; color: var(--ink-soft); }
.credentials { border-top: 1px solid var(--line); }
.credential { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.7fr; gap: 24px; }
.credential span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.credential strong { font-size: 13px; line-height: 1.55; }
.inline-link { margin-top: 22px; color: var(--primary-dark); }
.about-links { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.principles { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principles article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-soft); }
.principles article > span { color: var(--primary); font-family: var(--serif); font-size: 12px; }
.principles h3 { margin: 38px 0 12px; font-family: var(--serif); font-size: 24px; line-height: 1.25; font-weight: 400; }
.principles p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.services { background: var(--page); }
.section-heading { display: grid; grid-template-columns: 1.7fr 1fr; gap: 70px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .faq-heading h2 { margin-top: 22px; font-size: clamp(44px, 5.4vw, 72px); }
.section-heading > p, .section-heading > div + p { margin: 0; color: var(--ink-soft); max-width: 500px; }
.section-heading.compact { margin-bottom: 42px; }
.section-heading.vertical { display: block; margin: 0; }
.section-heading.vertical > p:last-child { margin-top: 28px; }

.service-stack { display: grid; gap: 24px; }
.service-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px, 4.5vw, 58px); box-shadow: var(--shadow-soft); transition: box-shadow .25s, border-color .25s, transform .25s; }
.service-card:hover { border-color: rgba(74,123,168,.34); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card-featured { border: 1.5px solid var(--primary); box-shadow: 0 20px 50px rgba(35, 88, 132, .12); }
.service-card-featured:hover { border-color: var(--primary-dark); }
.service-badge {
  position: absolute; top: -14px; left: clamp(24px, 4vw, 48px);
  background: var(--primary); color: #fff; padding: 8px 16px;
  border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; box-shadow: 0 6px 18px rgba(35, 88, 132, .28);
}
.steps-list { counter-reset: step; margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.steps-list li { counter-increment: step; position: relative; padding-left: 40px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.steps-list li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(74,123,168,.14); color: var(--primary-dark);
  font-family: var(--serif); font-size: 13px; font-weight: 600;
  display: grid; place-items: center;
}
.steps-list li b { color: var(--ink); font-weight: 600; }
.service-header { display: grid; grid-template-columns: 1.55fr .65fr; gap: 60px; align-items: start; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.service-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; color: var(--primary); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 700; }
.service-kicker span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; letter-spacing: 0; }
.service-header h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.service-intro { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 16px; }
.service-format { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; display: grid; gap: 5px; }
.service-format span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.service-format strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.service-format small { color: var(--ink-soft); font-size: 11px; }

.service-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding: 34px 0; }
.detail-block { padding: 0 24px; border-right: 1px solid var(--line); }
.detail-block:first-child { padding-left: 0; }
.detail-block:last-child { padding-right: 0; border-right: 0; }
.detail-block h4 { margin: 0 0 16px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.detail-block p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.detail-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.detail-block li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 14px; }
.detail-block li::before { content: ""; position: absolute; width: 6px; height: 6px; left: 0; top: .68em; border-radius: 50%; background: var(--primary); }
.outcome-block { background: var(--primary-soft); border-radius: var(--radius-md); border: 0; padding: 22px; }
.outcome-block:last-child { padding-right: 22px; }

.service-footer { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.service-footer p { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: 13px; }
.service-footer .button { flex: 0 0 auto; }
.service-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 12px 22px; }
.service-actions .text-link { white-space: nowrap; }

.format-selector { margin-top: 48px; padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; background: var(--ink); color: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.selector-intro h3 { margin: 22px 0 18px; max-width: 460px; font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); line-height: 1.18; font-weight: 400; letter-spacing: -.03em; }
.selector-intro > p:last-child { margin: 0; color: rgba(255,255,255,.62); }
.format-selector .section-index { color: #a8c8dc; }
.selector-form fieldset { margin: 0; padding: 0; border: 0; }
.selector-form legend { width: 100%; margin-bottom: 20px; font-family: var(--serif); font-size: 24px; }
.selector-form label { display: block; margin-bottom: 12px; cursor: pointer; }
.selector-form input { position: absolute; opacity: 0; pointer-events: none; }
.selector-form label span { min-height: 62px; display: flex; align-items: center; padding: 15px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.05); transition: background .2s, border-color .2s, transform .2s; }
.selector-form label:hover span, .selector-form input:focus-visible + span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.48); transform: translateY(-1px); }
.selector-form input:checked + span { background: var(--primary); border-color: var(--primary); }
.selector-result { padding: 26px; background: #edf6fa; color: var(--ink); border-radius: var(--radius-md); }
.selector-result h4 { margin: 0 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.selector-result p { margin: 0 0 20px; color: var(--ink-soft); }
.selector-result .button { margin-right: 10px; margin-bottom: 8px; }
.selector-back { min-height: 44px; margin-top: 12px; padding: 0; border: 0; background: none; color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 5px; cursor: pointer; }

.testimonials { background: var(--page-deep); }
.review-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.review { margin: 0; min-height: 280px; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-soft); }
.review-large { min-height: 578px; grid-row: span 2; }
.review-accent { background: var(--primary); color: white; border-color: var(--primary); }
.review p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); line-height: 1.4; letter-spacing: -.025em; }
.review:not(.review-large) p { font-size: clamp(20px, 2.1vw, 28px); }
.review footer { margin-top: 35px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.review-accent footer { color: rgba(255,255,255,.72); }

.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--primary); border-radius: 50%; color: var(--primary-dark); font-family: var(--serif); font-size: 13px; }
.process-list h3 { margin: 1px 0 7px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.process-list p { margin: 0; color: var(--ink-soft); }
.process-cta { margin-top: 28px; }

.faq { background: var(--page); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 84px; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { flex: 0 0 36px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; position: relative; background: var(--surface); }
.accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; width: 12px; height: 1px; background: var(--ink); left: 11px; top: 17px; transition: transform .22s; }
.accordion summary i::after { transform: rotate(90deg); }
.accordion details[open] summary i::after { transform: rotate(0); }
.accordion details > p { margin: -3px 55px 18px 0; color: var(--ink-soft); max-width: 640px; }
.accordion details > p:last-child { margin-bottom: 28px; }

.contact { padding: clamp(90px, 10vw, 140px) 0; background: var(--surface); }
.contact-card { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; padding: clamp(40px, 7vw, 88px); background: linear-gradient(145deg, #e9f0f5 0%, #f7fbfd 100%); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-card::after { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(74,123,168,.16); border-radius: 50%; right: -260px; top: -280px; }
.contact h2 { font-size: clamp(58px, 7vw, 96px); }
.contact-copy { position: relative; z-index: var(--z-content); }
.contact-copy > p { margin: 0 0 30px; color: var(--ink-soft); }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-copy small { display: block; color: var(--muted); margin-top: 28px; font-size: 10px; line-height: 1.55; }

.site-footer { padding: 55px 0 30px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.footer-brand .brand-mark { color: white; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px 35px; }
.footer-note, .footer-legal, .copyright { margin: 24px 0 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.6; }
.footer-note { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-legal { color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .01em; }
.copyright { text-align: right; font-size: 10px; color: rgba(255,255,255,.4); }

.floating-contact { position: fixed; z-index: var(--z-floating); right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center; background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(42,73,101,.25); }
.floating-contact svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }

.consent-banner { position: fixed; z-index: 1000; left: 20px; right: 20px; bottom: 20px; width: min(900px, calc(100% - 40px)); margin-inline: auto; padding: 20px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 20px 70px rgba(25,52,73,.22); }
.consent-banner[hidden] { display: none; }
.consent-banner strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.consent-banner p { margin: 3px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.consent-banner a { color: var(--primary-dark); }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .button { min-height: 44px; padding-inline: 18px; }
.button-quiet { background: transparent; color: var(--ink-soft); border-color: var(--line); }
.button-quiet:hover { background: var(--page); color: var(--ink); }

.inner-main { background: var(--page); }
.page-hero { padding: 145px 0 85px; background: linear-gradient(155deg, var(--page) 0%, #e7f1f7 100%); border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-underline-offset: 4px; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.page-hero h1 { margin: 0; max-width: 780px; font-family: var(--serif); font-size: clamp(48px, 7vw, 88px); font-weight: 400; line-height: 1.04; letter-spacing: -.05em; }
.page-hero .lead { margin: 30px 0 0; max-width: 690px; color: var(--ink-soft); font-size: 18px; }
.fact-panel { padding: 26px; display: grid; gap: 17px; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.fact-panel div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.fact-panel div:last-child { padding-bottom: 0; border: 0; }
.fact-panel span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.fact-panel strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.content-section { padding: 90px 0; background: var(--surface); }
.content-section.alt { background: var(--page); }
.content-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.content-title { position: sticky; top: 110px; align-self: start; }
.content-title h2 { margin: 20px 0 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); line-height: 1.1; font-weight: 400; letter-spacing: -.04em; }
.content-copy { display: grid; gap: 18px; }
.content-card { padding: 28px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.content-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.content-card p, .content-card li { color: var(--ink-soft); }
.content-card p:last-child, .content-card ul:last-child { margin-bottom: 0; }
.plain-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.plain-list li { position: relative; padding-left: 20px; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.inner-cta { padding: 80px 0; background: var(--page-deep); }
.inner-cta-card { padding: clamp(36px, 6vw, 72px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; background: var(--ink); color: white; border-radius: var(--radius-lg); }
.inner-cta-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 72px); line-height: 1.05; font-weight: 400; }
.inner-cta-card p { color: rgba(255,255,255,.65); }
.legal { padding: 135px 0 90px; background: var(--surface); }
.legal article { max-width: 820px; }
.legal h1 { font-family: var(--serif); font-size: clamp(42px, 6vw, 70px); line-height: 1.08; font-weight: 400; }
.legal h2 { margin: 40px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.legal p, .legal li { color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .42s var(--ease), transform .42s var(--ease); }
.reveal-delay { transition-delay: .06s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { min-height: auto; }
  .hero-grid { gap: 55px; }
  .about-grid { grid-template-columns: 1fr; }
  .service-details { grid-template-columns: 1fr 1fr; }
  .outcome-block { grid-column: 1 / -1; }
  .detail-block:nth-child(2) { border-right: 0; padding-right: 0; }
  .faq-grid { gap: 55px; }
  .request-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; }
  .format-selector { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-grid, .content-grid { grid-template-columns: 1fr; gap: 50px; }
  .content-title { position: static; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 72px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { height: 72px; }
  .brand-copy { display: none; }
  .nav-cta { display: none; }
  .hero { padding: 116px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(50px, 14.8vw, 72px); }
  .hero h1.hero-long-title { font-size: clamp(40px, 10.8vw, 57px); line-height: 1.09; }
  .hero-aside { margin-top: 20px; font-size: 17px; }
  .hero-text { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-visual { min-height: auto; }
  .photo-frame { width: 100%; max-width: none; aspect-ratio: 4 / 5; border-radius: 46% 46% 24px 24px; }
  .hero-facts { gap: 10px 18px; }
  .topic-list { justify-content: flex-start; overflow: hidden; flex-wrap: nowrap; }
  .topic-marquee { animation-duration: 34s; }
  .topic-track span { font-size: 14px; }
  .section { padding: 82px 0; }
  .about-columns, .section-heading, .process-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .about-columns { margin-top: 50px; gap: 35px; }
  .lead-quote { font-size: 30px; }
  .section-heading { align-items: start; gap: 24px; margin-bottom: 46px; }
  .service-card { border-radius: 24px; padding: 28px 20px; }
  .service-header { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .service-details { grid-template-columns: 1fr; padding: 14px 0 28px; gap: 0; }
  .detail-block, .detail-block:first-child, .detail-block:nth-child(2), .detail-block:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-block:last-child { border-bottom: 0; }
  .outcome-block, .outcome-block:last-child { grid-column: auto; margin-top: 18px; padding: 22px; border-bottom: 0; }
  .service-footer { align-items: stretch; flex-direction: column; }
  .service-footer .button { width: 100%; }
  .service-actions { align-items: stretch; flex-direction: column; }
  .service-actions .text-link { justify-content: center; }
  .request-grid { grid-template-columns: 1fr; }
  .request-card { min-height: 250px; }
  .format-selector { margin-top: 30px; padding: 34px 22px; border-radius: 24px; }
  .selector-form label span { min-height: 68px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-large { min-height: 420px; grid-row: auto; }
  .review { min-height: 260px; }
  .process-grid, .faq-grid { gap: 54px; }
  .process-cta { width: 100%; }
  .contact-card { gap: 40px; padding: 48px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { text-align: left; margin-top: 0; }
  .footer-note, .copyright { padding-top: 20px; }
  .floating-contact { display: grid; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; gap: 14px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 112px 0 65px; }
  .page-hero-grid { gap: 36px; }
  .page-hero h1 { font-size: 50px; }
  .content-section { padding: 72px 0; }
  .content-grid { gap: 36px; }
  .inner-cta-card { grid-template-columns: 1fr; gap: 35px; border-radius: 24px; }
  .inner-cta-card .button { width: 100%; }
}

@media (max-width: 480px) {
  .hero-facts { display: grid; grid-template-columns: 1fr; }
  .credential { grid-template-columns: 1fr; gap: 6px; }
  .service-header h3 { font-size: 34px; }
  .service-format { padding: 18px; }
  .contact-links { display: grid; }
  .contact h2 { font-size: 54px; }
  .contact .eyebrow { line-height: 1.6; }
  .request-card h3 { font-size: 23px; }
  .consent-actions { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
