@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --ink: #0a1018;
    --navy: #0c1726;
    --blue: #18395b;
    --cream: #f4f1ea;
    --paper: #fff;
    --line: #d9dde1;
    --accent: #d99439;
    --muted: #626b74;
    --max: 1240px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}

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

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

.shell,
.container {
    width: min(var(--max), calc(100% - 48px));
    margin: auto
}

.skip {
    position: absolute;
    left: -9999px
}

.skip:focus {
    left: 20px;
    top: 20px;
    z-index: 100;
    background: #fff;
    padding: 12px
}

.topbar {
    background: #07111d;
    color: #ccd4dc;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.navrow nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.navrow nav a {
    position: relative
}

.navrow nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--accent);
    transition: .25s
}

.navrow nav a:hover:after {
    right: 0
}

.menu,
.menu-btn {
    display: none;
}

@media (max-width: 1024px) {
    .menu,
    .menu-btn {
        display: inline-flex;
    }
}

@media (min-width: 1025px) {
    .menu,
    .menu-btn {
        display: none;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
    outline: none;
}

.button:focus-visible {
    outline: 3px solid rgba(217, 148, 57, .6);
    outline-offset: 4px;
}

.button-dark {
    background: var(--ink);
    color: #fff;
    border-color: transparent;
}

.button-accent {
    background: var(--accent);
    color: #111;
    box-shadow: 0 14px 28px rgba(217, 148, 57, .24);
    border-color: transparent;
}

.button-accent:hover {
    background: #c17a2f;
}

.button-light {
    background: #fff;
    color: #111;
    border-color: #e4e6e9;
}

.button-light:hover {
    background: #f8f9fa;
}

.button-glass {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    backdrop-filter: blur(10px);
}

.button-glass:hover {
    background: rgba(255, 255, 255, .18);
}

.hero {
    height: min(840px, calc(100vh - 118px));
    min-height: 680px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 32%;
}



.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 10, 18, .94) 0%,
rgba(4, 10, 18, .82) 35%,
rgba(4, 10, 18, .45) 68%,
rgba(4, 10, 18, .12) 100%
        
        
        
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(100px, 14vh, 165px);
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
    align-items: flex-start;
}

.hero-actions .button {
    min-width: 180px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #8a6540;
    margin: 0 0 22px
}

.eyebrow.light {
    color: #e5bd82
}

.hero h1,
.section h2,
.featurecopy h2,
.estimate h2 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -.055em
}

.hero h1 {
    font-size: clamp(52px, 7vw, 94px);
    line-height: .95;
    max-width: 900px;
    margin: 0 0 28px;
    font-weight: 500
}

.hero h1 em,
.sectionhead h2 em {
    font-family: Georgia, serif;
    font-weight: 400
}

.hero-lead {
    font-size: clamp(18px, 2vw, 23px);
    max-width: 630px;
    color: #e0e5e9
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 46px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .32);
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
}

.hero-proof span:before {
    content: '✓';
    color: #e6b76f;
    margin: 0;
    font-size: 14px;
}

.scrollcue {
    position: absolute;
    z-index: 3;
    right: 40px;
    bottom: 32px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl
}

.scrollcue i {
    font-style: normal;
    margin-top: 10px
}

.trust {
    border-bottom: 1px solid var(--line)
}

.trustgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: linear-gradient(to right, rgba(0,0,0,.03), rgba(0,0,0,.01));
}

.trustgrid div {
    padding: 34px 30px;
    background: #fff;
    border: 1px solid rgba(217, 221, 225, .9);
}

.trustgrid strong,
.trustgrid span {
    display: block
}

.trustgrid strong {
    font-size: 15px
}

.trustgrid span {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px
}

.area-section {
    background: radial-gradient(circle at 15% 15%, rgba(229, 188, 116, .14), transparent 28%),
                linear-gradient(180deg, #07101b 0%, #0c1725 38%, #0a1220 100%);
    padding: 98px 0 88px;
}

.area-section .sectionhead {
    color: #fff;
}

.area-section .sectionhead p {
    color: #c5c9d2;
}

.area-cta-header {
    max-width: 760px;
    margin: 36px auto 0;
    text-align: left;
}

.area-cta-header .eyebrow {
    letter-spacing: .14em;
    color: #d8b57e;
    margin-bottom: 16px;
}

.area-cta-header h2 {
    font-size: clamp(36px, 4vw, 48px);
    margin: 0 0 18px;
    color: #fff;
    line-height: 1.05;
}

.area-cta-header p {
    color: #bfc4cc;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.area-intro {
    max-width: 760px;
    margin: 28px auto 0;
    color: #bfc4cc;
    font-size: 18px;
    line-height: 1.85;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 58px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.area-card {
    background: rgba(12, 20, 34, .88);
    border: 1px solid rgba(229, 188, 116, .18);
    border-radius: 30px;
    padding: 38px 34px 38px;
    box-shadow: 0 36px 96px rgba(2, 8, 18, .30);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    min-height: 364px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 48px 128px rgba(2, 8, 18, .52);
    border-color: rgba(229, 188, 116, .42);
    background: rgba(18, 30, 48, .98);
}

.area-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d99439;
}

.area-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.area-card h3 {
    font-size: 28px;
    margin: 0;
    color: #fff;
}

.area-card p {
    color: #c7cbd4;
    line-height: 1.8;
    margin: 0;
    min-height: 144px;
}

.area-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.area-actions .button {
    min-width: 170px;
    padding: 0 30px;
    min-height: 58px;
    font-size: 15px;
}

.button-light {
    background: rgba(25, 36, 54, .92);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #f5f6f9;
}

.button-light:hover,
.button-light:focus-visible {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(229, 188, 116, .46);
}

.trust-section {
    margin-top: 76px;
}

.dark-cta {
    background: radial-gradient(circle at 12% 20%, rgba(229, 188, 116, .14), transparent 26%),
                linear-gradient(180deg, #05101a 0%, #08151f 48%, #07111b 100%);
    padding: 66px 0 76px;
}

.dark-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 48px;
    background: rgba(10, 18, 31, .94);
    border: 1px solid rgba(229, 188, 116, .18);
    border-radius: 32px;
    box-shadow: 0 36px 100px rgba(1, 8, 18, .30);
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(229, 188, 116, .16);
    color: #f6e2b9;
    font-size: 20px;
    margin-bottom: 18px;
}

.dark-cta h2 {
    font-size: clamp(36px, 4vw, 46px);
    color: #fff;
    margin: 10px 0 18px;
}

.dark-cta p {
    color: #c4c6d2;
    max-width: 640px;
    line-height: 1.8;
}

.dark-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr);
    gap: 40px;
    margin-top: 42px;
}

.about-story-grid > div:first-child p {
    color: #1c2530;
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
}

.story-cards {
    display: grid;
    gap: 24px;
}

.story-card {
    background: #fff;
    border: 1px solid rgba(10, 16, 24, .08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 28px 80px rgba(4, 10, 18, .08);
}

.story-card h3 {
    font-size: 24px;
    margin: 0 0 14px;
    color: #111;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.featurecards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
}

.feature-card {
    background: rgba(10, 18, 29, .94);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 96px rgba(0, 0, 0, .18);
    border-color: rgba(217, 148, 57, .28);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(217, 148, 57, .12);
    color: #f6e2b9;
    font-size: 22px;
    margin-bottom: 22px;
}

.feature-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
    color: #fff;
}

.feature-card p {
    margin: 0;
    color: #c7cbd4;
    line-height: 1.8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.trust-card {
    background: #fff;
    border-radius: 26px;
    padding: 32px 28px;
    box-shadow: 0 22px 64px rgba(0, 0, 0, .08);
    border: 1px solid rgba(10, 16, 24, .08);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(217, 148, 57, .12);
    color: #b77c2d;
    font-size: 20px;
    margin-bottom: 18px;
}

.trust-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #111;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
}

.review-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(10, 16, 24, .08);
    box-shadow: 0 26px 80px rgba(4, 10, 18, .08);
    padding: 36px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 96px rgba(4, 10, 18, .16);
    border-color: rgba(217, 148, 57, .24);
}

.review-stars {
    display: inline-flex;
    color: var(--accent);
    font-size: 18px;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.review-card p {
    margin: 0 0 20px;
    color: #1f2833;
    line-height: 1.85;
}

.review-meta {
    display: grid;
    gap: 6px;
    color: #71787f;
}

.review-meta strong {
    color: #111;
    font-size: 15px;
}

.review-meta span {
    font-size: 14px;
}

.review-note {
    margin-top: 32px;
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.stat-card {
    background: rgba(229, 188, 116, .08);
    border: 1px solid rgba(217, 148, 57, .18);
    border-radius: 28px;
    padding: 34px 28px;
    box-shadow: 0 20px 64px rgba(4, 10, 18, .06);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    color: #111;
    margin-bottom: 12px;
}

.stat-card span {
    display: block;
    color: #5f6a75;
    font-size: 16px;
    line-height: 1.6;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
}

.section-copy {
    max-width: 760px;
    color: #5f6a75;
    font-size: 18px;
    line-height: 1.85;
    margin-top: 18px;
}

@media(max-width:900px) {
    .about-story-grid,
    .featurecards,
    .trust-grid,
    .review-grid,
    .stats-grid,
    .trust-cards {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .hero h1 {
        font-size: clamp(38px, 8vw, 50px);
    }
    .hero-actions {
        width: 100%;
    }
}

@media(min-width:1025px) {
    .menu {
        display: none;
    }
}

@media(max-width:900px) {
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dark-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .dark-cta-inner {
        padding: 28px 22px;
    }
}
@media(max-width:900px) {
    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero h1 {
        font-size: 45px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}
.section {
    padding: 135px 0;
}

.intro {
    background: var(--cream)
}

.introgrid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px
}

.sticky-copy {
    align-self: start;
    position: sticky;
    top: 130px
}

.section h2,
.sectionhead h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    margin: 0 0 25px;
    font-weight: 500
}

.sticky-copy p {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px
}

.textlink {
    display: inline-block;
    margin-top: 25px;
    font-weight: 700;
    border-bottom: 1px solid #222;
    padding-bottom: 5px
}

.principles article {
    border-top: 1px solid #c8c5be;
    padding: 28px 0 42px;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px
}

.principles b {
    grid-row: 1/3;
    color: #966a33
}

.principles h3 {
    font-size: 28px;
    margin: 0
}

.principles p {
    grid-column: 2;
    color: var(--muted);
    margin: 8px 0 0;
    max-width: 570px
}

.sectionhead {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 54px
}

.sectionhead h2 {
    max-width: 850px
}

.sectionhead>p:last-child {
    color: var(--muted)
}

.servicegrid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 360px 360px;
    gap: 18px
}

.servicecard {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 360px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(4, 10, 18, .12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.servicecard.wide {
    grid-row: 1/3
}

.servicecard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.servicecard:hover img {
    transform: scale(1.06);
}
.servicecard:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 62px rgba(4, 10, 18, .22);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 10, 18, .86), rgba(4, 10, 18, .06) 70%)
}

.cardcopy {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
}

.cardcopy span {
    font-size: 12px;
    color: #e6bd84;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cardcopy h3 {
    font-size: 32px;
    margin: 10px 0 12px;
    line-height: 1.1;
}

.cardcopy p {
    color: #d9e0e5;
    margin: 0 0 18px;
    max-width: 520px;
}

.cardcopy b {
    font-size: 13px;
    letter-spacing: .08em;
}

.feature-dark {
    background: var(--navy);
    color: #fff;
    padding: 125px 0
}

.featuregrid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: center;
}

.featureimage {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(4, 10, 18, .10);
}

.featureimage img {
    height: 100%;
}

.floating-card {
    right: 0;
    bottom: 0;
    transform: translate(18px, 18px);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(4, 10, 18, .12);
}

.featureimage {
    position: relative
}

.featureimage img {
    width: 100%;
    height: 620px;
    object-fit: cover
}

.floating-card {
    position: absolute;
    right: -38px;
    bottom: 42px;
    background: #fff;
    color: #111;
    padding: 25px 28px;
    width: 260px
}

.floating-card span,
.floating-card strong {
    display: block
}

.floating-card span {
    font-size: 11px;
    letter-spacing: .14em;
    color: #8b6640
}

.floating-card strong {
    font-size: 20px;
    margin-top: 6px
}

.featurecopy h2 {
    font-size: clamp(48px, 5.3vw, 72px);
    line-height: 1;
    margin: 0
}

.featurecopy>p {
    font-size: 18px;
    color: #c7d1dc;
    max-width: 500px
}

.featurecopy ul {
    padding: 0;
    list-style: none;
    margin: 30px 0
}

.featurecopy li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.health {
    background: #f8f9fa
}

.healthgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.healthcopy p {
    font-size: 18px;
    color: var(--muted)
}

.record {
    background: #fff;
    border: 1px solid #e0e3e6;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(19, 31, 43, .10);
}

.recordtop {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px
}

.recordtop small,
.recordtop strong {
    display: block
}

.recordtop small {
    letter-spacing: .16em
}

.recordtop span {
    font-size: 11px;
    background: #e8f2ea;
    color: #2f6a3c;
    padding: 7px 10px;
    height: min-content
}

.score {
    padding: 30px 0;
    border-bottom: 1px solid var(--line)
}

.score small,
.score strong {
    display: block
}

.score strong {
    font-size: 25px
}

.score i {
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #233f5e 72%, #e2e5e8 72%);
    margin-top: 18px
}

.record dl {
    margin: 0
}

.record dl div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f2;
    flex-wrap: wrap;
}

.record dt,
.record dd {
    min-width: 0;
}

.record dt {
    color: var(--muted)
}

.record dd {
    margin: 0;
    font-weight: 600
}

.anatomywrap {
    position: relative;
    background: #0e1721;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .16);
}

.anatomywrap>img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    opacity: .78;
}

.marker {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(8, 18, 29, .78);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .12);
    transition: transform .25s ease, background .25s ease;
}

.marker:hover {
    background: var(--accent);
    color: #111;
    transform: scale(1.05);
}

.marker:hover {
    background: var(--accent);
    color: #111
}

.m1 {
    left: 48%;
    top: 16%
}

.m2 {
    left: 20%;
    top: 45%
}

.m3 {
    left: 55%;
    top: 56%
}

.anatomynote {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #fff;
    width: 320px;
    padding: 27px
}

.anatomynote small {
    letter-spacing: .14em;
    color: #94662f
}

.anatomynote h3 {
    font-size: 26px;
    margin: 5px 0
}

.anatomynote p {
    color: var(--muted);
    margin: 0
}

.areas {
    background: var(--cream)
}

.areasgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.faq {
    padding: 125px 0;
}

.faqgrid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faqgrid details {
    background: #fff;
    border: 1px solid #e3e6ea;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(4, 10, 18, .06);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faqgrid details:hover {
    transform: translateY(-2px);
}

.faqgrid summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 14px;
    list-style: none;
    padding-right: 24px;
}

.faqgrid summary::-webkit-details-marker {
    display: none;
}

.faqgrid summary:focus-visible {
    outline: 3px solid rgba(217, 148, 57, .6);
    outline-offset: 4px;
}

.faqgrid details[open] summary {
    color: var(--ink);
}

.faqgrid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.gallerycard {
    background: #fff;
    border: 1px solid #e8eaee;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 68px rgba(4, 10, 18, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallerycard:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 76px rgba(4, 10, 18, .10);
}

.gallerycard figure {
    margin: 0;
}

.gallerycard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallerycopy {
    padding: 30px;
}

.gallerycopy h3 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.1;
}

.gallerycopy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.citycloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: center
}

.citycloud a {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ddd8ce;
    border-radius: 999px;
    font-weight: 600;
}

.estimate {
    background: #08121e;
    color: #fff;
    padding: 125px 0
}

.estimategrid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px
}

.estimate h2 {
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    margin: 0
}

.estimatecopy>p {
    color: #c1cad3;
    font-size: 18px
}

.contactline {
    margin-top: 45px
}

.contactline span,
.contactline a {
    display: block
}

.contactline span {
    font-size: 11px;
    letter-spacing: .14em;
    color: #d5a65e
}

.contactline a {
    font-size: 18px;
    margin-top: 5px
}

.form {
    background: #fff;
    color: #111;
    padding: 38px
}

.form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 18px
}

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cbd1d6;
    background: transparent;
    padding: 12px 2px;
    font: inherit;
    border-radius: 0;
}

.form input:focus-visible,
.form select:focus-visible,
.form textarea:focus-visible {
    outline: 3px solid rgba(33, 107, 157, .45);
    outline-offset: 3px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-bottom-color: var(--accent);
}

.form textarea {
    height: 100px;
    resize: vertical
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.upload {
    border: 1px dashed #c4cbd1;
    padding: 13px
}

.check {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400 !important;
    letter-spacing: 0 !important
}

.check input {
    width: auto;
    margin-top: 4px
}

.submit {
    width: 100%;
    border: 0
}

.form>small {
    display: block;
    text-align: center;
    color: #707880;
    margin-top: 12px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid #e8eaee;
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 30px 80px rgba(4, 10, 18, .08);
}

.contact-card h2 {
    font-size: clamp(34px, 4vw, 46px);
    margin: 18px 0 20px;
    line-height: 1.05;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 640px;
}

.contact-info {
    display: grid;
    gap: 18px;
    margin: 34px 0 0;
}

.contact-info strong {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #222;
}

.contact-info a,
.contact-info span {
    display: block;
    color: var(--ink);
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.contact-highlight {
    background: #f8f9fa;
    border: 1px solid #e7eaee;
    border-radius: 20px;
    padding: 22px 22px 20px;
}

.contact-highlight strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.form h2 {
    margin: 10px 0 28px;
    font-size: clamp(32px, 4vw, 44px);
}

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

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

.hidden {
    display: none
}

footer {
    background: #050b12;
    color: #d0d6dc;
    padding: 65px 0 30px
}

.footergrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 70px;
}

.footergrid img {
    width: 220px;
    filter: brightness(0) invert(1)
}

.footergrid p {
    max-width: 430px;
    color: #8f9aa4
}

.footergrid h3 {
    color: #fff;
    font-size: 13px
}

.footergrid a,
.footergrid span {
    display: block;
    margin: 9px 0;
    color: #aeb7c0
}

.footbottom {
    border-top: 1px solid #1b2631;
    margin-top: 45px;
    padding-top: 25px;
    font-size: 12px;
    color: #77838e
}

.mobilecta {
    display: none;
}

button,
a {
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(217, 148, 57, .6);
    outline-offset: 3px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s, transform .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .shell {
        width: min(100% - 30px, var(--max));
    }

    .topbar .shell span:first-child {
        display: none;
    }

    .navcta {
        display: none;
    }

    .menu {
        display: block;
        margin-left: auto;
        background: none;
        border: 0;
        font-weight: 700
    }

    .navrow nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        flex-direction: column;
        border-bottom: 1px solid var(--line)
    }

    .navrow nav.open {
        display: flex
    }

    .hero {
        min-height: 690px
    }

    .hero-bg {
        object-position: 58% center
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(4, 10, 18, .94), rgba(4, 10, 18, .56))
    }

    .hero h1 {
        font-size: 54px
    }

    .hero-proof {
        flex-direction: column;
        gap: 7px
    }

    .scrollcue {
        display: none
    }

    .trustgrid {
        grid-template-columns: 1fr 1fr
    }

    .introgrid,
    .featuregrid,
    .healthgrid,
    .areasgrid,
    .estimategrid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .sticky-copy {
        position: static
    }

    .servicegrid {
        display: block
    }

    .servicecard {
        display: block;
        margin-bottom: 16px;
        height: 440px
    }

    .servicecard.wide {
        height: 520px
    }

    .featureimage img {
        height: 500px
    }

    .floating-card {
        right: 15px
    }

    .anatomywrap>img {
        height: 520px
    }

    .section {
        padding: 85px 0
    }

    .feature-dark,
    .estimate {
        padding: 85px 0
    }

    .footergrid {
        grid-template-columns: 1fr
    }

    .mobilecta {
        display: block;
        position: fixed;
        z-index: 45;
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
        background: var(--accent);
        padding: 14px;
        font-weight: 800;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
    }
}

@media(max-width:600px) {
    .topbar .shell {
        justify-content: center;
    }

    .header {
        height: 70px
    }

    .brand img {
        width: 165px
    }

    .navrow nav {
        top: 70px
    }

    .hero {
        height: 720px
    }

    .hero-content {
        padding-top: 100px
    }

    .hero h1 {
        font-size: 45px
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }

    .trustgrid {
        grid-template-columns: 1fr
    }

    .trustgrid div {
        border-left: 1px solid var(--line)
    }

    .sectionhead {
        display: block
    }

    .servicecard,
    .servicecard.wide {
        height: 440px
    }

    .featureimage img {
        height: 420px
    }

    .floating-card {
        left: 15px;
        right: 15px;
        width: auto
    }

    .record {
        padding: 24px
    }

    .record dl div {
        display: block
    }

    .record dd {
        margin-top: 4px
    }

    .anatomywrap>img {
        height: 500px
    }

    .anatomynote {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto
    }

    .row {
        grid-template-columns: 1fr
    }

    .form {
        padding: 24px
    }

    .footergrid {
        gap: 30px;
    }

    .hero-shade {
        background: linear-gradient(
            90deg,
            rgba(4,10,18,.88) 0%,
            rgba(4,10,18,.72) 45%,
            rgba(4,10,18,.30) 75%,
            rgba(4,10,18,.08) 100%
        );
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
}

.btn-primary,
.btn-accent {
    background: var(--accent);
    color: #111;
    box-shadow: 0 14px 28px rgba(217, 148, 57, .24);
    border-color: transparent;
}

.btn-outline {
    background: #fff;
    color: #111;
    border-color: #e4e6e9;
}
