/* ==========================================================================
   CLINIC — public site styles
   Theme     : "Quiet confidence" — premium, contemporary, reassuring
   Palette   : deep clinical teal, warm sand neutrals, a muted brass accent
   Typography: Fraunces (headings) + Inter (body/UI)

   Sections marked .band alternate white / sand automatically (see
   partials/sections.html), so section order never needs manual colours.
   ========================================================================== */

:root {
    --teal-950: #062b2a;
    --teal-900: #093b39;
    --teal-800: #0d4f4c;
    --teal-700: #126460;
    --teal-600: #1a7a74;
    --teal-100: #d6ece8;
    --teal-50: #edf6f4;

    --sand-50: #faf7f2;
    --sand-100: #f3ece1;
    --sand-200: #e7dccb;

    --brass: #8a6330;
    --coral: #e08a64;
    --alert: #b3261e;
    --alert-bg: #fdf1ef;

    --ink: #122628;
    --slate: #4b5f60;
    --line: #dfe5e3;
    --white: #ffffff;

    --shadow-sm: 0 1px 2px rgba(9, 43, 41, 0.05), 0 4px 14px rgba(9, 43, 41, 0.06);
    --shadow-md: 0 2px 6px rgba(9, 43, 41, 0.06), 0 18px 40px rgba(9, 43, 41, 0.10);
    --radius-sm: 10px;
    --radius-lg: 22px;
    --container: 1200px;
    --header-h: 76px;

    /* admin.css (the inline-editing chrome) reads this shared palette
       under these generic names — keep both sets in sync if the palette
       above changes. */
    --text: var(--ink);
    --muted: var(--slate);
    --border: var(--line);
    --background: var(--sand-50);
    --surface: #ffffff;
    --primary: var(--teal-800);
    --primary-dark: var(--teal-900);
    --secondary: var(--teal-600);
    --radius: var(--radius-sm);
    --shadow: var(--shadow-sm);
    --transition: 0.2s ease;

    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================================================
   BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
    font-optical-sizing: auto;
}

h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--teal-700);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--teal-900);
}

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

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 880px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 200;
    background: var(--teal-900);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 12px;
    color: var(--white);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 12px;
}

.prose,
.section-lede,
.page-hero-lede,
.hero-lede {
    white-space: pre-line;
}

.prose {
    color: var(--slate);
    font-size: 1.05rem;
}

.prose strong,
.section-lede strong {
    color: var(--ink);
}

.empty-state {
    color: var(--slate);
    text-align: center;
    padding: 32px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 15px 28px;
    font-size: 1rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.btn-primary {
    background: var(--teal-800);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(13, 79, 76, 0.25);
}

.btn-primary:hover {
    background: var(--teal-900);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--teal-800);
    border-color: rgba(13, 79, 76, 0.3);
}

.btn-ghost:hover {
    background: var(--teal-50);
    border-color: var(--teal-800);
    color: var(--teal-900);
}

.btn-light {
    background: var(--white);
    color: var(--teal-900);
}

.btn-light:hover {
    background: var(--sand-100);
    color: var(--teal-950);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.text-link,
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--teal-700);
    text-decoration: none;
}

.text-link:hover,
.service-link:hover {
    color: var(--teal-900);
    text-decoration: underline;
}

.service-link::after {
    content: "\2192";
    transition: transform var(--transition);
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* Makes a whole card clickable through its one real link. Switched off
   in edit mode so it never sits on top of the admin's pencil/trash
   buttons. */
.stretched-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

body.wp-edit-mode .stretched-link::before {
    display: none;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */

.topbar {
    background: var(--teal-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 38px;
}

.topbar p {
    margin: 0;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar i {
    color: var(--teal-100);
    margin-right: 6px;
}

.topbar-emergency a {
    color: var(--white);
    font-weight: 700;
}

.topbar-emergency i {
    color: #ffb4a0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px rgba(9, 43, 41, 0.06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: var(--header-h);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.site-logo {
    width: 44px;
    height: 44px;
}

.site-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-900);
}

.site-tagline {
    font-size: 0.74rem;
    color: var(--slate);
    letter-spacing: 0.02em;
}

.mega-nav {
    margin-left: auto;
}

.mega-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

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

.mega-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.has-dropdown > .mega-nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.6;
}

.mega-nav-link:hover {
    background: var(--teal-50);
    color: var(--teal-900);
}

.mega-nav-link.active {
    color: var(--teal-800);
    font-weight: 600;
    background: var(--teal-50);
}

.mega-nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 260px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: grid;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

/* An invisible bridge so the pointer can travel from the link to the
   panel without the dropdown closing. */
.mega-nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.mega-nav-item:hover > .mega-nav-dropdown,
.mega-nav-item:focus-within > .mega-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-nav-dropdown a {
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.93rem;
}

.mega-nav-dropdown a:hover,
.mega-nav-dropdown a[aria-current="page"] {
    background: var(--teal-50);
    color: var(--teal-900);
}

.mega-nav-dropdown .mega-nav-dropdown-all {
    font-weight: 600;
    color: var(--teal-800);
    border-bottom: 1px solid var(--line);
    border-radius: 10px 10px 0 0;
    margin-bottom: 4px;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--teal-900);
    text-decoration: none;
    white-space: nowrap;
}

.header-call i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 0.85rem;
}

.mega-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--teal-900);
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 1120px) {
    .header-call span {
        display: none;
    }
}

@media (max-width: 980px) {

    .mega-nav-toggle {
        display: grid;
        place-items: center;
    }

    .mega-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(9, 43, 41, 0.10);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        display: none;
    }

    .mega-nav.is-open {
        display: block;
    }

    .mega-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 20px;
    }

    .mega-nav-link {
        display: flex;
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 1.02rem;
    }

    .has-dropdown > .mega-nav-link::after {
        display: none;
    }

    .mega-nav-dropdown,
    .mega-nav-item:hover > .mega-nav-dropdown,
    .mega-nav-item:focus-within > .mega-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--teal-100);
        border-radius: 0;
        margin: 0 0 8px 14px;
        padding: 0 0 0 8px;
        min-width: 0;
    }

    .mega-nav-dropdown::before,
    .mega-nav-dropdown .mega-nav-dropdown-all {
        display: none;
    }

    .site-header-inner {
        position: relative;
    }

    .site-header-actions {
        margin-left: auto;
    }
}

@media (max-width: 760px) {

    .topbar {
        display: none;
    }

    .site-tagline {
        display: none;
    }

    .header-call {
        display: none;
    }
}

@media (max-width: 420px) {

    .site-header-inner,
    .site-header-actions {
        gap: 8px;
    }

    .mega-nav-toggle {
        width: 40px;
        height: 40px;
    }

    .site-name {
        font-size: 1.1rem;
    }

    .site-logo {
        width: 36px;
        height: 36px;
    }

    .header-book {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section--tight {
    padding: 28px 0;
}

/* Alternate every other generic block on a warm sand background. */
main > .band:nth-child(even of .band) {
    background: var(--sand-50);
}

.section-head {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-head h2 {
    margin-bottom: 14px;
}

.section-head .section-lede {
    color: var(--slate);
    font-size: 1.08rem;
    margin: 0;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--row {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px 40px;
    flex-wrap: wrap;
}

.section-head--row > div:first-child {
    max-width: 680px;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.section-head--row .section-actions {
    margin-top: 0;
}

.aside-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 32px 64px;
    align-items: start;
}

.aside-layout .section-head {
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

@media (max-width: 860px) {

    .aside-layout {
        grid-template-columns: 1fr;
    }

    .aside-layout .section-head {
        position: static;
    }
}

/* ==========================================================================
   HOME HERO
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
    background:
        radial-gradient(900px 500px at 88% 10%, rgba(214, 236, 232, 0.9), transparent 60%),
        radial-gradient(700px 480px at 0% 100%, rgba(243, 236, 225, 0.9), transparent 60%),
        var(--sand-50);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 48px 64px;
    align-items: center;
}

.hero h1 {
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.06;
    margin-bottom: 22px;
}

.hero-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--slate);
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-call {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.hero-call a {
    font-weight: 600;
    white-space: nowrap;
}

.hero-trust {
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--sand-200);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal-900);
}

.hero-trust i {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal-700);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.hero-media {
    position: relative;
    margin: 0;
    justify-self: end;
    width: min(100%, 500px);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 8% -8% -6% 10%;
    border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
    background: linear-gradient(140deg, var(--teal-100), rgba(224, 138, 100, 0.25));
    z-index: 0;
}

.hero-photo {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    background: var(--teal-50);
    box-shadow: var(--shadow-md);
}

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

.hero-badge {
    position: absolute;
    z-index: 2;
    left: -28px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 14px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

.hero-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: var(--ink);
}

.hero-badge small {
    color: var(--slate);
    font-size: 0.82rem;
}

.hero-badge-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-800);
    color: var(--white);
}

@media (max-width: 900px) {

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

    .hero-media {
        justify-self: center;
        width: min(100%, 420px);
        order: -1;
    }

    .hero-badge {
        left: 12px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   QUICK INFO (home)
   ========================================================================== */

.quick-info {
    padding-top: clamp(48px, 6vw, 72px);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.quick-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.quick-card h3 {
    margin: 0;
}

.quick-card .text-link {
    margin-top: auto;
}

.quick-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 1.15rem;
}

.quick-address {
    color: var(--slate);
    margin: 0;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.tag-list li {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--sand-50);
    border: 1px solid var(--sand-200);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--teal-900);
}

.mini-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    height: 150px;
}

.mini-map iframe,
.footer-map iframe,
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

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

/* ==========================================================================
   HOURS LIST (shared)
   ========================================================================== */

.hours-list {
    margin: 0;
    display: grid;
    gap: 2px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row dt {
    font-weight: 600;
    color: var(--ink);
}

.hours-row dd {
    margin: 0;
    text-align: right;
    color: var(--slate);
}

.hours-row dd span {
    display: block;
    white-space: nowrap;
}

.hours-row--closed dd {
    color: var(--alert);
    font-weight: 600;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--slate);
    margin: 10px 0 0;
}

/* ==========================================================================
   SPLIT (photo + text)
   ========================================================================== */

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px 72px;
    align-items: center;
}

main > .band:nth-child(even of .band) .split-media {
    order: 2;
}

.split-media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--teal-50);
    box-shadow: var(--shadow-md);
}

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

.split-copy .prose {
    margin-bottom: 24px;
}

.credential-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.credential-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
}

.credential-list strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.35;
}

.credential-list small {
    display: block;
    color: var(--slate);
    font-size: 0.84rem;
    margin-top: 2px;
}

.credential-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 0.9rem;
}

@media (max-width: 900px) {

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

    .split-media,
    main > .band:nth-child(even of .band) .split-media {
        order: 0;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 520px) {
    .credential-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-100);
}

.service-card h3 {
    margin: 6px 0 0;
}

.service-card p {
    color: var(--slate);
    margin: 0;
}

.service-card .service-link {
    margin-top: auto;
    padding-top: 8px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--teal-800), var(--teal-600));
    color: var(--white);
    font-size: 1.25rem;
}

.service-card .service-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brass);
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */

.stats-band {
    background:
        radial-gradient(600px 300px at 90% 0%, rgba(26, 122, 116, 0.5), transparent 70%),
        var(--teal-900);
    color: var(--white);
    padding: 56px 0;
}

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

.stat {
    text-align: center;
    padding: 8px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:first-child {
    border-left: 0;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 500;
    line-height: 1.1;
}

.stat-label {
    margin-top: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 760px) {

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat:nth-child(odd) {
        border-left: 0;
    }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, calc((100% - 48px) / 3));
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 12px;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial {
    scroll-snap-align: start;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.testimonial-stars {
    color: #d49a2a;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial blockquote {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--ink);
}

.testimonial figcaption {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.87rem;
    color: var(--slate);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--teal-900);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.slider-btn:hover {
    background: var(--teal-800);
    color: var(--white);
}

@media (max-width: 700px) {
    .testimonial-track {
        grid-auto-columns: 86%;
    }
}

/* ==========================================================================
   ICON CARDS, TIMELINE, STEPS, CHECKLIST, RATES
   ========================================================================== */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.icon-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.icon-card h3 {
    margin-bottom: 6px;
}

.icon-card p {
    color: var(--slate);
    margin: 0;
}

.icon-card .icon-card-meta {
    color: var(--brass);
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.icon-card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 1.2rem;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 118px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--teal-100);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 0 0 32px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 112px;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal-700);
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--teal-800);
    text-align: right;
}

.timeline-body h3 {
    margin-bottom: 4px;
}

.timeline-body p {
    color: var(--slate);
    margin: 0;
}

@media (max-width: 560px) {

    .timeline::before {
        left: 6px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-left: 32px;
    }

    .timeline-item::before {
        left: 0;
    }

    .timeline-year {
        text-align: left;
    }
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.step {
    counter-increment: step;
    position: relative;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--teal-700);
    margin-bottom: 16px;
}

.step p {
    color: var(--slate);
    margin: 0;
}

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px 20px;
}

.checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.checklist i {
    color: var(--teal-700);
    font-size: 1.1rem;
    margin-top: 3px;
}

.checklist strong {
    display: block;
    font-weight: 600;
    line-height: 1.45;
}

.checklist-note {
    display: block;
    color: var(--slate);
    font-size: 0.93rem;
    margin-top: 2px;
}

.rate-table {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 8px 28px;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.rate-row:last-child {
    border-bottom: 0;
}

.rate-name {
    font-weight: 600;
    margin: 0;
}

.rate-note {
    color: var(--slate);
    font-size: 0.92rem;
    margin: 4px 0 0;
}

.rate-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-800);
    white-space: nowrap;
    margin: 0;
}

/* ==========================================================================
   PHOTO GRID, ARTICLES, CARDS
   ========================================================================== */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.photo-tile {
    margin: 0;
}

.photo-tile-img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--teal-50);
}

.photo-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-tile:hover .photo-tile-img img {
    transform: scale(1.04);
}

.photo-tile figcaption {
    padding: 14px 4px 0;
}

.photo-tile figcaption strong {
    display: block;
}

.photo-tile figcaption span {
    color: var(--slate);
    font-size: 0.92rem;
}

.article-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.article-card,
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.article-card-top {
    display: grid;
    place-items: center;
    height: 132px;
    background:
        radial-gradient(160px 120px at 80% 20%, rgba(224, 138, 100, 0.35), transparent 70%),
        linear-gradient(140deg, var(--teal-800), var(--teal-600));
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.2rem;
}

.article-card-body,
.card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 26px 26px;
    flex: 1;
}

.article-card-body h3 {
    margin: 0;
}

.article-card-body p,
.card-body p {
    color: var(--slate);
    margin: 0;
}

.article-card-body .article-meta {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brass);
}

.article-card-body .service-link {
    margin-top: auto;
    padding-top: 8px;
}

.card-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* ==========================================================================
   NOTICE, FAQ, PROSE
   ========================================================================== */

.notice {
    display: flex;
    gap: 18px;
    padding: 26px 28px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-lg);
}

.notice .notice-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.notice .prose {
    font-size: 1rem;
    margin: 0;
}

.notice .section-actions {
    margin-top: 16px;
}

.notice-icon {
    flex-shrink: 0;
    color: var(--teal-700);
    font-size: 1.4rem;
    margin-top: 2px;
}

.notice--alert {
    background: var(--alert-bg);
    border-color: #f3c9c3;
}

.notice--alert .notice-icon,
.notice--alert .notice-title {
    color: var(--alert);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq[open] {
    border-color: var(--teal-100);
    box-shadow: var(--shadow-sm);
}

.faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    font-weight: 600;
    cursor: pointer;
}

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

.faq summary i {
    flex-shrink: 0;
    color: var(--teal-700);
    transition: transform var(--transition);
}

.faq[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--slate);
    white-space: pre-line;
}

.section--prose {
    padding: 0 0 40px;
}

.page-hero + .section--prose,
.section--prose:first-child {
    padding-top: 56px;
}

.content-block h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: clamp(32px, 5vw, 56px) 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px 48px;
    flex-wrap: wrap;
    padding: clamp(32px, 5vw, 56px);
    border-radius: 28px;
    background:
        radial-gradient(500px 260px at 100% 0%, rgba(224, 138, 100, 0.28), transparent 70%),
        linear-gradient(135deg, var(--teal-900), var(--teal-700));
    color: var(--white);
    width: calc(100% - 40px);
    max-width: calc(var(--container) - 40px);
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 620px;
}

.cta-inner .eyebrow {
    color: #f3c9a8;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 520px) {

    .cta-inner {
        width: calc(100% - 32px);
    }

    .cta-actions .btn {
        flex: 1 1 100%;
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================================
   BOOKING WIDGET
   ========================================================================== */

.booking {
    background:
        radial-gradient(700px 360px at 10% 0%, rgba(214, 236, 232, 0.8), transparent 70%),
        var(--sand-50);
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.booking-frame {
    height: 780px;
    background: var(--sand-50);
}

.booking-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.booking-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px 32px;
    flex-wrap: wrap;
    padding: 18px 28px;
    border-top: 1px solid var(--line);
    background: var(--white);
    font-size: 0.92rem;
    color: var(--slate);
}

.booking-footer p {
    margin: 0;
}

.booking-footer i {
    color: var(--teal-700);
    margin-right: 6px;
}

@media (max-width: 700px) {
    .booking-frame {
        height: 920px;
    }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px 56px;
    align-items: stretch;
}

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

.contact-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

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

.contact-card--wide > div {
    flex: 1;
}

.contact-card p {
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-card a {
    font-weight: 600;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 4px !important;
}

.contact-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--teal-50);
    color: var(--teal-800);
}

.contact-map {
    min-height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {

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

    .contact-map {
        min-height: 340px;
    }
}

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

/* ==========================================================================
   DOCTOR PROFILES & DOWNLOADS
   ========================================================================== */

.profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.profile-photo {
    display: grid;
    place-items: center;
    aspect-ratio: 5 / 4;
    background: linear-gradient(160deg, var(--teal-50), var(--sand-100));
    color: var(--teal-700);
    font-size: 3rem;
}

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

.profile-body {
    padding: 24px 26px 28px;
}

.profile-body h3 {
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.profile-role {
    color: var(--brass);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.profile-facts {
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
}

.profile-facts > div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    font-size: 0.92rem;
}

.profile-facts dt {
    color: var(--slate);
}

.profile-facts dd {
    margin: 0;
    font-weight: 500;
}

/* Empty facts stay in the markup so the inline editor can fill them in,
   but only show while editing. */
.profile-facts > div:has(dd:empty),
.profile-bio:empty {
    display: none;
}

body.wp-edit-mode .profile-facts > div:has(dd:empty),
body.wp-edit-mode .profile-bio:empty {
    display: grid;
    min-height: 1.4em;
}

.profile-bio {
    color: var(--slate);
    font-size: 0.95rem;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.download-list {
    display: grid;
    gap: 14px;
}

.download-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.download-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-50);
    color: var(--teal-800);
    font-size: 1.2rem;
}

.download-text {
    flex: 1;
}

.download-text h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.download-text p {
    color: var(--slate);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 600px) {

    .download-row {
        flex-wrap: wrap;
    }

    .download-row .btn {
        width: 100%;
    }
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */

.page-hero {
    padding: clamp(40px, 6vw, 72px) 0 clamp(44px, 6vw, 72px);
    background:
        radial-gradient(700px 360px at 95% 0%, rgba(214, 236, 232, 0.95), transparent 65%),
        var(--sand-50);
    border-bottom: 1px solid var(--sand-200);
}

.page-hero-copy {
    max-width: 800px;
}

.page-hero h1 {
    font-weight: 500;
    margin-bottom: 16px;
}

.page-hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--slate);
    margin-bottom: 0;
}

.page-hero .hero-actions {
    margin: 28px 0 0;
}

.page-hero--center .container {
    text-align: center;
    max-width: 760px;
}

.page-hero--center .hero-actions {
    justify-content: center;
}

.page-hero--center .hero-call {
    margin-top: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.88rem;
    color: var(--slate);
}

.breadcrumb a {
    color: var(--slate);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--teal-800);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.6rem;
    opacity: 0.6;
}

.breadcrumb [aria-current] {
    color: var(--ink);
    font-weight: 500;
}

.byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
    font-size: 0.92rem;
    color: var(--slate);
}

.byline i {
    color: var(--teal-700);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--teal-950);
    color: rgba(255, 255, 255, 0.78);
    padding-top: 64px;
    font-size: 0.93rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-column h3 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white) !important;
}

.footer-brand:hover {
    text-decoration: none !important;
}

.footer-registration {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--teal-700);
    text-decoration: none;
}

.site-footer .hours-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-footer .hours-row dt {
    color: var(--white);
    font-weight: 500;
}

.site-footer .hours-row dd,
.site-footer .hours-note {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .hours-row--closed dd {
    color: #ffb4a0;
}

.footer-line {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-line i {
    color: var(--teal-100);
    margin-top: 4px;
    width: 14px;
}

.footer-map {
    height: 130px;
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.92;
}

.footer-emergency {
    background: rgba(179, 38, 30, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffe1da;
    font-size: 0.9rem;
}

.footer-emergency p {
    margin: 0;
    padding: 14px 0;
}

.footer-emergency i {
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 28px;
    flex-wrap: wrap;
    padding-top: 22px;
    padding-bottom: 28px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-product {
    opacity: 0.7;
}

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

@media (max-width: 560px) {

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

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

/* ==========================================================================
   FLOATING & MOBILE ACTIONS
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.06);
    color: var(--white);
}

.mobile-actions {
    display: none;
}

@media (max-width: 760px) {

    body {
        padding-bottom: 68px;
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        display: grid;
        grid-template-columns: 1fr 1fr 1.4fr;
        gap: 8px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--line);
        box-shadow: 0 -8px 24px rgba(9, 43, 41, 0.08);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        border-radius: 12px;
        background: var(--teal-50);
        color: var(--teal-900);
        font-weight: 600;
        font-size: 0.92rem;
        text-decoration: none;
    }

    .mobile-actions .mobile-actions-book {
        background: var(--teal-800);
        color: var(--white);
    }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {

    .topbar,
    .site-header,
    .mobile-actions,
    .whatsapp-float,
    .booking,
    .footer-map,
    .cta-banner {
        display: none !important;
    }

    body {
        padding: 0;
    }
}
