/* HDC - Hana DentoMaxilofacial Clinic | Logo colours: dark teal + light gray */
:root {
    --teal-dark: #2C5F6F;
    --teal: #3D7A8A;
    --teal-light: #5A9AAA;
    --teal-pale: #DCE6E9;
    --teal-mist: #E4EDF0;
    --teal-frost: #EBF2F4;
    --gray-light: #E8EAED;
    --gray-mid: #9CA3AF;
    --gray-soft: #F5F6F8;
    --light-nude: #FAF9F8;
    --pure-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --shadow-soft: rgba(44, 95, 111, 0.08);
    --shadow-teal: rgba(44, 95, 111, 0.15);
    /* About page: soft baby blue (not stark white) */
    --about-baby-blue: #e8f2fa;
    --about-baby-blue-mid: #eef6fc;
    --about-baby-blue-pale: #f3f8fd;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--light-nude);
    line-height: 1.65;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation – no box, blends into page */
.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    overflow: visible;
    box-shadow: 0 1px 0 rgba(36, 93, 110, 0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Brand: emblem + HDC + subtitle */
.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .nav-brand {
        margin-left: -76px; /* ~2cm left */
    }
}

.nav-brand__emblem {
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.nav-brand__svg {
    width: 40px;
    height: 40px;
}

.nav-brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-brand__monogram {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #245D6E;
}

.nav-brand__sub {
    font-family: 'Inter', var(--font-sans), sans-serif;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(36, 93, 110, 0.55);
    margin-top: 0.2rem;
}

.nav-brand:hover .nav-brand__monogram {
    color: #2B6F83;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.65rem, 1.5vw, 1.05rem);
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.nav-menu > li:not(.nav-menu__cta--mobile-only):not(.nav-menu__langs--mobile-only) {
    list-style: none;
}

.nav-menu a:not(.btn-nav) {
    font-family: 'Inter', var(--font-sans), sans-serif;
    text-decoration: none;
    color: rgba(47, 55, 60, 0.72);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

.nav-menu a:not(.btn-nav):hover {
    color: #245D6E;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #245D6E;
    transition: width 0.25s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-menu a:not(.btn-nav).is-active {
    color: #245D6E;
    font-weight: 500;
}

.nav-menu a:not(.btn-nav).is-active::after {
    width: 100%;
}

.nav-menu .nav-item__trigger:not(.btn-nav) {
    font-family: 'Inter', var(--font-sans), sans-serif;
    text-decoration: none;
    color: rgba(47, 55, 60, 0.72);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

.nav-menu .nav-item__trigger:not(.btn-nav):hover {
    color: #245D6E;
}

.nav-menu .nav-item__trigger:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #245D6E;
    transition: width 0.25s ease;
}

.nav-menu .nav-item__trigger:not(.btn-nav):hover::after,
.nav-item--dropdown:hover .nav-item__trigger:not(.btn-nav)::after,
.nav-item--dropdown:focus-within .nav-item__trigger:not(.btn-nav)::after {
    width: 100%;
}

.nav-menu .nav-item__trigger:not(.btn-nav).is-active {
    color: #245D6E;
    font-weight: 500;
}

.nav-menu .nav-item__trigger:not(.btn-nav).is-active::after {
    width: 100%;
}

.nav-item--dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    min-width: 240px;
    max-width: 300px;
    margin: 0;
    padding: 0.45rem 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(36, 93, 110, 0.12);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(44, 95, 111, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    transform: translateX(-50%) translateY(6px);
    z-index: 1100;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown__link {
    display: block;
    padding: 0.55rem 1.1rem;
    font-family: 'Inter', var(--font-sans), sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(47, 55, 60, 0.78);
    line-height: 1.4;
    white-space: normal;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus {
    color: #245D6E;
    background: rgba(235, 242, 244, 0.65);
    outline: none;
}

.dentistry-card[id] {
    scroll-margin-top: 6.5rem;
}

.nav-actions--desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-menu__cta--mobile-only,
.nav-menu__langs--mobile-only {
    display: none !important;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 1px solid rgba(199, 169, 127, 0.25);
    white-space: nowrap;
    list-style: none;
}

.nav-menu__langs--mobile-only.language-switcher {
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.lang-btn {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--teal-dark);
    background: rgba(44, 95, 111, 0.08);
}

.lang-btn.active {
    color: var(--teal-dark);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

.lang-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none !important;
    background: #245D6E;
    color: var(--pure-white) !important;
    padding: 0.58rem 1.35rem;
    border-radius: 999px;
    font-family: 'Inter', var(--font-sans), sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-teal);
}

.btn-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--teal-dark);
    transition: all 0.3s ease;
}

/* Hero Section - full width, luxury flow */
.hero {
    background: linear-gradient(160deg, var(--gray-soft) 0%, var(--pure-white) 50%, var(--teal-dark) 100%);
    padding: 10rem 0 9rem;
    position: relative;
    overflow: hidden;
}

/* Doctors portrait – same treatment as logo: transparent, no box, no darkening blend */
.hero-doctors-wrap {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
    z-index: 0;
    pointer-events: none;
    line-height: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    /* Push portrait further right + 1mm down (requested) */
    transform: translate(6cm, 1mm);
}

.hero-doctors-img {
    height: 600px;
    width: auto;
    max-height: 80vmin;
    display: block;
    object-fit: contain;
    object-position: bottom right;
    background: transparent;
    /* Same soft lift as .hero-logo-img – faces stay clear */
    filter: drop-shadow(0 4px 24px rgba(44, 95, 111, 0.14));
}

/* Single-doctor portrait (homepage) */
.hero-doctors-img--single {
    height: 720px;
    max-height: 88vmin;
    object-position: bottom right;
    filter: drop-shadow(0 10px 46px rgba(44, 95, 111, 0.18));
}

/* Logo in hero – transparent PNG blends with same gradient as .hero (no white box) */
.hero-logo-wrap {
    position: absolute;
    left: 2rem;
    /* Higher in hero – sits closer to nav “HDC” */
    top: 38%;
    /* Extra lift toward the nav (+1cm from previous) */
    transform: translateY(calc(-50% - 3.5cm));
    z-index: 2;
    line-height: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.hero-logo-img {
    height: 220px;
    width: auto;
    max-height: 30vmin;
    display: block;
    object-fit: contain;
    background: transparent;
    /* Soft lift on the gradient – no rectangular “card” look */
    filter: drop-shadow(0 4px 24px rgba(44, 95, 111, 0.12));
}

@media (max-width: 1200px) {
    .hero-logo-wrap {
        left: 1rem;
    }
    .hero-logo-img {
        height: 170px;
        max-height: 26vmin;
    }
    .hero-doctors-img {
        height: 480px;
        max-height: 68vmin;
    }

    .hero-doctors-img--single {
        height: 560px;
        max-height: 76vmin;
    }
}

@media (max-width: 900px) {
    .hero-doctors-wrap {
        right: 0.25rem;
        transform: none;
        opacity: 0.95;
    }

    .hero-doctors-img--single {
        height: 480px;
        max-height: 62vmin;
    }
}

.hero-logo-fallback {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.hero-logo-fallback.show {
    display: flex;
}

.hero-logo-hdc {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--teal-dark);
    line-height: 1;
}

.hero-logo-full {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    line-height: 1.2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 70vmin;
    height: 70vmin;
    background: radial-gradient(circle, rgba(44, 95, 111, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-mid);
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--teal-dark);
    color: var(--pure-white);
    padding: 1.1rem 2.8rem;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--shadow-teal);
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow-teal);
    color: var(--pure-white);
}

/* Services - three strips with clear teal tones, each distinct */
.services-section {
    padding: 0;
    position: relative;
}

.services-flow {
    display: block;
}

.service-strip {
    padding: 5.5rem 0;
    position: relative;
    border-bottom: 1px solid rgba(44, 95, 111, 0.12);
    transition: background 0.4s ease;
}

/* Homepage services: combined clinical + aesthetic */
.service-strip--combined {
    background: linear-gradient(120deg, var(--teal-mist) 0%, rgba(255, 255, 255, 0.9) 45%, var(--teal-frost) 100%);
}

.service-strip--aesthetic {
    background: linear-gradient(90deg, var(--teal-pale) 0%, var(--teal-mist) 50%, var(--teal-frost) 100%);
}

.service-strip:last-child {
    border-bottom: none;
}

.strip-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.7s ease-out forwards;
}

.service-strip--combined .strip-content { animation-delay: 0.1s; }
.service-strip--aesthetic .strip-content { animation-delay: 0.2s; }

.strip-content h3 {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.strip-content--combined {
    max-width: 980px;
}

.service-combined-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.service-mini {
    text-align: left;
    padding: 2rem 1.75rem 1.85rem;
    border-radius: 26px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 242, 244, 0.55) 100%);
    border: 1px solid rgba(44, 95, 111, 0.1);
    box-shadow: 0 18px 50px rgba(44, 95, 111, 0.06);
}

.service-mini--alt {
    background: linear-gradient(155deg, rgba(235, 242, 244, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-mini h4 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: -0.01em;
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.service-mini p {
    font-family: var(--font-sans);
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--gray-mid);
    line-height: 1.85;
    margin-bottom: 1.35rem;
    letter-spacing: 0.02em;
}

.btn-link--mini {
    padding: 0.7rem 1.4rem;
    font-size: 0.82rem;
}

@media (max-width: 860px) {
    .service-combined-grid {
        grid-template-columns: 1fr;
        margin-top: 1.75rem;
    }
}

.strip-content p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-mid);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    letter-spacing: 0.03em;
}

.strip-content .btn-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pure-white);
    background: var(--teal-dark);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--teal-dark);
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px var(--shadow-teal);
}

.strip-content .btn-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-teal);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
}

.section-header p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.85;
    letter-spacing: 0.03em;
}

/* Services page: 3 boxes side by side */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Dentistry page: full treatment list */
.services-section--dentistry {
    background: linear-gradient(180deg, var(--light-nude) 0%, rgba(235, 242, 244, 0.55) 65%, var(--gray-soft) 100%);
}

.dentistry-page {
    padding-top: 2.25rem;
    padding-bottom: 5rem;
}

.dentistry-page .section-header--dentistry {
    margin-bottom: 1.25rem;
}

.dentistry-page .section-header--dentistry p {
    margin-bottom: 0;
}

.treatments-hero-rule {
    width: 60px;
    height: 2px;
    margin: 0 auto 1.15rem;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 111, 0.55), transparent);
    border-radius: 2px;
}

.dentistry-treatments {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.dentistry-treatments__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--teal-dark);
    text-align: center;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.dentistry-treatments__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.dentistry-card {
    background: #ffffff;
    border: none;
    border-left: 3px solid var(--teal-dark);
    border-radius: 0 14px 14px 0;
    padding: 2.85rem 2.25rem;
    min-height: 168px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-left-color 0.28s ease;
}

.dentistry-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--teal);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(44, 95, 111, 0.1);
}

.dentistry-card__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.dentistry-card__bullets {
    list-style: none;
    margin: 0;
    padding: 0.15rem 0 0;
}

.dentistry-card__bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: #8a959c;
    line-height: 1.55;
}

.dentistry-card__bullets li:last-child {
    margin-bottom: 0;
}

.dentistry-card__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-dark);
    opacity: 0.55;
}

.dentistry-card__bullets--dash li::before {
    content: '–';
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--teal-dark);
    opacity: 0.65;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.dentistry-card__sublist {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(36, 93, 110, 0.08);
}

.dentistry-card__subitem {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0;
}

.dentistry-card__subitem + .dentistry-card__subitem {
    border-top: 1px solid rgba(36, 93, 110, 0.06);
}

.dentistry-card__subtitle {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--teal);
}

.dentistry-card__subdesc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    color: #9aa5ac;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dentistry-treatments__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dentistry-card__title {
        font-size: 1.45rem;
    }
}

.dentistry-page__cta {
    text-align: center;
    margin-top: 3.5rem;
}

.dentistry-page__cta .btn-primary {
    display: inline-block;
}

.dentistry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.75rem;
    margin-top: 4rem;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .dentistry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card--dentistry {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(235, 242, 244, 0.6) 100%);
    border: 1px solid rgba(44, 95, 111, 0.14);
    min-height: 420px;
}

.service-card--dentistry:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(44, 95, 111, 0.35);
}

.service-card--special .service-icon {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.service-card--general .service-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95), var(--teal-dark));
}

/* Whole card is clickable */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card {
    background: var(--gray-soft);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 8px 30px var(--shadow-soft);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card-link:nth-child(1) .service-card {
    animation-delay: 0.1s;
}

.service-card-link:nth-child(2) .service-card {
    animation-delay: 0.2s;
}

.service-card-link:nth-child(3) .service-card {
    animation-delay: 0.3s;
}

.service-card-link:nth-child(4) .service-card {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px var(--shadow-teal);
    border-color: var(--teal-dark);
    background: var(--pure-white);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--teal);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--teal-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-card .btn-link {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-card-link:hover .service-card .btn-link {
    gap: 1rem;
    color: var(--teal);
}

/* Booking Form */
.booking-section {
    padding: 6rem 0;
    background: var(--gray-soft);
}

/* Homepage reviews slider */
.reviews-section {
    padding: 5.5rem 0 5.75rem;
    background: linear-gradient(
        180deg,
        var(--about-baby-blue-pale) 0%,
        var(--about-baby-blue-mid) 55%,
        var(--about-baby-blue) 100%
    );
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.reviews-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.85;
}

.reviews-track-wrap {
    position: relative;
    padding: 0.5rem 0 0;
}

/* Side dots (centered vertically) */
.reviews-track-wrap::before,
.reviews-track-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(201, 169, 97, 0.45);
    box-shadow:
        0 10px 22px rgba(44, 95, 111, 0.12),
        0 0 0 6px rgba(232, 242, 250, 0.7);
    pointer-events: none;
    opacity: 0.95;
}

.reviews-track-wrap::before {
    left: clamp(10px, 2vw, 22px);
}

.reviews-track-wrap::after {
    right: clamp(10px, 2vw, 22px);
}

@media (max-width: 700px) {
    .reviews-track-wrap::before,
    .reviews-track-wrap::after {
        display: none;
    }
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.75rem 1.25rem 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
    height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: rgba(44, 95, 111, 0.15);
    border-radius: 8px;
}

.reviews-track::-webkit-scrollbar-track {
    background: rgba(44, 95, 111, 0.05);
}

.review-card {
    flex: 0 0 min(420px, 84vw);
    scroll-snap-align: center;
    border-radius: 26px;
    padding: 2.25rem 2.1rem 2rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(235, 242, 244, 0.6) 100%);
    border: 1px solid rgba(44, 95, 111, 0.11);
    box-shadow: 0 18px 50px rgba(44, 95, 111, 0.06);
}

/* Single-review mode (one card at a time, timed rotation) */
.reviews-track--single {
    display: grid;
    place-items: center;
    overflow: hidden;
    scroll-snap-type: none;
    padding: 0 1.25rem 1.25rem;
}

.reviews-track--single::-webkit-scrollbar {
    display: none;
}

.reviews-track--single .review-card {
    grid-area: 1 / 1;
    flex: none;
    width: min(640px, 92vw);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 420ms ease, transform 420ms ease;
    pointer-events: none;
}

.reviews-track--single .review-card.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-stars {
    font-family: var(--font-serif);
    color: rgba(201, 169, 97, 0.95);
    letter-spacing: 0.12em;
    font-size: 1.05rem;
    margin-bottom: 1.05rem;
}

.review-quote {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.85;
    margin: 0 0 1.35rem;
}

.review-meta {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.86rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.review-name {
    color: var(--teal-dark);
    font-weight: 600;
}

@media (max-width: 600px) {
    .reviews-title {
        font-size: 1.85rem;
    }
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--teal-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    background: var(--pure-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-dark);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.7rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: var(--pure-white);
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--teal-dark);
    background: var(--primary-gold-light);
}

.time-slot.selected {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--teal-dark);
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Payment Section */
.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-soft);
}

.payment-info {
    background: var(--gray-soft);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-info h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-dark);
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.deposit-amount {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Service Detail Page – matches homepage elegance */
.service-detail-hero {
    background: linear-gradient(160deg, var(--gray-soft) 0%, var(--pure-white) 50%, var(--teal-dark) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.service-detail-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.service-detail-hero-desc {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--text-light);
    line-height: 1.8;
}

/* What we offer – luxury strip, soft and refined */
.service-detail-offer {
    padding: 6rem 0;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, var(--teal-frost) 35%, var(--teal-pale) 100%);
    border-top: 1px solid rgba(44, 95, 111, 0.06);
    border-bottom: 1px solid rgba(44, 95, 111, 0.06);
}

.service-detail-offer-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--teal-dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail-offer .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Service list – elegant, chic, luxury */
.service-offer-list {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-offer-item {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(220, 230, 233, 0.5) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(44, 95, 111, 0.08);
    border-radius: 20px;
    border-left: 2px solid rgba(44, 95, 111, 0.28);
    box-shadow: 0 4px 24px rgba(44, 95, 111, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-offer-item:hover {
    background: linear-gradient(135deg, rgba(220, 230, 233, 0.65) 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 8px 32px rgba(44, 95, 111, 0.08);
    border-left-color: rgba(44, 95, 111, 0.4);
}

.service-offer-heading {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.service-offer-heading-solo {
    margin-bottom: 0;
}

/* Offer rows: title + short description */
.service-offer-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
    gap: 0.75rem 1.25rem;
    align-items: baseline;
}

.service-offer-head--solo {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
}

.service-offer-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.02em;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.service-offer-sublist {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.service-offer-subitem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
    gap: 0.75rem 1.25rem;
    align-items: start;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(44, 95, 111, 0.08);
}

.service-offer-subitem:first-child {
    border-top: 1px solid rgba(44, 95, 111, 0.12);
}

.service-offer-subtitle {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: 0.02em;
}

.service-offer-subdesc {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.65;
}

@media (max-width: 860px) {
    .service-offer-head,
    .service-offer-head--solo {
        grid-template-columns: 1fr;
    }

    .service-offer-desc {
        text-align: left;
    }

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

/* CTA block – same as homepage booking section */
.service-detail-cta {
    padding: 6rem 0;
    background: var(--gray-soft);
}

.service-detail-cta .section-header {
    margin-bottom: 2.5rem;
}

.service-detail-cta-btn-wrap {
    text-align: center;
    margin: 0;
}

/* Success Page */
.success-page {
    padding: 6rem 0;
    text-align: center;
    background: var(--gray-soft);
    min-height: 60vh;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.success-page h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.success-page p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--text-light);
    line-height: 1.8;
}

.success-pending {
    font-weight: 600;
    color: var(--teal-dark);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.booking-details {
    max-width: 500px;
    margin: 2rem auto;
    background: var(--gray-soft);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    text-align: left;
}

.booking-details h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.booking-details p {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.booking-details strong {
    color: var(--teal-dark);
}

/* Footer */
.footer {
    background: var(--teal-dark);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.footer-tagline { margin-bottom: 0.5rem; }
.footer-doctor { font-weight: 500; opacity: 0.95; letter-spacing: 0.02em; }

.footer-section p {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gray-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-actions--desktop {
        display: none;
    }

    .nav-menu__cta--mobile-only,
    .nav-menu__langs--mobile-only {
        display: flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .nav-menu__cta--mobile-only .btn-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--pure-white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow-medium);
        transition: left 0.3s ease;
        gap: 1.5rem;
        flex: none;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item--dropdown {
        width: 100%;
    }

    .nav-item--dropdown .nav-item__trigger {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-item--dropdown .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 0;
        max-width: none;
        width: 100%;
        margin-top: 0.65rem;
        padding: 0.35rem 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-item--dropdown .nav-dropdown__link {
        text-align: center;
        font-size: 0.6rem;
        padding: 0.45rem 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-doctors-img {
        height: 360px;
        max-height: 76vmin;
    }

    .hero-logo-wrap {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-logo-img {
        height: 130px;
        max-height: 36vmin;
        margin: 0 auto;
    }

    .hero-logo-fallback.show {
        align-items: center;
    }

    .hero-logo-hdc {
        font-size: 2.5rem;
    }

    .hero-logo-full {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .booking-container {
        padding: 2rem 1.5rem;
    }

    .service-detail-hero h1 {
        font-size: 2.25rem;
    }

    .service-detail-hero {
        padding: 5rem 0 4rem;
    }

    .service-detail-offer {
        padding: 3.5rem 0;
    }

    .service-detail-offer-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .service-detail-offer-title {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        margin-bottom: 3rem;
    }

    .service-offer-heading {
        font-size: 1.15rem;
        letter-spacing: 0.04em;
    }

    .service-offer-subs {
        font-size: 0.85rem;
    }

    .service-offer-item {
        padding: 1.35rem 1.5rem;
        border-radius: 16px;
    }
}

/* About page – soft baby-blue atmosphere */
.about-hero {
    /* Match site light blue-grey (no seams) */
    background: linear-gradient(180deg, var(--teal-mist) 0%, var(--teal-frost) 100%);
    padding: 7.5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 55% at 80% 12%, rgba(135, 180, 210, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 12% 85%, rgba(61, 122, 138, 0.1), transparent 52%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 225, 245, 0.35), transparent 65%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-kicker {
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(44, 95, 111, 0.8);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    color: var(--teal-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.4rem;
}

/* Doctors Profile: make "Our team" match "Our background" style */
.about-hero--doctors .about-hero-title--gold {
    color: #C7A97F;
    font-style: italic;
    font-weight: 500;
}

/* Utility: gold + italic title style (match "Our background") */
.about-hero-title--gold,
.title-gold-italic {
    color: #C7A97F;
    font-style: italic;
    font-weight: 500;
}

/* Ensure gold title overrides existing heading styles */
.about-hero h1.about-hero-title--gold {
    color: #C7A97F;
    font-style: italic;
    font-weight: 500;
}

.section-header h2.title-gold-italic {
    color: #C7A97F;
    font-style: italic;
    font-weight: 500;
}

.service-detail-hero h1.title-gold-italic {
    color: #C7A97F;
    font-style: italic;
    font-weight: 500;
}

.about-subtitle {
    font-family: var(--font-sans);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.12rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
}

.about-hero--page {
    padding: 60px 0 5.5rem;
}

.about-hero-rule {
    width: 60px;
    height: 2px;
    margin: 0 0 1.75rem;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.75), rgba(44, 95, 111, 0.65), transparent);
    border-radius: 2px;
}

/* About: editorial strips — story & values (lighter, typography-led; distinct from team cards) */
.about-strip {
    position: relative;
    overflow: hidden;
}

.about-strip--story {
    padding: 6rem 0 5rem;
    background: linear-gradient(180deg, var(--teal-mist) 0%, var(--teal-frost) 100%);
}

.about-story-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(165, 205, 235, 0.2), transparent 55%),
        radial-gradient(ellipse 90% 50% at 88% 75%, rgba(201, 169, 97, 0.05), transparent 48%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(44, 95, 111, 0.014) 48px,
            rgba(44, 95, 111, 0.014) 49px
        );
}

.container--about-story {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.container--about-team {
    position: relative;
    z-index: 1;
    max-width: 1140px;
}

/* Story: open editorial column — no heavy card */
.about-story-lux {
    text-align: center;
    padding: 0 0.5rem;
}

.about-story-lux__header {
    margin-bottom: 2.25rem;
}

.about-story-lux__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(44, 95, 111, 0.55);
    margin-bottom: 1.1rem;
}

.about-story-lux__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: #C7A97F;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-story-lux__title-ornament {
    width: min(200px, 55%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 97, 0.85) 25%,
        rgba(44, 95, 111, 0.45) 50%,
        rgba(201, 169, 97, 0.85) 75%,
        transparent
    );
    border-radius: 1px;
}

.about-story-lux__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.42rem);
    font-weight: 500;
    color: var(--teal-dark);
    line-height: 1.65;
    letter-spacing: -0.015em;
    max-width: 38ch;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.about-story-lux__body {
    text-align: left;
    max-width: 100%;
}

.about-story-lux__body .about-lux-text {
    margin-bottom: 0;
}

/* One continuous block: long horizontal measure + soft rule between paragraphs */
.about-story-lux__divider {
    border: none;
    height: 1px;
    margin: 1.75rem 0 1.75rem;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(44, 95, 111, 0.12) 12%,
        rgba(61, 122, 138, 0.22) 50%,
        rgba(44, 95, 111, 0.12) 88%,
        transparent
    );
}

.about-lux-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.92;
    margin-bottom: 1.2rem;
}

/* Mission + vision: split columns with divider (not card boxes) */
.about-strip--values {
    padding: 5.75rem 0 6rem;
    background: linear-gradient(
        180deg,
        var(--about-baby-blue) 0%,
        var(--about-baby-blue-mid) 40%,
        var(--about-baby-blue-pale) 100%
    );
}

.about-values-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(150, 195, 225, 0.14), transparent 58%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 97, 0.045), transparent 50%);
}

.container--about-values {
    position: relative;
    z-index: 1;
    max-width: 1080px;
}

.about-values-masthead {
    text-align: center;
    margin-bottom: 3.25rem;
}

.about-values-masthead__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(44, 95, 111, 0.5);
    margin-bottom: 1rem;
}

.about-values-masthead__rule {
    width: min(120px, 35%);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 111, 0.25), transparent);
}

.about-values-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto;
}

.about-values-block {
    position: relative;
    padding: 2.5rem 2.25rem 2.75rem 2.5rem;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(44, 95, 111, 0.09);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.about-values-block:hover {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 40px rgba(44, 95, 111, 0.06);
}

.about-values-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.85) 0%, var(--teal-dark) 52%, rgba(61, 122, 138, 0.45) 100%);
}

.about-values-block--vision {
    background: linear-gradient(135deg, rgba(235, 242, 244, 0.5) 0%, rgba(255, 255, 255, 0.65) 100%);
}

.about-values-block--vision::before {
    background: linear-gradient(180deg, var(--teal-dark) 0%, rgba(201, 169, 97, 0.65) 100%);
}

.about-values-block__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--teal-dark);
    border: 1px solid rgba(44, 95, 111, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.about-values-block__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #C7A97F;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.about-values-block__content .about-lux-text:last-child {
    margin-bottom: 0;
}

.about-values-block__single {
    margin-bottom: 0;
}

.about-values-divider {
    width: 1px;
    align-self: stretch;
    min-height: 120px;
    margin: 0 1.75rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(44, 95, 111, 0.12) 15%,
        rgba(201, 169, 97, 0.35) 50%,
        rgba(44, 95, 111, 0.12) 85%,
        transparent 100%
    );
    position: relative;
}

.about-values-divider__mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background: var(--pure-white);
    border: 1px solid rgba(201, 169, 97, 0.45);
    box-shadow: 0 0 0 4px rgba(235, 242, 244, 0.9);
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    padding: 2.5rem 2.25rem 2.5rem 2.5rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(44, 95, 111, 0.1);
    box-shadow: 0 18px 50px rgba(44, 95, 111, 0.05);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.85) 0%, var(--teal-dark) 52%, rgba(61, 122, 138, 0.45) 100%);
}

.contact-card--wide {
    grid-column: 1 / -1;
}

.contact-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--teal-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.contact-card__value {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--teal-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.contact-card__value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 95, 111, 0.22);
}

.contact-card__value a:hover {
    border-bottom-color: rgba(201, 169, 97, 0.65);
}

.contact-card__value--social {
    font-size: 1.15rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--teal-dark);
    text-decoration: none;
    border-bottom: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-social-link:hover {
    color: var(--teal);
    transform: translateY(-1px);
}

.contact-social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--teal-dark);
}

.contact-social-handle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    border-bottom: 1px solid rgba(44, 95, 111, 0.22);
}

.contact-social-link:hover .contact-social-handle {
    border-bottom-color: rgba(201, 169, 97, 0.65);
}

.contact-maps {
    max-width: 980px;
    margin: 2.75rem auto 0;
}

.contact-maps__header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.contact-maps__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.contact-maps__subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-maps__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.contact-map-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(44, 95, 111, 0.1);
    border-radius: 18px;
    padding: 1.35rem 1.35rem 1.25rem;
    box-shadow: 0 12px 36px rgba(44, 95, 111, 0.06);
}

.contact-map-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.contact-map-card__frame {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(44, 95, 111, 0.08);
}

.contact-map-card__frame iframe {
    display: block;
    width: 100%;
    min-height: 280px;
}

.contact-map-card__link-wrap {
    margin: 0.85rem 0 0;
    text-align: center;
}

.contact-map-card__link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal-dark);
    border-bottom: 1px solid rgba(44, 95, 111, 0.22);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-map-card__link:hover {
    color: var(--teal);
    border-bottom-color: rgba(201, 169, 97, 0.65);
}

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

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

/* Clinics design: "video tour" (autoplay slideshow) */
.clinic-tour {
    margin: 3.25rem auto 0;
    max-width: 980px;
    text-align: center;
}

.clinic-tour__header {
    margin-bottom: 1.75rem;
}

.clinic-tour__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.clinic-tour__subtitle {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 0 auto;
    max-width: 62ch;
    line-height: 1.85;
}

.clinic-tour__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(235, 242, 244, 0.6) 100%);
    border: 1px solid rgba(44, 95, 111, 0.12);
    box-shadow:
        0 18px 60px rgba(44, 95, 111, 0.08),
        0 2px 18px rgba(44, 95, 111, 0.06);
}

.clinic-tour__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 320ms ease, transform 900ms ease;
}

.clinic-tour__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.clinic-tour__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 45% at 20% 20%, rgba(44, 95, 111, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 45% at 80% 80%, rgba(201, 169, 97, 0.1), transparent 60%);
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
}

.clinic-tour__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.25rem;
}

.clinic-tour__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(44, 95, 111, 0.18);
    border: 1px solid rgba(44, 95, 111, 0.12);
    transition: transform 250ms ease, background 250ms ease;
}

.clinic-tour__dot.is-active {
    background: rgba(201, 169, 97, 0.85);
    border-color: rgba(201, 169, 97, 0.45);
    transform: scale(1.2);
}

@media (max-width: 700px) {
    .clinic-tour__frame {
        border-radius: 22px;
    }
}

/* Team – portrait + editorial (photo treatment matches homepage: transparent, soft shadow) */
.about-strip--team {
    padding: 5rem 0 5.5rem;
    background: linear-gradient(
        180deg,
        var(--about-baby-blue-pale) 0%,
        var(--about-baby-blue-mid) 35%,
        #f5f9fc 100%
    );
}

.about-strip--team::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 100% 70% at 50% 100%, rgba(120, 170, 205, 0.12), transparent 55%);
}

.about-team-lux-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-team-lux-kicker {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: -0.03em;
    margin-bottom: 1.35rem;
}

.about-team-lux-line {
    width: min(220px, 45%);
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 111, 0.3), rgba(201, 169, 97, 0.55), transparent);
    border-radius: 2px;
}

.about-dr-feature {
    display: grid;
    grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
    grid-template-areas:
        'head head'
        'vis cont';
    gap: 1.75rem 3.5rem;
    align-items: start;
    margin-bottom: 4.5rem;
    padding: 3rem 3rem 3.25rem;
    border-radius: 40px;
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(232, 242, 250, 0.65) 45%,
        rgba(220, 235, 245, 0.35) 100%
    );
    border: 1px solid rgba(44, 95, 111, 0.09);
    box-shadow:
        0 4px 28px rgba(44, 95, 111, 0.04),
        0 32px 72px rgba(44, 95, 111, 0.07);
    transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.about-dr-feature:hover {
    box-shadow:
        0 8px 36px rgba(44, 95, 111, 0.06),
        0 40px 88px rgba(44, 95, 111, 0.09);
}

.about-dr-feature:last-of-type {
    margin-bottom: 0;
}

.about-dr-feature__heading {
    grid-area: head;
    position: relative;
    text-align: left;
    padding: 1.35rem 1.5rem 1.5rem;
    margin: -0.25rem -0.5rem 0.25rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 242, 250, 0.85) 100%);
    border: 1px solid rgba(44, 95, 111, 0.1);
    box-shadow: 0 6px 24px rgba(44, 95, 111, 0.05);
}

.about-dr-feature--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
    grid-template-areas:
        'head head'
        'cont vis';
}

.about-dr-feature__visual {
    grid-area: vis;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Same idea as homepage hero portraits: no box, PNG sits on section gradient */
.about-dr-photo-wrap {
    line-height: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.about-dr-photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center top;
    background: transparent;
    filter: drop-shadow(0 6px 32px rgba(44, 95, 111, 0.14));
}

.about-dr-feature__ix {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    font-family: var(--font-serif);
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(44, 95, 111, 0.1);
    letter-spacing: -0.04em;
    user-select: none;
}

.about-dr-feature__name {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: var(--teal-dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    line-height: 1.25;
    padding-right: 2.5rem;
}

.about-dr-feature__role {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray-mid);
    line-height: 1.65;
    letter-spacing: 0.04em;
}

.about-dr-feature__content {
    grid-area: cont;
    padding-top: 0.35rem;
}

.about-dr-block {
    margin-bottom: 2.25rem;
    padding-right: 0.5rem;
}

.about-dr-block:last-child {
    margin-bottom: 0;
}

.about-dr-block__title {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    color: var(--teal-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(44, 95, 111, 0.12);
}

.about-dr-block__closing {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.92;
}

.about-dr-lux-list {
    list-style: none;
    margin: 1rem 0 1.35rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, rgba(220, 230, 233, 0.35) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(44, 95, 111, 0.12);
}

.about-dr-lux-list li {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.75;
    padding: 0.4rem 0 0.4rem 1.35rem;
    position: relative;
    border-bottom: 1px solid rgba(44, 95, 111, 0.06);
}

.about-dr-lux-list li:last-child {
    border-bottom: none;
}

.about-dr-lux-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.55), var(--teal-dark));
}

/* Doctors profile — StPageFlip certification magazine */
.cert-magazine {
    margin-top: 4.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(44, 95, 111, 0.1);
}

.cert-magazine__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.cert-magazine__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.cert-magazine__hint {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.cert-magazine__stage {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0.5rem 1rem 1.5rem;
    overflow: hidden;
    height: calc(550px * var(--cert-scale, 1));
    transition: height 0.2s ease;
}

.cert-magazine__book {
    --cert-scale: 1;
    width: 780px;
    height: 550px;
    margin: 0 auto;
    transform: scale(var(--cert-scale, 1));
    transform-origin: top center;
    filter: drop-shadow(0 22px 48px rgba(44, 95, 111, 0.18));
}

.cert-magazine__book .stf__wrapper {
    border-radius: 4px;
}

.cert-magazine__book .stf__block {
    background: #f8f6f2;
}

.cert-magazine__book img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f6f2;
}

.cert-magazine__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1rem 0.5rem;
}

.cert-magazine__status {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--teal-dark);
    margin: 0;
    min-width: 12rem;
    text-align: center;
    line-height: 1.45;
}

.cert-magazine__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(44, 95, 111, 0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.cert-magazine__btn:hover:not(:disabled) {
    background: var(--teal-dark);
    color: #fff;
    border-color: var(--teal-dark);
    transform: translateY(-1px);
}

.cert-magazine__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cert-magazine__title {
        font-size: 1.65rem;
    }

    .cert-magazine__status {
        order: 3;
        width: 100%;
        min-width: 0;
        font-size: 0.82rem;
    }

    .cert-magazine__nav {
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cert-magazine__btn {
        transition: none;
    }
}

.about-cta--lux {
    border-top: none;
    background: linear-gradient(
        165deg,
        #f0f7fc 0%,
        var(--about-baby-blue-mid) 35%,
        rgba(255, 255, 255, 0.97) 100%
    );
}

@media (max-width: 960px) {
    .about-values-pair {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-values-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
        margin: 2rem 0;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(44, 95, 111, 0.12) 20%,
            rgba(201, 169, 97, 0.35) 50%,
            rgba(44, 95, 111, 0.12) 80%,
            transparent 100%
        );
    }

    .about-values-divider__mark {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .about-strip--story {
        padding: 4.5rem 0 4rem;
    }

    .about-strip--values {
        padding: 4.5rem 0 5rem;
    }

    .about-hero--page {
        padding: 6rem 0 4rem;
    }

    .about-dr-feature,
    .about-dr-feature--reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            'head'
            'vis'
            'cont';
        padding: 2.25rem 1.75rem 2.5rem;
        gap: 1.5rem;
    }

    .about-dr-photo {
        max-width: 320px;
    }

    .about-dr-feature__heading {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .about-team-lux-kicker {
        font-size: 1.85rem;
    }

    .about-story-lux__title {
        font-size: 1.75rem;
    }

    .about-story-lux__lead {
        font-size: 1.12rem;
    }

    .about-values-block {
        padding: 2rem 1.5rem 2.25rem 1.65rem;
    }

    .about-values-masthead {
        margin-bottom: 2.25rem;
    }

    .about-dr-feature__heading {
        margin-left: 0;
        margin-right: 0;
        padding: 1.15rem 1.15rem 1.35rem;
    }
}

.about-story {
    padding: 7rem 0 4rem;
}

.about-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.about-section-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--teal-dark);
    letter-spacing: -0.3px;
    margin-bottom: 1.2rem;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 640px;
    margin-bottom: 2.3rem;
}

.about-points {
    display: grid;
    gap: 1.2rem;
}

.about-point {
    background: rgba(220, 230, 233, 0.42);
    border: 1px solid rgba(44, 95, 111, 0.12);
    border-radius: 18px;
    padding: 1.35rem 1.35rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-point h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: -0.2px;
    margin-bottom: 0.55rem;
    color: var(--teal-dark);
    font-weight: 600;
}

.about-point p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 0.98rem;
}

.about-point:hover {
    transform: translateY(-3px);
    border-color: rgba(61, 122, 138, 0.22);
    box-shadow: 0 14px 35px rgba(44, 95, 111, 0.10);
}

.about-split-media {
    position: relative;
}

.about-media-card {
    position: relative;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(220, 230, 233, 0.55) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(44, 95, 111, 0.08) 100%);
    border: 1px solid rgba(44, 95, 111, 0.14);
    overflow: hidden;
    min-height: 300px;
}

.about-media-art {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    width: min(200px, 48%);
    opacity: 0.95;
    pointer-events: none;
}

.about-media-svg {
    width: 100%;
    height: auto;
    display: block;
}

.about-media-glow {
    position: absolute;
    inset: -60px -60px auto -60px;
    height: 220px;
    background: radial-gradient(circle at 30% 40%, rgba(61, 122, 138, 0.35), transparent 62%);
    filter: blur(2px);
}

.about-media-inner {
    position: relative;
    z-index: 1;
    padding: 2.2rem 2rem;
    padding-right: min(42%, 11rem);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-media-label {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    color: rgba(44, 95, 111, 0.8);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.about-media-value {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 650;
    color: var(--teal-dark);
    letter-spacing: -0.4px;
    margin-bottom: 0.9rem;
}

.about-media-note {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.85;
}

.about-media-stats {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.about-stat {
    border-radius: 18px;
    padding: 1.05rem 0.9rem;
    background: rgba(245, 246, 248, 0.7);
    border: 1px solid rgba(44, 95, 111, 0.12);
}

.about-stat-num {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: var(--teal-dark);
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 0.35rem;
}

.about-stat-label {
    font-family: var(--font-sans);
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.35;
}

.about-why {
    padding: 2rem 0 7rem;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
}

.about-why-card {
    background: linear-gradient(180deg, rgba(220, 230, 233, 0.35) 0%, rgba(255, 255, 255, 0.85) 65%);
    border: 1px solid rgba(44, 95, 111, 0.12);
    border-radius: 20px;
    padding: 1.6rem 1.45rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 170px;
}

.about-why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--teal-dark);
    letter-spacing: -0.2px;
    margin-bottom: 0.7rem;
    font-weight: 650;
}

.about-why-card p {
    font-family: var(--font-sans);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.85;
    font-size: 0.98rem;
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(44, 95, 111, 0.10);
}

.about-cta {
    padding: 4.5rem 0 6.2rem;
    background: linear-gradient(160deg, rgba(44, 95, 111, 0.08) 0%, rgba(255, 255, 255, 0.9) 55%, rgba(44, 95, 111, 0.06) 100%);
    border-top: 1px solid rgba(44, 95, 111, 0.08);
}

.about-cta-inner {
    text-align: center;
}

.about-cta-inner h2 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    color: var(--teal-dark);
    letter-spacing: -0.4px;
    margin-bottom: 1rem;
}

.about-cta-inner p {
    font-family: var(--font-sans);
    color: var(--text-light);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 720px;
    margin: 0 auto 2.2rem;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-about-secondary {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal-dark);
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    border: 2px solid rgba(44, 95, 111, 0.35);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    border-color: var(--teal-dark);
    background: rgba(220, 230, 233, 0.45);
    transform: translateY(-2px);
}

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

    .about-hero {
        padding: 6.2rem 0 4.6rem;
    }

    .about-hero h1 {
        font-size: 2.6rem;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-media-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .about-media-inner {
        padding-right: 2rem;
        min-height: auto;
    }

    .about-media-art {
        position: relative;
        top: auto;
        right: auto;
        width: 160px;
        margin: 0 auto 0.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #c33;
}

.success-message {
    background: #efe;
    color: #3c3;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #3c3;
}

/* =========================================================
   Homepage HERO — exact spec (scoped to .hero)
   ========================================================= */

/* Split homepage hero — warm editorial layout */
.hero.hero--split {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* Match Dentistry strip light blue-grey */
    background-color: var(--teal-mist);
    background-image: linear-gradient(
        180deg,
        var(--teal-mist) 0%,
        var(--teal-frost) 100%
    );
    min-height: max(620px, min(100vh, 920px));
    --hero-shift-up: 72px;
}

.hero.hero--split::before {
    display: none;
}

/* Decorative layers in photo zone (back → front):
   background photo → left-fade overlay → dots → photo → card */

.hero-container {
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 70px;
    padding-right: 70px;
    min-height: calc(100vh - 72px);
    max-height: 900px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Reset legacy `.hero h1` / subtitle rules so split layout typography wins */
.hero.hero--split h1.hero-title {
    margin: 0;
    padding: 0;
    font-size: unset;
    font-weight: unset;
    line-height: unset;
    letter-spacing: unset;
    color: inherit;
    text-align: left;
}

.hero.hero--split .hero-left {
    position: relative;
    z-index: 5;
    max-width: 480px;
    padding-top: 12px;
    transform: translateY(calc(-1 * var(--hero-shift-up)));
}

.hero.hero--split .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(36, 93, 110, 0.82);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 1.7px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    border: 1px solid rgba(36, 93, 110, 0.10);
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.hero-title--words .hero-title__line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.35em;
    row-gap: 0.1em;
}

.hero.hero--split .title-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw + 1.1rem, 3.45rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.hero.hero--split .title-word--teal {
    color: #245D6E;
    font-style: normal;
}

.hero.hero--split .title-word--gold {
    color: #C7A97F;
}

.hero.hero--split .title-word--italic {
    font-style: italic;
    font-weight: 500;
}

.hero.hero--split .hero-subtitle {
    margin-top: 22px;
    margin-left: 0;
    margin-right: 0;
    max-width: 440px;
    font-size: 17px;
    line-height: 1.75;
    color: #74828a;
    font-family: 'Inter', sans-serif;
}

.hero.hero--split .hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.hero.hero--split .btn-primary,
.hero.hero--split .btn-secondary {
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: 'Inter', var(--font-sans), sans-serif;
    transition: all 0.3s ease;
}

.hero.hero--split .btn-primary {
    background: #245D6E;
    color: white;
    box-shadow:
    0 10px 25px rgba(36,93,110,0.15);
}

.hero.hero--split .btn-secondary {
    background: white;
    border: 1px solid #dce4e8;
    color: #245D6E;
}

.hero.hero--split .btn-primary:hover,
.hero.hero--split .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero.hero--split .hero-stats {
    margin-top: 28px;
    width: 100%;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero.hero--split .stat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.hero.hero--split .stat-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(36, 93, 110, 0.06);
}

.hero.hero--split .stat-item__icon--star {
    background: rgba(199, 169, 127, 0.12);
}

.hero.hero--split .stat-item__body h3 {
    margin: 0;
    color: #24414d;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.1;
}

.hero.hero--split .stat-item__body p {
    margin: 6px 0 0;
    color: #7f8c93;
    font-size: 12px;
    font-family: 'Inter', var(--font-sans), sans-serif;
    line-height: 1.35;
}

.hero.hero--split .hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 40px;
    transform: translateY(calc(-1 * var(--hero-shift-up)));
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

/* Two layered shapes (no photo) */
.hero.hero--split .hero-shape--one {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: #d6e4e2;
    border-radius: 60% 0 0 60% / 50% 0 0 50%;
    z-index: -3;
    pointer-events: none;
}

.hero.hero--split .hero-shape--two {
    position: absolute;
    right: 30px;
    top: 5%;
    width: 44%;
    height: 90%;
    background: #e8f0ef;
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    z-index: -2;
    pointer-events: none;
}

.hero.hero--split .hero-gold-arc {
    position: absolute;
    right: -220px;
    top: -40px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Organic blob behind doctor */
.hero.hero--split .hero-blob {
    position: absolute;
    width: 480px;
    height: 440px;
    background: #c8d8d6;
    border-radius: 71% 29% 62% 38% / 44% 55% 45% 56%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 0;
    opacity: 0.75;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero.hero--split { --hero-shift-up: 32px; }
}

/* (Legacy) hero-shape removed for layered right shapes */
.hero.hero--split .hero-shape { display: none; }

.hero.hero--split .hero-dots {
    position: absolute;
    left: 18%;
    bottom: 18%;
    width: 140px;
    height: 120px;
    z-index: 2;
    opacity: 0.15;
    background-image: radial-gradient(circle, rgba(80, 90, 95, 0.45) 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
}

.hero.hero--split .hero-image {
    position: relative;
    height: auto;
    max-height: min(78vh, 720px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    z-index: 1;
    background: transparent;
    right: 70px;
    transform: translateY(-37px) scale(1.04); /* net ~1cm down */
    transform-origin: bottom center;
    filter:
    drop-shadow(
      0 30px 60px rgba(0,0,0,0.12)
    );
}

/* Bottom fade into hero background (kept) */
.hero.hero--split .hero-right .hero-bottom-fade {
    display: none;
}

.hero.hero--split .doctor-card {
    position: absolute;
    right: 12%;
    bottom: 18%;
    top: auto;
    width: 200px;
    padding: 20px 20px 18px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 3;
    transform: translateY(-266px); /* net ~7cm up */
}

.hero.hero--split .doctor-card h4 {
    margin: 0;
    color: #30424a;
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.hero.hero--split .doctor-card p {
    margin-top: 8px;
    color: #7d8b92;
    font-size: 13px;
    line-height: 1.5;
    font-family: 'Inter', var(--font-sans), sans-serif;
}

.hero.hero--split .doctor-card__rule {
    border: none;
    border-top: 1px solid rgba(199, 169, 127, 0.45);
    margin: 14px 0 0;
}

.hero.hero--split .signature {
    display: block;
    margin-top: 12px;
    color: #c7a97f;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

/* Feature strip + partners (below hero) */
.home-feature-bar {
    position: relative;
    z-index: 3;
    margin: -220px 0 0; /* move up ~2–3cm more */
    padding: 0 24px 40px;
    background: var(--teal-mist);
}

.home-feature-bar__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 36px 48px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(36, 93, 110, 0.06);
}

.home-feature-bar__col {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-feature-bar__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(36, 93, 110, 0.08);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.home-feature-bar__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #245D6E;
    margin: 0 0 0.4rem;
}

.home-feature-bar__text {
    font-family: 'Inter', var(--font-sans), sans-serif;
    font-size: 0.9rem;
    color: #6b7780;
    line-height: 1.55;
    margin: 0;
}


@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
        padding: 32px 24px 48px;
    }

    .hero.hero--split .hero-left {
        max-width: none;
        transform: none;
    }

    .hero.hero--split .hero-right {
        transform: none;
        min-height: 420px;
        padding-bottom: 32px;
    }

    .hero-bg-arc {
        right: -40%;
        opacity: 0.5;
    }

    .home-feature-bar {
        margin-top: 0;
    }

    .home-feature-bar__inner {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .hero.hero--split .doctor-card {
        right: 16px;
        bottom: 10%;
    }

    .hero.hero--split .hero-stats {
        flex-direction: column;
        max-width: none;
    }
}

/* Error pages (404 / 500) */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(199, 169, 127, 0.08), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(44, 95, 111, 0.07), transparent 55%),
        #fdfbf6;
}

.error-page__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-page__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #C7A97F);
    margin-bottom: 1.25rem;
}

.error-page__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--teal-dark, #1f4a55);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.error-page__body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light, #6b7780);
    line-height: 1.7;
    margin: 0 auto 2.25rem;
    max-width: 480px;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Error pages (404 / 500) */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(199, 169, 127, 0.08), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(44, 95, 111, 0.07), transparent 55%),
        #fdfbf6;
}

.error-page__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-page__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #C7A97F);
    margin-bottom: 1.25rem;
}

.error-page__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--teal-dark, #1f4a55);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.error-page__body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light, #6b7780);
    line-height: 1.7;
    margin: 0 auto 2.25rem;
    max-width: 480px;
}

.error-page__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
