/* Shoreline — site styles. Imports tokens from project root colors_and_type.css */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--sf-bone-white); color: var(--sf-ink); overflow-x: hidden; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sf-tide-blue);
  display: inline-block; margin: 0;
}
.eyebrow-on-dark { color: rgba(255,255,255,.85); }
.lead { font-size: 18px; line-height: 1.55; color: var(--sf-mute); max-width: 540px; margin: 0; }
@media (max-width: 640px) { .lead { font-size: 17px; } }

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  border: none; cursor: pointer; border-radius: 14px; padding: 14px 22px; line-height: 1;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.btn:active { opacity: .92; }
.btn-primary { background: var(--sf-deep-ocean); color: #fff; }
.btn-primary:hover { background: var(--sf-tide-blue); color: #fff; text-decoration: none; }
.btn-secondary { background: transparent; color: var(--sf-deep-ocean); border: 1px solid var(--sf-deep-ocean); padding: 13px 21px; }
.btn-secondary:hover { background: rgba(10,77,140,.06); color: var(--sf-deep-ocean); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--sf-deep-ocean); padding: 14px 14px; }
.btn-ghost:hover { color: var(--sf-tide-blue); text-decoration: none; }
.btn-ghost-light { background: transparent; color: #fff; padding: 14px 14px; }
.btn-ghost-light:hover { color: var(--sf-mist-cyan); text-decoration: none; }
.btn-on-glass { background: #fff; color: var(--sf-deep-ocean); }
.btn-on-glass:hover { background: var(--sf-vapor); color: var(--sf-deep-ocean); text-decoration: none; }
.btn-emergency { background: var(--sf-coral); color: #fff; }
.btn-emergency:hover { background: #DC6753; color:#fff; }
.btn-sm { padding: 10px 14px; font-size: 14px; border-radius: 12px; }

.arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow, .ghost-link:hover .arrow { transform: translateX(3px); }
.ghost-link {
  font-size: 14.5px; font-weight: 500; color: var(--sf-deep-ocean); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.ghost-link:hover { color: var(--sf-tide-blue); text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 16px; z-index: 50;
  margin: 16px auto 0; max-width: 1216px; padding: 0 12px;
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(10,26,36,.06);
  border-radius: 18px;
  padding: 12px 18px 12px 22px;
  box-shadow: 0 6px 18px rgba(10,26,36,.05);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 30px; height: 30px; object-fit: contain; }
.nav-logo .word { font-family: var(--font-display); font-size: 22px; color: var(--sf-deep-ocean); line-height: 1; }
.nav-links { display: flex; gap: 22px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--sf-ink); text-decoration: none; padding: 6px 0; }
.nav-links a.active { color: var(--sf-deep-ocean); border-bottom: 1px solid var(--sf-deep-ocean); }
.nav-links a:hover { color: var(--sf-tide-blue); text-decoration: none; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 13.5px; color: var(--sf-mute); font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.nav-phone:hover { color: var(--sf-deep-ocean); }
.nav-burger { display: none; background: transparent; border: 1px solid var(--border); border-radius: 12px; padding: 9px; cursor: pointer; }

/* Mobile slide-over */
.mobile-panel {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.mobile-panel.open { pointer-events: auto; opacity: 1; }
.mobile-panel-scrim { position: absolute; inset: 0; background: rgba(10,26,36,.45); }
.mobile-panel-sheet {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 86vw);
  background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 18px;
  transform: translateX(100%); transition: transform 320ms var(--ease-out);
  box-shadow: -20px 0 60px rgba(10,26,36,.18);
}
.mobile-panel.open .mobile-panel-sheet { transform: translateX(0); }
.mobile-panel-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-panel-close { background: transparent; border: 1px solid var(--border); border-radius: 12px; padding: 9px; cursor: pointer; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.mobile-links a { padding: 14px 4px; font-family: var(--font-display); font-size: 26px; color: var(--sf-ink); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-links a:hover { color: var(--sf-tide-blue); }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- LIQUID GRADIENT BACKGROUND BLOCK ---------- */
.liquid {
  position: relative; isolation: isolate; color: #fff;
  background: linear-gradient(135deg, #0A4D8C 0%, #2E6FA8 38%, #5C9CCB 70%, #A8D8E8 100%);
  overflow: hidden;
}
.liquid::before {
  content: ""; position: absolute; inset: -10%; z-index: 0;
  background:
    radial-gradient(45% 35% at 80% 18%, rgba(255,255,255,.38), transparent 60%),
    radial-gradient(40% 32% at 18% 82%, rgba(168,216,232,.55), transparent 65%),
    radial-gradient(28% 22% at 65% 65%, rgba(255,255,255,.18), transparent 60%);
  animation: drift var(--dur-drift) ease-in-out infinite alternate;
}
.liquid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/></svg>");
  mix-blend-mode: overlay;
}
.liquid > * { position: relative; z-index: 2; }
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-30px, 18px, 0) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .liquid::before { animation: none; }
}

/* ---------- GLASS CARD ---------- */
.glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10,77,140,.18), inset 0 0 0 1px rgba(255,255,255,.30);
}
.glass-dark {
  background: rgba(10, 30, 56, 0.30);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  color: #fff;
}

/* ---------- HERO ---------- */
.hero {
  margin: 32px 16px 0;
  padding: 88px 0 100px;
  border-radius: 40px;
  isolation: isolate;
}
.hero .container { padding-left: 56px; padding-right: 56px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px); line-height: 1.02; letter-spacing: -.02em;
  margin: 14px 0 22px; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--sf-mist-cyan); }
.hero-lead { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.86); max-width: 480px; margin: 0 0 28px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-video-card { padding: 16px; }
.hero-video-card .frame { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--sf-vapor); }
.hero-video-card video, .hero-video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px 0; color: var(--sf-ink); }
.hero-video-meta .time { font-size: 13px; font-variant-numeric: tabular-nums; color: var(--sf-mute); }
.hero-video-meta .label { font-size: 13px; font-weight: 500; color: var(--sf-deep-ocean); display: inline-flex; align-items: center; gap: 8px; }
.hero-video-meta .pulse { width: 8px; height: 8px; border-radius: 999px; background: #4ECB8A; box-shadow: 0 0 0 0 rgba(78,203,138,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78,203,138,.5); }
  70% { box-shadow: 0 0 0 8px rgba(78,203,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,203,138,0); }
}

/* Smaller hero for inner pages */
.hero.compact { padding: 64px 0 72px; }
.hero.compact h1 { font-size: clamp(40px, 5.2vw, 68px); }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding: 28px 32px; background: var(--sf-vapor); border-radius: 20px; margin-top: 32px;
}
.trust-strip .item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--sf-ink); font-weight: 500; }
.trust-strip .item .sample-tag { font-size: 11px; color: var(--sf-mute); font-weight: 400; margin-left: 4px; }

/* ---------- BLOCK / SECTION ---------- */
section.block { padding: 96px 0; }
section.block.tight { padding: 64px 0; }
section.block.on-vapor { background: var(--sf-vapor); }
@media (max-width: 640px) { section.block { padding: 64px 0; } }

.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.section-head .head-left h2 { margin: 8px 0 0; }
.section-head .head-right { font-size: 17px; line-height: 1.55; color: var(--sf-mute); max-width: 480px; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; } }

h1, h2, h3, h4 { color: var(--sf-ink); margin: 0; }
h1 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: -.015em; }
h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -.015em; text-wrap: balance; }
h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.18; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 20px; line-height: 1.3; }
p { margin: 0; }

/* ---------- WHY-FAMILIES SPLIT (Home) ---------- */
.why-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.why-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-3); position: relative; isolation: isolate; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video band — homepage walkthrough */
.video-band { padding: 14px; border-radius: 28px; }
.video-band .frame { border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: var(--sf-vapor); }
.video-band video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-band .meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 6px 2px; }
.video-band .meta .label { font-size: 13px; font-weight: 500; color: var(--sf-deep-ocean); display: inline-flex; align-items: center; gap: 8px; }
.video-band .meta .pulse { width: 8px; height: 8px; border-radius: 999px; background: #4ECB8A; box-shadow: 0 0 0 0 rgba(78,203,138,.6); animation: pulse 2s infinite; }
.video-band .meta .time { font-size: 13px; font-variant-numeric: tabular-nums; color: var(--sf-mute); }
.why-photo .glass-cap {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  font-family: var(--font-display); font-size: 20px; line-height: 1.2; color: var(--sf-ink);
}
.why-cards { display: flex; flex-direction: column; gap: 16px; }
.why-card {
  position: relative; padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(168,216,232,.55), rgba(255,255,255,.85));
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-2);
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: flex-start;
}
.why-card .ico {
  width: 56px; height: 56px; border-radius: 999px;
  background: rgba(10,77,140,.10);
  display: flex; align-items: center; justify-content: center; color: var(--sf-deep-ocean);
}
.why-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.2; color: var(--sf-ink); }
.why-card p { color: var(--sf-mute); font-size: 15px; line-height: 1.55; margin-top: 6px; }
@media (max-width: 800px) { .why-split { grid-template-columns: 1fr; } .why-photo { min-height: 320px; } }

/* ---------- SERVICE STRIP / GRID ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: #fff; border-radius: 20px; padding: 26px;
  box-shadow: var(--shadow-2); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px; min-height: 200px;
  transition: box-shadow var(--dur-base) var(--ease-out);
  text-decoration: none; color: var(--sf-ink);
}
.svc-card:hover { box-shadow: var(--shadow-3); text-decoration: none; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 999px;
  background: rgba(168,216,232,.4);
  display: flex; align-items: center; justify-content: center; color: var(--sf-deep-ocean);
}
.svc-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.2; }
.svc-card p { color: var(--sf-mute); font-size: 14.5px; line-height: 1.55; }
.svc-card .more { margin-top: auto; font-size: 13.5px; font-weight: 500; color: var(--sf-deep-ocean); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* Detailed service cards (Services page) */
.svc-card.detailed { padding: 30px; min-height: auto; }
.svc-card.detailed ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.svc-card.detailed li { display: flex; gap: 8px; font-size: 13.5px; color: var(--sf-mute); align-items: flex-start; }
.svc-card.detailed li svg { flex-shrink: 0; margin-top: 3px; color: var(--sf-tide-blue); }
.svc-card.detailed .price { font-size: 13px; color: var(--sf-deep-ocean); font-weight: 600; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 10px; font-variant-numeric: tabular-nums; }

/* ---------- INVISALIGN FEATURE BLOCK ---------- */
.invisalign-feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.invisalign-feature .image-wrap { padding: 16px; border-radius: 28px; }
.invisalign-feature .image-wrap .frame { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.invisalign-feature .image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.invisalign-feature .body p { color: var(--sf-mute); font-size: 16.5px; line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 800px) { .invisalign-feature { grid-template-columns: 1fr; } }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.team-grid.three { grid-template-columns: repeat(3, 1fr); }
.team-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--border); display: flex; flex-direction: column; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.team-photo .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #A8D8E8, #3B7DB8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: 96px; line-height: 1;
}
.team-body { padding: 22px 24px 26px; }
.team-body .role { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--sf-tide-blue); font-weight: 500; }
.team-body h4 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.15; margin-top: 6px; }
.team-body p { color: var(--sf-mute); font-size: 14.5px; line-height: 1.55; margin-top: 12px; }
.team-body .creds { font-size: 12.5px; color: var(--sf-mute); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.team-body .creds span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 800px) { .team-grid, .team-grid.three { grid-template-columns: 1fr; } }

/* Compact team strip — front desk + hygienists */
.staff-strip { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; background: #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-2); }
.staff-strip-photo { aspect-ratio: 4/3; overflow: hidden; }
.staff-strip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-strip-body { padding: 36px 40px; }
@media (max-width: 800px) { .staff-strip { grid-template-columns: 1fr; } .staff-strip-body { padding: 28px; } }

/* ---------- REVIEWS CAROUSEL ---------- */
.reviews-carousel {
  position: relative; padding: 48px 0;
}
.reviews-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card { padding: 28px; color: var(--sf-ink); display: flex; flex-direction: column; gap: 14px; }
.review-card .stars { display: flex; gap: 2px; color: var(--sf-deep-ocean); }
.review-card blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.3;
  margin: 0; color: var(--sf-ink); text-wrap: pretty;
}
.review-card .by { font-size: 13.5px; color: var(--sf-mute); }
.sample-tag {
  display: inline-block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sf-tide-blue); background: rgba(168,216,232,.4); border-radius: 999px;
  padding: 4px 10px; font-weight: 500;
}
@media (max-width: 800px) { .reviews-track { grid-template-columns: 1fr; } }

/* ---------- FINAL CTA ---------- */
.final-cta {
  margin: 0 16px; border-radius: 40px; padding: 96px 56px;
  text-align: center;
}
.final-cta h2 { color: #fff; font-size: clamp(40px, 5.4vw, 76px); }
.final-cta p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 520px; margin: 18px auto 32px; line-height: 1.55; }
.final-cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer.foot { padding: 80px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.foot-col h6 { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sf-tide-blue); font-weight: 500; margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--sf-ink); font-size: 14.5px; text-decoration: none; }
.foot-col a:hover { color: var(--sf-tide-blue); }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--sf-mute); }
.foot-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.foot-brand img { width: 32px; height: 32px; }
.foot-brand .word { font-family: var(--font-display); font-size: 24px; color: var(--sf-deep-ocean); line-height: 1; }
.foot-mini-map {
  margin-top: 18px; height: 110px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, #E8F1F8, #C9DEEE);
  position: relative; border: 1px solid var(--border);
}
.foot-mini-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.foot-mini-map .pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: var(--sf-deep-ocean);
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- CONCEPT BADGE ---------- */
.concept-badge {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  background: rgba(10,26,36,.92); color: #fff; backdrop-filter: blur(12px);
  border-radius: 999px; padding: 10px 16px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(10,26,36,.25);
  display: inline-flex; align-items: center; gap: 8px;
}
.concept-badge .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--sf-coral); }

/* ---------- INVISALIGN PAGE — PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  background: #fff; border-radius: 22px; padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-2);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.process-step .num {
  font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--sf-mist-cyan);
  font-variant-numeric: tabular-nums;
}
.process-step h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.18; }
.process-step p { color: var(--sf-mute); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* Pricing transparency */
.pricing-block { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; background: var(--sf-vapor); border-radius: 28px; padding: 48px; }
.pricing-block .range {
  font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); line-height: 1;
  color: var(--sf-deep-ocean); font-variant-numeric: tabular-nums;
}
.pricing-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-block li { display: flex; gap: 10px; font-size: 15px; color: var(--sf-ink); align-items: flex-start; }
.pricing-block li svg { flex-shrink: 0; margin-top: 3px; color: var(--sf-tide-blue); }
@media (max-width: 800px) { .pricing-block { grid-template-columns: 1fr; padding: 32px; } }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); padding: 22px 4px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--sf-ink); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform var(--dur-base) var(--ease-out); color: var(--sf-deep-ocean); flex-shrink: 0; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { font-size: 16px; line-height: 1.6; color: var(--sf-mute); margin-top: 12px; padding-right: 32px; }

/* ---------- ABOUT — story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.story-grid p { color: var(--sf-mute); font-size: 17px; line-height: 1.65; margin-bottom: 16px; }
.story-grid p strong { color: var(--sf-ink); font-weight: 600; }
.story-image { border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-3); }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.principle { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.principle .num { font-family: var(--font-display); font-size: 48px; color: var(--sf-mist-cyan); line-height: 1; font-variant-numeric: tabular-nums; }
.principle h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin-top: 12px; }
.principle p { color: var(--sf-mute); font-size: 14.5px; line-height: 1.55; margin-top: 8px; }
@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }

.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cred {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.cred .ico {
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(168,216,232,.4);
  display: flex; align-items: center; justify-content: center; color: var(--sf-deep-ocean);
}
.cred h5 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin: 0; color: var(--sf-ink); }
.cred p { font-size: 13px; color: var(--sf-mute); margin: 0; line-height: 1.5; }
@media (max-width: 800px) { .creds-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .creds-grid { grid-template-columns: 1fr; } }

/* ---------- BOOK PAGE ---------- */
.book-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: flex-start; }
.book-form { background: #fff; border-radius: 28px; padding: 36px; box-shadow: var(--shadow-3); border: 1px solid var(--border); }
.book-form .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.book-form label.field-label { font-size: 13px; color: var(--sf-mute); font-weight: 500; }
.book-form input, .book-form select, .book-form textarea {
  font-family: var(--font-body); font-size: 15.5px;
  padding: 13px 14px; border: 1px solid rgba(10,26,36,.16); border-radius: 14px;
  background: #fff; color: var(--sf-ink); outline: none;
  transition: border var(--dur-base), box-shadow var(--dur-base);
  width: 100%;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { border-color: var(--sf-tide-blue); box-shadow: var(--ring-focus); }
.book-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-pill {
  position: relative; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px;
  background: #fff; cursor: pointer; display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; transition: all var(--dur-base) var(--ease-out);
}
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill .dot { width: 16px; height: 16px; border-radius: 999px; border: 1.5px solid var(--border-strong); flex-shrink: 0; transition: all var(--dur-base); }
.radio-pill input:checked + .dot { border-color: var(--sf-deep-ocean); background: var(--sf-deep-ocean); box-shadow: inset 0 0 0 3px #fff; }
.radio-pill:has(input:checked) { border-color: var(--sf-deep-ocean); background: rgba(10,77,140,.04); }
.radio-pill:hover { border-color: var(--sf-tide-blue); }
@media (max-width: 480px) { .radio-grid { grid-template-columns: 1fr; } .book-form .row-2 { grid-template-columns: 1fr; } }

.book-info { display: flex; flex-direction: column; gap: 18px; }
.book-info-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 28px; }
.book-info-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
.book-info-card .row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.book-info-card .row svg { color: var(--sf-deep-ocean); flex-shrink: 0; margin-top: 2px; }
.book-info-card .row .label-mute { font-size: 12.5px; color: var(--sf-mute); }
.book-info-card .row .val { font-size: 15px; color: var(--sf-ink); font-variant-numeric: tabular-nums; }

.emergency-card {
  background: rgba(232,116,97,.08);
  border: 1px solid rgba(232,116,97,.25);
  border-radius: 24px; padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.emergency-card .ico { width: 44px; height: 44px; border-radius: 999px; background: var(--sf-coral); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.emergency-card h5 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.2; margin: 0; color: var(--sf-ink); }
.emergency-card p { color: var(--sf-mute); font-size: 14.5px; line-height: 1.55; margin: 6px 0 0; }
.emergency-card a.tel { font-weight: 600; color: #B84A37; font-variant-numeric: tabular-nums; text-decoration: none; }
.emergency-card a.tel:hover { color: var(--sf-coral); }

.map-card {
  height: 220px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 50%, #DCEAF4, #B8D4E8 70%, #8FB6D2 100%);
}
.map-card .pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); color: var(--sf-deep-ocean); }
.map-card .label-mute { position: absolute; left: 16px; bottom: 14px; font-size: 12px; color: rgba(10,26,36,.55); background: rgba(255,255,255,.78); padding: 4px 10px; border-radius: 999px; }

@media (max-width: 800px) { .book-grid { grid-template-columns: 1fr; } }

/* ---------- HERO RESPONSIVE ---------- */
@media (max-width: 800px) {
  .hero { margin: 16px 12px 0; padding: 56px 0 64px; border-radius: 28px; }
  .hero .container { padding-left: 24px; padding-right: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { padding: 64px 28px; border-radius: 28px; margin: 0 12px; }
}
