:root {
    --ink: #05070d;
    --ink-soft: #0a0f1a;
    --paper: #f5f7fb;
    --paper-blue: #ebf0f7;
    --text: #f2f5fa;
    --text-muted: #aab6c8;
    --night-muted: #71809a;
    --day-text: #0b1220;
    --day-muted: #4a586c;
    --accent: #5b84b4;
    --accent-ink: #38618e;
    --line-dark: rgba(255, 255, 255, 0.1);
    --line-light: rgba(11, 18, 32, 0.1);
    --container: 1280px;
    --page-pad: clamp(20px, 5vw, 64px);
    --enter: cubic-bezier(0.22, 1, 0.36, 1);
    --move: cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--text);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.wizard-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

address {
    font-style: normal;
}

::selection {
    background: rgba(91, 132, 180, 0.35);
    color: #fff;
}

:focus-visible {
    outline: 3px solid #8eb8e8;
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 300;
    padding: 11px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--day-text);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 180ms var(--enter);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--page-pad);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px clamp(18px, 4vw, 44px);
    border-bottom: 1px solid transparent;
    background: transparent;
    transition: background-color 260ms ease, border-color 260ms ease, transform 260ms var(--move);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(5, 7, 13, 0.84);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 13px;
}

.brand-mark {
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 150px;
    height: 38px;
    flex: none;
    object-fit: contain;
    object-position: left center;
}

.brand-divider {
    width: 1px;
    height: 28px;
    flex: none;
    background: rgba(255, 255, 255, 0.22);
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.brand-copy strong,
.brand-copy small {
    overflow: hidden;
    color: var(--text);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy small {
    color: #8a97ab;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.29em;
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    flex: none;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(8, 12, 20, 0.4);
    cursor: pointer;
    transition: border-color 200ms ease, background-color 200ms ease, transform 140ms var(--enter);
}

.menu-toggle:active {
    transform: scale(0.96);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transition: transform 220ms var(--enter);
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    padding: 118px var(--page-pad) 34px;
    background: rgba(4, 6, 12, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms var(--move), visibility 0s linear 180ms;
}

.menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 280ms var(--enter), transform 280ms var(--enter), visibility 0s linear 0s;
}

.menu-panel,
.menu-foot {
    width: min(100%, 1152px);
    margin-inline: auto;
}

.menu-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr);
    gap: clamp(46px, 9vw, 140px);
    align-items: start;
}

.menu-links {
    display: flex;
    flex-direction: column;
}

.menu-links a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: clamp(24px, 3.6vw, 40px);
    font-weight: 500;
    letter-spacing: -0.04em;
    transition: color 200ms ease, transform 220ms var(--enter);
}

.menu-links small {
    color: var(--accent);
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.menu-contact {
    display: flex;
    flex-direction: column;
}

.menu-contact > .eyebrow {
    margin-bottom: 14px;
}

.menu-contact > a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 200ms var(--enter);
}

.menu-contact a small {
    grid-column: 1;
    color: var(--night-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.menu-contact a strong {
    grid-column: 1;
    font-size: 14px;
    font-weight: 600;
}

.menu-contact a > span {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    color: var(--accent);
}

.menu-lead-button {
    align-self: flex-start;
    margin-top: 24px;
}

.menu-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 24px;
    margin-top: 52px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5e6b80;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition: transform 140ms var(--enter), color 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button:active {
    transform: scale(0.97);
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.button-light {
    background: var(--text);
    color: var(--ink-soft);
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(5, 7, 13, 0.12);
    color: var(--text);
}

.button-dark-outline {
    align-self: flex-start;
    border-color: rgba(11, 18, 32, 0.28);
    background: transparent;
    color: var(--day-text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    flex: none;
    background: currentColor;
    content: "";
}

.eyebrow-dark {
    color: var(--accent-ink);
}

.eyebrow-centered {
    justify-content: center;
}

.eyebrow-centered::after {
    width: 26px;
    height: 1px;
    flex: none;
    background: currentColor;
    content: "";
}

.eyebrow-centered::before {
    width: 26px;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    scroll-margin-top: 72px;
}

.hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(76vw, 920px);
}

.hero-media::before,
.hero-media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
}

.hero-media::before {
    background: linear-gradient(90deg, var(--ink) 0%, rgba(5, 7, 13, 0.9) 20%, rgba(5, 7, 13, 0.42) 48%, rgba(5, 7, 13, 0.05) 78%, rgba(5, 7, 13, 0.3) 100%);
}

.hero-media::after {
    background: linear-gradient(180deg, rgba(5, 7, 13, 0.62) 0%, transparent 26%, transparent 60%, var(--ink) 100%);
}

.hero-media picture,
.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center 20%;
}

.hero-orb,
.contact-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-top {
    top: -14%;
    right: -4%;
    width: min(58vw, 640px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91, 132, 180, 0.22), transparent 68%);
}

.hero-orb-bottom {
    bottom: -28%;
    left: -14%;
    width: min(72vw, 780px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(27, 58, 102, 0.5), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 132px;
    padding-bottom: 112px;
}

.hero-content h1 {
    max-width: 780px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    color: var(--text);
    font-size: clamp(42px, 6.4vw, 82px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

h1 em,
h2 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.hero-lead {
    max-width: 440px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-lead strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.registry {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: var(--night-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.registry i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(91, 132, 180, 0.08);
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transform: translateX(-50%);
}

.scroll-cue span {
    color: #5e6b80;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 1px;
    height: 42px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-cue i::after {
    position: absolute;
    inset: -45% 0 auto;
    height: 45%;
    background: var(--accent);
    content: "";
    animation: cue-drop 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.credential-strip {
    overflow: hidden;
    padding: 17px 0 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--ink);
}

.credential-track {
    display: flex;
    width: max-content;
    animation: credential-marquee 34s linear infinite;
}

.credential-set {
    display: flex;
    flex: none;
    align-items: center;
    gap: 38px;
    padding-right: 38px;
}

.credential-set span {
    color: #7e8ba0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    white-space: nowrap;
}

.credential-set i {
    width: 4px;
    height: 4px;
    flex: none;
    background: var(--accent);
    opacity: 0.72;
    transform: rotate(45deg);
}

.light-section,
.services-section {
    position: relative;
    color: var(--day-text);
    scroll-margin-top: 72px;
}

.light-section {
    background: var(--paper);
}

.surgeon {
    border-radius: clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px) 0 0;
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(52px, 8vw, 110px);
    align-items: center;
    padding-top: clamp(94px, 13vw, 170px);
    padding-bottom: clamp(94px, 13vw, 170px);
}

.framed-photo {
    position: relative;
    width: min(100%, 520px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
}

.framed-photo > span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(56, 97, 142, 0.46);
    transform: translate(18px, 18px);
}

.framed-photo img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.section-copy h2,
.section-heading h2 {
    margin: 0;
    color: var(--day-text);
    font-size: clamp(29px, 3.4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.section-copy h2 em,
.section-heading h2 em {
    color: var(--accent-ink);
}

.section-copy > p {
    max-width: 560px;
    margin: 0;
    color: #47556a;
    font-size: 14.5px;
    line-height: 1.78;
    text-wrap: pretty;
}

.credentials-list {
    width: 100%;
    margin: 8px 0 0;
}

.credentials-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line-light);
}

.credentials-list div:last-child {
    border-bottom: 1px solid var(--line-light);
}

.credentials-list dt {
    font-size: 13px;
    font-weight: 700;
}

.credentials-list dd {
    margin: 0;
    color: #5d6b7e;
    font-size: 12px;
    text-align: right;
}

.services-section {
    border-top: 1px solid rgba(11, 18, 32, 0.06);
    border-radius: 0 0 clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px);
    background: var(--paper-blue);
}

.services-section .container {
    padding-top: clamp(94px, 12vw, 160px);
    padding-bottom: clamp(94px, 12vw, 160px);
}

.section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px 60px;
    margin-bottom: clamp(42px, 6vw, 66px);
}

.section-heading > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-heading > p {
    max-width: 310px;
    margin: 0;
    color: #5d6b7e;
    font-size: 13px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: clamp(190px, 19vw, 230px);
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    padding: clamp(22px, 2.6vw, 30px);
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 24px;
    background: #fff;
    color: var(--day-text);
    cursor: pointer;
    text-align: left;
    transition: transform 240ms var(--enter), border-color 240ms ease, box-shadow 240ms ease;
}

.service-card .service-number {
    position: absolute;
    top: 2px;
    right: 22px;
    color: rgba(56, 97, 142, 0.16);
    font-size: clamp(58px, 6vw, 88px);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.06em;
    line-height: 1.1;
    pointer-events: none;
}

.service-card strong {
    max-width: calc(100% - 20px);
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card > span:not(.service-number) {
    max-width: 390px;
    color: var(--day-muted);
    font-size: 13px;
    line-height: 1.65;
}

.service-card > i {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    color: var(--accent-ink);
    font-size: 16px;
    font-style: normal;
}

.service-card > i::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: width 240ms var(--enter);
}

.medical-note {
    margin: 24px 0 0;
    color: #7a8698;
    font-size: 11px;
    line-height: 1.6;
}

.philosophy {
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.philosophy-media {
    position: absolute;
    inset: 0;
}

.philosophy-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ink) 0%, rgba(5, 7, 13, 0.56) 32%, rgba(5, 7, 13, 0.56) 68%, var(--ink) 100%);
    content: "";
}

.philosophy-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.31;
    transform: scale(1.04);
}

.philosophy-content {
    position: relative;
    z-index: 1;
    padding-top: clamp(128px, 17vw, 220px);
    padding-bottom: clamp(128px, 17vw, 220px);
    text-align: center;
}

.philosophy-content h2 {
    margin: 28px 0 0;
    color: var(--text);
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.32;
}

.clinic {
    border-radius: clamp(28px, 5vw, 56px);
}

.split-reverse .section-copy {
    order: 1;
}

.split-reverse .framed-photo {
    order: 2;
    width: 100%;
    aspect-ratio: 16 / 11;
}

.framed-photo-left > span {
    transform: translate(-18px, 18px);
}

.address-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
    border-left: 2px solid var(--accent-ink);
}

.address-block strong {
    color: var(--day-text);
    font-size: 14px;
}

.address-block span {
    color: #5d6b7e;
    font-size: 13px;
}

.contact-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 72px;
}

.contact-orb {
    bottom: -50%;
    left: 50%;
    width: min(82vw, 900px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(27, 58, 102, 0.52), transparent 70%);
    transform: translateX(-50%);
}

.contact-content {
    position: relative;
    padding-top: clamp(106px, 14vw, 180px);
    padding-bottom: clamp(94px, 11vw, 140px);
    text-align: center;
}

.contact-content h2 {
    margin: 26px 0 0;
    color: var(--text);
    font-size: clamp(36px, 5.2vw, 62px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.contact-content > p {
    max-width: 450px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-main-button {
    margin-top: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(46px, 6vw, 66px);
    text-align: left;
}

.contact-grid > a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(10, 15, 26, 0.56);
    transition: transform 220ms var(--enter), border-color 220ms ease, background-color 220ms ease;
}

.contact-grid small {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.contact-grid strong {
    overflow: hidden;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-grid > a > span {
    color: #8a97ab;
    font-size: 12px;
}

.contact-grid i {
    color: var(--accent);
    font-style: normal;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #04060b;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 44px;
    padding-bottom: 116px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px 40px;
}

.footer-specialty {
    color: #8a97ab;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.footer-top nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
}

.footer-top nav a {
    color: #8a97ab;
    font-size: 12px;
    transition: color 200ms ease;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom span {
    max-width: 540px;
    color: #5e6b80;
    font-size: 11px;
    line-height: 1.7;
}

.footer-email {
    align-self: flex-start;
    color: #71809a;
    font-size: 11px;
}

/* Privacy */
.privacy-page {
    background: var(--paper);
    color: var(--day-text);
}

.privacy-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(18px, 4vw, 44px);
}

.privacy-header .button {
    min-height: 42px;
}

.privacy-main {
    background: var(--paper);
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(91, 132, 180, 0.26), transparent 30%),
        radial-gradient(circle at 5% 100%, rgba(27, 58, 102, 0.42), transparent 34%),
        var(--ink);
}

.privacy-hero::after {
    position: absolute;
    right: -10%;
    bottom: -54%;
    width: min(64vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(91, 132, 180, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(91, 132, 180, 0.025), 0 0 0 140px rgba(91, 132, 180, 0.018);
    content: "";
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
    padding-top: clamp(150px, 18vw, 220px);
    padding-bottom: clamp(86px, 11vw, 134px);
}

.privacy-hero h1 {
    margin: 28px 0 0;
    color: var(--text);
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.privacy-hero p {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.privacy-hero small {
    display: block;
    margin-top: 24px;
    color: #71809a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.privacy-article {
    width: min(calc(100% - 40px), 880px);
    margin: -36px auto 0;
    padding: clamp(30px, 6vw, 70px);
    border: 1px solid rgba(11, 18, 32, 0.07);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(22, 38, 61, 0.09);
}

.privacy-intro {
    margin-bottom: 48px;
    padding: 22px;
    border-left: 3px solid var(--accent-ink);
    border-radius: 0 12px 12px 0;
    background: rgba(91, 132, 180, 0.07);
}

.privacy-intro strong {
    color: var(--accent-ink);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-intro p {
    margin: 9px 0 0;
    color: #435168;
    font-size: 14px;
    line-height: 1.72;
}

.privacy-article > section {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 27px 0;
    border-top: 1px solid var(--line-light);
}

.privacy-article > section > span {
    color: var(--accent-ink);
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
}

.privacy-article h2 {
    margin: -4px 0 0;
    color: var(--day-text);
    font-size: clamp(19px, 2.5vw, 25px);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.privacy-article section p {
    margin: 12px 0 0;
    color: #526075;
    font-size: 13.5px;
    line-height: 1.8;
}

.privacy-article section a {
    color: var(--accent-ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-back {
    width: auto;
    margin-top: 30px;
}

.privacy-footer {
    margin-top: 88px;
    padding: 40px 0;
}

.privacy-footer .footer-bottom {
    padding-top: 0;
    border-top: 0;
}

.floating-contact {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--text);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: transform 140ms var(--enter), box-shadow 200ms ease;
}

.floating-contact:active {
    transform: scale(0.97);
}

.floating-contact > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-ink);
    box-shadow: 0 0 0 5px rgba(56, 97, 142, 0.1);
}

/* Contact wizard */
.contact-wizard {
    width: min(94vw, 620px);
    max-width: 620px;
    max-height: min(92vh, 790px);
    max-height: min(92dvh, 790px);
    overflow: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: #f7f9fc;
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.65);
    color: var(--day-text);
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 220ms var(--enter), transform 220ms var(--enter), display 220ms allow-discrete, overlay 220ms allow-discrete;
}

.contact-wizard[open] {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@starting-style {
    .contact-wizard[open] {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

.contact-wizard::backdrop {
    background: rgba(2, 4, 9, 0.8);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
}

.wizard-shell {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    padding: 30px clamp(22px, 5vw, 48px) 38px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 100% 0, rgba(91, 132, 180, 0.16), transparent 34%),
        #f7f9fc;
}

.wizard-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 0 2px;
    border: 1px solid rgba(11, 18, 32, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: #536176;
    cursor: pointer;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    transition: transform 140ms var(--enter), color 200ms ease, border-color 200ms ease;
}

.wizard-close:active {
    transform: scale(0.94);
}

.wizard-brand {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 15px;
    background: var(--ink-soft);
    box-shadow: 0 12px 30px rgba(5, 7, 13, 0.18);
    color: var(--text);
}

.wizard-brand span {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.wizard-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: start;
    gap: 8px;
    margin: 28px 0 36px;
}

.wizard-progress > span {
    display: flex;
    min-width: 48px;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    color: #8a97a9;
}

.wizard-progress i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(11, 18, 32, 0.14);
    border-radius: 50%;
    background: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms var(--enter);
}

.wizard-progress small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wizard-progress > b {
    height: 1px;
    margin-top: 14px;
    overflow: hidden;
    background: rgba(11, 18, 32, 0.12);
}

.wizard-progress > b::before {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent-ink);
    content: "";
    transform: translateX(-101%);
    transition: transform 260ms var(--move);
}

.wizard-progress > span.is-active,
.wizard-progress > span.is-complete {
    color: var(--accent-ink);
}

.wizard-progress > span.is-active i,
.wizard-progress > span.is-complete i {
    border-color: var(--accent-ink);
    background: var(--accent-ink);
    box-shadow: 0 6px 18px rgba(56, 97, 142, 0.22);
    color: #fff;
    transform: scale(1.05);
}

.wizard-progress > b.is-complete::before {
    transform: translateX(0);
}

.wizard-step {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 220ms var(--enter), transform 220ms var(--move);
}

.wizard-step.is-entering {
    opacity: 0;
    transform: translateX(14px);
}

.wizard-step.is-entering[data-direction="back"] {
    transform: translateX(-14px);
}

.wizard-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--accent-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

.wizard-kicker strong {
    font: inherit;
}

.wizard-step h2 {
    margin: 0;
    color: var(--day-text);
    font-size: clamp(25px, 5vw, 35px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.wizard-step > p {
    margin: 12px 0 0;
    color: #5d6b7e;
    font-size: 13px;
    line-height: 1.65;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
}

.field-group label {
    color: #3c4b60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.field-group input {
    width: 100%;
    height: 56px;
    padding: 0 17px;
    border: 1px solid rgba(11, 18, 32, 0.15);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(32, 49, 74, 0.05);
    color: var(--day-text);
    font-size: 16px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input::placeholder {
    color: #98a3b3;
}

.field-group input:focus {
    border-color: var(--accent-ink);
    box-shadow: 0 0 0 4px rgba(56, 97, 142, 0.11), 0 8px 22px rgba(32, 49, 74, 0.05);
}

.field-group input[aria-invalid="true"] {
    border-color: #a83b4a;
    box-shadow: 0 0 0 4px rgba(168, 59, 74, 0.09);
}

.field-group > small:not(.field-error) {
    color: #7b8798;
    font-size: 10px;
}

.field-error {
    display: block;
    min-height: 16px;
    color: #9d3042;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.button-wizard {
    width: 100%;
    margin-top: 20px;
    background: var(--ink-soft);
    box-shadow: 0 12px 28px rgba(5, 7, 13, 0.16);
    color: #fff;
}

.wizard-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #647186;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    transition: color 180ms ease, transform 140ms var(--enter);
}

.wizard-back:active {
    transform: translateX(-2px);
}

.service-options {
    display: grid;
    max-height: 238px;
    overflow-y: auto;
    gap: 8px;
    margin: 24px 0 0;
    padding: 2px 4px 2px 2px;
    border: 0;
}

.service-options label {
    display: block;
    cursor: pointer;
}

.service-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.service-options label > span {
    display: grid;
    min-height: 50px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid rgba(11, 18, 32, 0.12);
    border-radius: 13px;
    background: #fff;
    color: #2e3c50;
    font-size: 12px;
    font-weight: 600;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 140ms var(--enter);
}

.service-options label > span > i {
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #aab3c0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #fff;
    background: #fff;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.service-options label > span > b {
    color: #a0aaba;
    font-weight: 500;
}

.service-options input:checked + span {
    border-color: var(--accent-ink);
    background: rgba(91, 132, 180, 0.07);
    color: var(--day-text);
}

.service-options input:checked + span > i {
    border-color: var(--accent-ink);
    background: var(--accent-ink);
}

.service-options input:focus-visible + span {
    outline: 3px solid #8eb8e8;
    outline-offset: 2px;
}

.consent-field {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: 18px;
    color: #59677b;
    cursor: pointer;
    font-size: 10.5px;
    line-height: 1.55;
}

.consent-field input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--accent-ink);
}

.consent-field a {
    color: var(--accent-ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wizard-status {
    min-height: 18px;
    margin-top: 6px;
    color: #9d3042;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.button-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

.button-wizard.is-loading .button-spinner {
    display: block;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wizard-success {
    display: flex;
    min-height: 375px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.wizard-success > p {
    max-width: 340px;
}

.success-mark {
    display: grid;
    width: 92px;
    height: 92px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(56, 97, 142, 0.08);
}

.success-mark svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: var(--accent-ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.success-mark circle,
.success-mark path {
    stroke-dasharray: 210;
    stroke-dashoffset: 210;
}

.wizard-success.is-active .success-mark circle {
    animation: draw-check 600ms var(--enter) 80ms forwards;
}

.wizard-success.is-active .success-mark path {
    stroke-dasharray: 54;
    stroke-dashoffset: 54;
    animation: draw-check 380ms var(--enter) 430ms forwards;
}

.wizard-success .button {
    max-width: 260px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms var(--enter), transform 650ms var(--enter);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .menu-toggle:hover {
        border-color: rgba(91, 132, 180, 0.66);
        background: rgba(91, 132, 180, 0.11);
    }

    .menu-links a:hover {
        color: var(--accent);
        transform: translateX(10px);
    }

    .menu-contact > a:hover {
        transform: translateX(7px);
    }

    .button-light:hover {
        background: #fff;
        box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
    }

    .button-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .button-dark-outline:hover {
        border-color: var(--accent-ink);
        background: rgba(91, 132, 180, 0.06);
        color: var(--accent-ink);
    }

    .service-card:hover {
        border-color: rgba(56, 97, 142, 0.44);
        box-shadow: 0 28px 70px rgba(15, 35, 65, 0.14);
        transform: translateY(-4px);
    }

    .service-card:hover > i::before {
        width: 46px;
    }

    .contact-grid > a:hover {
        border-color: rgba(91, 132, 180, 0.46);
        background: rgba(91, 132, 180, 0.08);
        transform: translateY(-4px);
    }

    .footer-top nav a:hover,
    .footer-email:hover {
        color: var(--accent);
    }

    .floating-contact:hover {
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.58);
        transform: translateY(-2px);
    }

    .wizard-close:hover {
        border-color: rgba(56, 97, 142, 0.4);
        color: var(--accent-ink);
    }

    .service-options label:hover > span {
        border-color: rgba(56, 97, 142, 0.42);
        transform: translateX(2px);
    }
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-reverse .section-copy,
    .split-reverse .framed-photo {
        order: initial;
    }

    .split-reverse .framed-photo {
        margin-top: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --page-pad: 20px;
    }

    .site-header {
        padding: 12px 16px;
    }

    .brand-copy strong {
        max-width: 178px;
        font-size: 8px;
    }

    .brand-copy small {
        max-width: 178px;
        font-size: 7.5px;
    }

    .menu-panel {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .menu-overlay {
        padding-top: 96px;
    }

    .hero {
        min-height: 780px;
        align-items: flex-end;
    }

    .hero-media {
        inset: 0 0 auto;
        width: 100%;
        height: 68%;
    }

    .hero-media::before {
        background: linear-gradient(180deg, rgba(5, 7, 13, 0.25) 0%, rgba(5, 7, 13, 0.12) 34%, rgba(5, 7, 13, 0.75) 72%, var(--ink) 100%);
    }

    .hero-media::after {
        background: linear-gradient(90deg, rgba(5, 7, 13, 0.64) 0%, transparent 58%, rgba(5, 7, 13, 0.16) 100%);
    }

    .hero-media img {
        object-position: center 17%;
    }

    .hero-content {
        padding-top: 410px;
        padding-bottom: 96px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .scroll-cue {
        display: none;
    }

    .credential-strip {
        padding-bottom: 30px;
    }

    .split-layout {
        gap: 54px;
    }

    .framed-photo {
        width: calc(100% - 18px);
        margin-left: 0;
    }

    .credentials-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .credentials-list dd {
        text-align: left;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 184px;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-specialty {
        max-width: 220px;
        line-height: 1.5;
    }

    .floating-contact {
        right: 14px;
        bottom: 14px;
        padding: 11px 15px;
        font-size: 11px;
    }

    .privacy-header .brand-copy {
        display: none;
    }

    .privacy-header .brand-divider {
        display: none;
    }

    .privacy-header .button {
        min-height: 40px;
        padding-inline: 16px;
        font-size: 11px;
    }

    .privacy-article {
        width: calc(100% - 24px);
        margin-top: -24px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    .privacy-article > section {
        grid-template-columns: 30px 1fr;
        gap: 10px;
    }

    .contact-wizard {
        width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
        border-radius: 22px;
    }

    .wizard-shell {
        min-height: calc(100dvh - 18px);
        padding: 24px 20px 30px;
    }

    .wizard-close {
        top: 14px;
        right: 14px;
    }

    .wizard-progress {
        margin: 26px 0 32px;
    }

    .wizard-progress small {
        display: none;
    }

    .service-options {
        max-height: 31dvh;
    }
}

@media (max-width: 430px) {
    .brand-divider,
    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        max-width: 190px;
    }

    .contact-grid strong {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .credential-track {
        width: 100%;
        animation: none;
    }

    .credential-set:last-child {
        display: none;
    }
}

@keyframes credential-marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes cue-drop {
    0% {
        transform: translateY(0);
    }

    65%,
    100% {
        transform: translateY(345%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}
