:root {
  --paper: #f2f5f9;
  --paper-deep: #e5ebf2;
  --ink: #17283c;
  --muted: #637286;
  --blue: #203853;
  --blue-soft: #365f82;
  --blue-pale: #c5def0;
  --white: #fcfdff;
  --line: rgba(23, 40, 60, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 22px 70px rgba(32, 56, 83, 0.12);
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
svg { display: block; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 { margin-bottom: 26px; font-size: clamp(50px, 5.3vw, 78px); }
h2 { margin-bottom: 0; font-size: clamp(40px, 4.7vw, 64px); }
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.25; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(23, 40, 60, 0.08);
  background: rgba(242, 245, 249, 0.88);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 48px));
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
}

.brand__mark svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand__mark circle { fill: var(--blue-pale); stroke: none; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.desktop-nav a, .footer-links a, .mobile-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.menu-toggle, .mobile-nav { display: none; }

.button {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover { background: var(--blue-soft); transform: translateY(-2px); }
.button--light { border-color: var(--white); color: var(--blue); background: var(--white); }
.button--light:hover { background: var(--blue-pale); }

.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #76a6ca;
  outline-offset: 4px;
}

.button-row { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.text-link, .section-link {
  font-size: 14px;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link span, .section-link span { display: inline-block; margin-left: 5px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.screen-section { position: relative; scroll-snap-align: start; }
.screen-nav {
  position: fixed;
  z-index: 30;
  top: 50%;
  right: max(18px, calc((100vw - 1360px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 12px 9px;
  border: 1px solid rgba(23, 40, 60, 0.1);
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.78);
  box-shadow: 0 10px 32px rgba(32, 56, 83, 0.1);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}
.screen-nav__dot {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.35;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}
.screen-nav__dot:hover { opacity: 0.75; }
.screen-nav__dot.is-active { background: var(--blue); opacity: 1; transform: scale(1.55); }

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(44px, 7vh, 80px) 70px;
}
.hero__copy { min-width: 0; }
.hero__lead { max-width: 610px; margin-bottom: 32px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.hero__visual {
  position: relative;
  width: min(38vw, calc(100svh - 210px), 480px);
  min-width: 330px;
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 23%, rgba(197,222,240,.98) 0 7%, transparent 7.4%), linear-gradient(145deg,#a9bdcf,#d7e1e9 48%,#91aac0);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__visual::after { content:""; position:absolute; inset:9%; border:1px solid rgba(255,255,255,.58); border-radius:48% 52% 43% 57%/53% 44% 56% 47%; transform:rotate(18deg); }
.orbit { position:absolute; border:1px solid rgba(32,56,83,.35); border-radius:50%; }
.orbit--outer { inset:17%; }
.orbit--inner { inset:31%; border-color:rgba(255,255,255,.62); }
.hero__center { position:absolute; inset:38%; z-index:1; display:grid; place-items:center; border-radius:50%; color:var(--paper); background:var(--blue); }
.hero__center svg { width:62%; fill:none; stroke:currentColor; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; }
.hero__center circle { fill:var(--blue-pale); stroke:none; }
.dot { position:absolute; z-index:2; border:2px solid rgba(255,255,255,.82); border-radius:50%; background:var(--blue-soft); }
.dot--one { width:18px; height:18px; top:20%; left:35%; }
.dot--two { width:27px; height:27px; right:18%; bottom:30%; background:var(--blue-pale); }
.dot--three { width:12px; height:12px; left:29%; bottom:21%; }
.scroll-cue { position:absolute; bottom:20px; left:0; display:flex; align-items:center; gap:10px; color:var(--muted); font-size:12px; font-weight:700; text-decoration:none; }
.scroll-cue span:last-child { font-size:18px; }

.about-preview, .services, .process, .faq, .contacts { padding-block: clamp(76px, 9vh, 110px); }
.about-preview, .services, .process, .booking, .faq, .contacts { min-height: calc(100svh - var(--header-height)); }
.about-preview, .services, .process, .faq { display:grid; align-content:center; }
.section-heading { display:grid; grid-template-columns: .72fr 1.5fr; align-items:end; gap:35px; margin-bottom:48px; }
.section-heading .eyebrow { margin-bottom:8px; }

.about-preview { border-top:1px solid var(--line); }
.about-preview__grid { display:grid; grid-template-columns:.72fr 1.5fr; gap:35px; margin-bottom:38px; }
.about-preview__lead { max-width:360px; color:var(--muted); font-size:18px; }
.facts { display:grid; grid-template-columns:1fr 1fr; gap:0; margin:0; border-top:1px solid var(--line); }
.facts div { padding:20px 18px 20px 0; border-bottom:1px solid var(--line); }
.facts dt { margin-bottom:4px; color:var(--muted); font-size:11px; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.facts dd { margin:0; font-size:17px; font-weight:700; line-height:1.4; }

.service-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:18px; }
.service-card { min-height:340px; display:flex; flex-direction:column; justify-content:space-between; padding:30px; border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.54); }
.service-card--featured { color:var(--white); background:var(--blue); border-color:var(--blue); }
.service-card__number { width:40px; height:40px; display:grid; place-items:center; border:1px solid currentColor; border-radius:50%; font-size:11px; font-weight:800; opacity:.75; }
.service-card p { max-width:470px; margin-bottom:0; color:var(--muted); }
.service-card--featured p { color:rgba(255,255,255,.7); }
.service-card__price { display:flex; align-items:end; justify-content:space-between; gap:20px; padding-top:22px; border-top:1px solid currentColor; }
.service-card__price span { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; opacity:.65; }
.service-card__price strong { font-family:Georgia,"Times New Roman",serif; font-size:25px; font-weight:400; line-height:1.1; text-align:right; }
.services .section-link { justify-self:end; margin-top:25px; }

.community { min-height:calc(100svh - var(--header-height)); display:grid; align-items:center; color:var(--white); background:var(--blue); }
.community__inner { display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(50px,8vw,120px); align-items:center; padding-block:90px; }
.community .eyebrow { color:var(--blue-pale); }
.community__copy { padding:38px; border:1px solid rgba(255,255,255,.18); border-radius:var(--radius-lg); background:rgba(255,255,255,.06); }
.community__copy p { margin-bottom:30px; color:rgba(255,255,255,.72); font-size:18px; }

.process-list { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin:0; padding:0; list-style:none; background:var(--line); }
.process-list li { min-height:190px; display:flex; flex-direction:column; justify-content:space-between; gap:25px; padding:25px; background:var(--paper); }
.process-list li > span { width:32px; height:32px; display:grid; place-items:center; border-radius:50%; color:var(--white); background:var(--blue); font-size:11px; font-weight:800; }
.process-list p { margin-bottom:0; color:var(--muted); font-size:14px; }

.booking { min-height:calc(100svh - var(--header-height)); display:grid; align-items:center; background:var(--paper-deep); }
.booking__inner { display:grid; grid-template-columns:1fr 1fr; gap:clamp(50px,8vw,110px); align-items:center; padding-block:90px; }
.booking__card { padding:40px; border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow); }
.booking__card > p:first-child { color:var(--muted); }
.booking__note { margin:24px 0 0; padding-top:20px; border-top:1px solid var(--line); color:var(--muted); font-size:13px; }

.faq-list { border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary { position:relative; padding:22px 54px 22px 0; cursor:pointer; font-size:18px; font-weight:750; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; top:17px; right:8px; color:var(--blue-soft); font-size:26px; font-weight:400; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { max-width:820px; margin:0 0 24px; color:var(--muted); }

.contacts { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.contacts__intro > p:not(.eyebrow) { max-width:450px; margin:25px 0 30px; color:var(--muted); }
.contact-card { min-width:0; padding:36px; border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow); font-style:normal; }
.contact-card div { display:grid; gap:4px; padding:15px 0; border-bottom:1px solid var(--line); }
.contact-card div:first-child { padding-top:0; }
.contact-card div:last-child { padding-bottom:0; border-bottom:0; }
.contact-card span { color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
.contact-card a, .contact-card strong { width:fit-content; max-width:100%; font-size:17px; font-weight:700; overflow-wrap:anywhere; text-decoration-thickness:1px; text-underline-offset:4px; }

.site-footer { border-top:1px solid var(--line); color:var(--muted); background:var(--paper); }
.site-footer__inner { min-height:150px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:35px; }
.footer-links { display:flex; justify-content:center; gap:14px 28px; flex-wrap:wrap; }
.footer-links a { color:var(--muted); text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:4px; }
.site-footer p { margin:0; font-size:13px; text-align:right; }

/* Content pages */
.page-main { min-height:calc(100svh - var(--header-height)); }
.page-hero { padding-block:75px 55px; border-bottom:1px solid var(--line); }
.page-hero h1 { max-width:920px; }
.page-hero__lead { max-width:760px; margin-bottom:0; color:var(--muted); font-size:19px; }
.content-section { padding-block:70px; }
.content-section + .content-section { border-top:1px solid var(--line); }
.content-grid { display:grid; grid-template-columns:.7fr 1.5fr; gap:clamp(35px,7vw,100px); }
.content-grid > h2 { font-size:clamp(32px,4vw,48px); }
.prose { max-width:780px; }
.prose p { color:#425268; }
.prose p:last-child { margin-bottom:0; }
.prose h2 { margin:52px 0 18px; font-size:clamp(30px,3.5vw,44px); }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin-top:35px; }
.prose ul, .prose ol { padding-left:1.25em; color:#425268; }
.prose li + li { margin-top:8px; }
.prose a { text-decoration-thickness:1px; text-underline-offset:4px; }
.topic-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:0; padding:0; list-style:none; }
.topic-list li { padding:18px 20px; border:1px solid var(--line); border-radius:var(--radius-md); background:rgba(255,255,255,.52); font-weight:700; }
.service-detail { display:grid; grid-template-columns:1fr .65fr; gap:30px; align-items:start; }
.price-panel { position:sticky; top:calc(var(--header-height) + 24px); padding:30px; border-radius:var(--radius-lg); color:var(--white); background:var(--blue); }
.price-panel span { display:block; color:var(--blue-pale); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.price-panel strong { display:block; margin:6px 0 22px; font-family:Georgia,"Times New Roman",serif; font-size:38px; font-weight:400; }
.price-panel p { color:rgba(255,255,255,.72); }
.legal-page .page-hero { padding-bottom:42px; }
.legal-page .content-section { padding-top:55px; }
.legal-meta { margin-bottom:0; color:var(--muted); font-size:13px; }
.legal-prose { max-width:880px; }
.legal-prose h2 { padding-top:10px; }
.legal-prose .legal-party { padding:25px; border-radius:var(--radius-md); background:var(--paper-deep); }

@media (min-width: 881px) and (min-height: 680px) {
  .home-page, html:has(.screen-nav) { scroll-snap-type:y proximity; }
}

@media (max-width: 1080px) {
  .screen-nav { display:none; }
  .desktop-nav { gap:18px; }
  .hero { grid-template-columns:1.05fr .95fr; }
}

@media (max-width: 880px) {
  :root { --header-height:72px; }
  .desktop-nav, .header-cta { display:none; }
  .site-header__inner { grid-template-columns:1fr auto; min-height:var(--header-height); }
  .menu-toggle { width:42px; height:42px; display:grid; align-content:center; gap:5px; padding:9px; border:0; border-radius:50%; color:var(--ink); background:transparent; cursor:pointer; }
  .menu-toggle span:not(.sr-only) { width:22px; height:2px; display:block; margin-inline:auto; background:currentColor; transition:transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform:translateY(-7px) rotate(-45deg); }
  .mobile-nav { position:absolute; z-index:49; top:100%; right:0; left:0; height:calc(100svh - var(--header-height)); display:flex; flex-direction:column; gap:0; padding:20px 24px 40px; background:var(--paper); overflow-y:auto; }
  .mobile-nav[hidden] { display:none; }
  .mobile-nav a { padding:18px 0; border-bottom:1px solid var(--line); font-size:20px; }

  .hero { min-height:auto; grid-template-columns:1fr; gap:38px; padding-block:50px 70px; }
  .hero__visual { width:min(70vw,430px); min-width:0; justify-self:center; grid-row:1; }
  .scroll-cue { display:none; }
  .section-heading, .about-preview__grid, .community__inner, .booking__inner, .content-grid { grid-template-columns:1fr; }
  .section-heading { gap:12px; }
  .about-preview, .services, .process, .booking, .faq, .contacts, .community { min-height:auto; }
  .service-grid, .contacts { grid-template-columns:1fr; }
  .community__inner { gap:35px; }
  .process-list { grid-template-columns:repeat(2,1fr); }
  .contacts { gap:45px; }
  .site-footer__inner { grid-template-columns:1fr 1fr; padding-block:35px; }
  .footer-links { grid-column:1/-1; grid-row:2; justify-content:flex-start; }
  .service-detail { grid-template-columns:1fr; }
  .price-panel { position:static; }
}

@media (max-width: 640px) {
  .section-shell, .site-header__inner { width:min(100% - 40px,1180px); }
  .brand { gap:9px; font-size:16px; }
  .brand__mark { width:35px; height:35px; }
  .brand__mark svg { width:26px; }
  h1 { margin-bottom:20px; font-size:clamp(36px,10vw,44px); line-height:1.08; overflow-wrap:normal; }
  h2 { font-size:clamp(32px,8.8vw,40px); line-height:1.1; }
  h3 { font-size:19px; }
  .eyebrow { margin-bottom:14px; font-size:10px; letter-spacing:.13em; }
  .hero { gap:30px; padding-block:28px 58px; }
  .hero__visual { width:min(72vw,300px); }
  .hero__lead, .page-hero__lead { font-size:16px; }
  .button-row { align-items:flex-start; flex-direction:column; gap:18px; }
  .button { width:100%; }
  .about-preview, .services, .process, .faq, .contacts { padding-block:64px; }
  .section-heading { margin-bottom:32px; }
  .facts { grid-template-columns:1fr; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:310px; padding:24px; }
  .service-card__price { display:grid; }
  .service-card__price strong { text-align:left; }
  .services .section-link { justify-self:start; }
  .community__inner, .booking__inner { padding-block:64px; }
  .community__copy, .booking__card, .contact-card { padding:26px 24px; }
  .process-list { grid-template-columns:1fr; }
  .process-list li { min-height:160px; }
  .faq-list summary { font-size:16px; }
  .site-footer__inner { grid-template-columns:1fr; gap:25px; }
  .footer-links { grid-column:auto; grid-row:auto; flex-direction:column; align-items:flex-start; gap:12px; }
  .site-footer p { text-align:left; }
  .page-hero { padding-block:55px 42px; }
  .content-section { padding-block:55px; }
  .topic-list { grid-template-columns:1fr; }
  .prose h2 { margin-top:40px; }
}

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