/* ==========================================================================
   PRIYA SPA WELLNESS
   Complete Responsive Theme CSS
   Version: 2.0
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
    --green: #173f36;
    --green-dark: #0d2e27;
    --green-deep: #092921;
    --green-2: #245a4d;
    --green-3: #2f6959;

    --ink: #1d2825;
    --muted: #68736f;
    --muted-light: #87928e;

    --cream: #f7f3eb;
    --cream-2: #fbfaf6;
    --paper: #fffdf8;
    --white: #ffffff;

    --gold: #caa467;
    --gold-2: #e1c28f;
    --gold-light: #efd6aa;

    --line: #dfe4df;
    --line-light: rgba(23, 63, 54, .10);

    --danger: #8b302a;
    --success-bg: #dfeee8;

    --shadow-sm: 0 10px 30px rgba(23, 63, 54, .07);
    --shadow: 0 24px 70px rgba(23, 63, 54, .13);
    --shadow-lg: 0 35px 90px rgba(12, 42, 35, .18);

    --radius-sm: 4px;
    --radius: 22px;
    --radius-lg: 34px;

    --container: 1180px;
    --header-height: 86px;

    --font-head: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;

    --transition-fast: .2s ease;
    --transition: .3s ease;
    --transition-slow: .6s ease;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

img[width],
img[height] {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: rgba(202, 164, 103, .25);
    color: var(--green-dark);
}

:focus-visible {
    outline: 3px solid rgba(202, 164, 103, .55);
    outline-offset: 3px;
}

/* ==========================================================================
   3. COMMON LAYOUT
   ========================================================================== */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 850px;
}

.centered {
    text-align: center;
}

.section {
    padding: 105px 0;
}

.soft-bg {
    background: var(--cream);
}

.seo-content {
    background: var(--cream-2);
}

.align-center {
    align-items: center;
}

/* ==========================================================================
   4. SKIP LINK
   ========================================================================== */

.skip-link {
    position: fixed;
    top: -100px;
    left: 15px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow-sm);
}

.skip-link:focus {
    top: 15px;
}

/* ==========================================================================
   5. TOP BAR
   ========================================================================== */

.topbar {
    background: var(--green-dark);
    color: #dce9e5;
    font-size: 12px;
    letter-spacing: .02em;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    transition: color var(--transition-fast);
}

.topbar a:hover {
    color: var(--white);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(30, 60, 50, .08);
    transition:
        box-shadow var(--transition),
        background-color var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 253, 248, .98);
    box-shadow: 0 12px 35px rgba(16, 48, 40, .08);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 222px;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   7. DESKTOP NAVIGATION
   ========================================================================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.btn) {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 86px;
    padding: 31px 0;
    white-space: nowrap;
}

.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;
    height: 2px;
    background: var(--gold);
    transition: right var(--transition-fast);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    right: 0;
}

.nav-cta {
    flex-shrink: 0;
}

/* ==========================================================================
   8. MOBILE MENU BUTTON
   ========================================================================== */

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--ink);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    min-height: 43px;
    padding: 0 20px;
}

.btn-gold {
    background: var(--gold);
    color: #17332d;
    box-shadow: 0 8px 25px rgba(202, 164, 103, .16);
}

.btn-gold:hover {
    background: var(--gold-2);
    box-shadow: 0 12px 30px rgba(202, 164, 103, .24);
}

.btn-dark {
    background: var(--green);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--green-2);
}

.btn-light {
    background: var(--white);
    color: var(--green);
}

.btn-light:hover {
    background: var(--cream);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .65);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

.btn-outline-dark {
    border-color: var(--green);
    color: var(--green);
}

.btn-outline-dark:hover {
    background: var(--green);
    color: var(--white);
}

/* ==========================================================================
   10. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3 {
    margin: 0 0 20px;
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: clamp(50px, 7vw, 88px);
    letter-spacing: -.025em;
}

h2 {
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -.02em;
}

h3 {
    font-size: 29px;
}

p {
    margin: 0 0 20px;
}

.lead {
    font-size: 19px;
    color: #40504b;
}

.eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--gold-light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(23, 63, 54, .35);
    color: var(--green);
    font-weight: 700;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.text-link:hover {
    color: var(--green-2);
    border-color: var(--gold);
}

/* ==========================================================================
   11. HERO
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    height: min(820px, calc(100vh - 124px));
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 32, 27, .92) 0%,
            rgba(9, 37, 31, .72) 45%,
            rgba(9, 37, 31, .18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero h1 {
    max-width: 780px;
    color: var(--white);
}

.hero h1 em {
    color: #f2d8a8;
    font-weight: 500;
}

.hero-content > p {
    max-width: 650px;
    color: #e6efec;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 45px;
    color: #dfe9e6;
    font-size: 13px;
}

.scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: var(--white);
    transform: translateX(-50%);
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    50% {
        transform: translate(-50%, 7px);
    }
}

/* ==========================================================================
   12. SPLIT CONTENT
   ========================================================================== */

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
}

.image-stack {
    position: relative;
    padding: 0 45px 45px 0;
}

.image-main,
.image-panel img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 3px 80px 3px 3px;
}

.image-stack::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 68%;
    height: 68%;
    background: #e8ddca;
    border-radius: 3px;
}

.image-badge {
    position: absolute;
    right: 0;
    bottom: 38px;
    display: flex;
    width: 160px;
    height: 160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.image-badge strong {
    font-family: var(--font-head);
    font-size: 34px;
}

.image-badge span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ==========================================================================
   13. FEATURE LIST
   ========================================================================== */

.feature-list {
    margin: 32px 0;
}

.feature-list > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.feature-list > div:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-list > div > span {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 22px;
}

.feature-list strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ==========================================================================
   14. SERVICES
   ========================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 55px rgba(30, 62, 53, .08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-icon {
    position: absolute;
    right: 18px;
    bottom: -25px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 22px;
}

.service-card-body {
    padding: 30px;
}

.duration {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 8px 0 13px;
    font-size: 30px;
}

.service-card p {
    min-height: 70px;
    color: var(--muted);
    font-size: 14px;
}

.service-card .text-link {
    font-size: 13px;
}

/* ==========================================================================
   15. EXPERIENCE SECTION
   ========================================================================== */

.experience-section {
    background: var(--green);
    color: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.experience-copy h2 {
    color: var(--white);
}

.experience-copy > p {
    color: #d2e1dc;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.stats-row div {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.stats-row strong {
    display: block;
    color: #efcf99;
    font-family: var(--font-head);
    font-size: 35px;
}

.stats-row span {
    color: #d3e3de;
    font-size: 11px;
}

.experience-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mini-card {
    min-height: 190px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .07);
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.mini-card:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-4px);
}

.mini-card > span {
    font-size: 25px;
}

.mini-card h3 {
    margin: 15px 0 9px;
    color: var(--white);
    font-size: 25px;
}

.mini-card p {
    margin: 0;
    color: #cadbd6;
    font-size: 13px;
}

/* ==========================================================================
   16. GALLERY
   ========================================================================== */

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}

.gallery-mosaic a {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.gallery-mosaic a:first-child {
    grid-row: 1 / 3;
}

.gallery-mosaic a:last-child {
    grid-column: 2 / 4;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.gallery-mosaic a:hover img {
    transform: scale(1.04);
}

/* ==========================================================================
   17. TESTIMONIALS
   ========================================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.testimonial {
    margin: 0;
    padding: 36px;
    border: 1px solid #e5e5dc;
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--gold);
    letter-spacing: .15em;
}

.testimonial p {
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.35;
}

.testimonial footer {
    color: var(--muted);
    font-size: 12px;
}

/* ==========================================================================
   18. BOOKING SECTION
   ========================================================================== */

.booking-section {
    background: #0f342c;
    color: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.booking-copy {
    padding-top: 35px;
}

.booking-copy h2 {
    color: var(--white);
}

.booking-copy > p {
    color: #d2e0dc;
}

.booking-contact-card {
    margin-top: 45px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.booking-contact-card span,
.booking-contact-card small {
    display: block;
    color: #c9dbd6;
    font-size: 12px;
}

.booking-contact-card a {
    color: #efd19e;
    font-family: var(--font-head);
    font-size: 38px;
    transition: color var(--transition-fast);
}

.booking-contact-card a:hover {
    color: var(--white);
}

/* ==========================================================================
   19. FORMS
   ========================================================================== */

.form-card {
    padding: 42px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-card > p {
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-grid label {
    display: block;
    min-width: 0;
}

.form-grid label > span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid #d9dfdc;
    border-radius: 3px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 164, 103, .16);
}

.form-grid textarea {
    min-height: 130px;
    resize: vertical;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    width: 17px !important;
    min-width: 17px;
    margin-top: 5px;
}

.checkbox span {
    color: var(--muted);
    font-weight: 500 !important;
}

.form-submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.form-submit small {
    max-width: 250px;
    color: var(--muted);
}

.form-errors {
    grid-column: 1 / -1;
    margin-bottom: 16px;
    padding: 12px 15px;
    border: 1px solid #edcbc8;
    background: #fff0ef;
    color: var(--danger);
    font-size: 13px;
}

.form-errors ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

/* ==========================================================================
   20. PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;
    display: flex;
    height: 520px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.page-hero.short {
    height: 420px;
}

.page-hero-bg,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-bg {
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(7, 35, 29, .90),
        rgba(7, 35, 29, .28)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(48px, 6vw, 75px);
}

.page-hero p {
    max-width: 650px;
    color: #e1ece8;
    font-size: 18px;
}

/* ==========================================================================
   21. VALUES
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    padding: 34px 28px;
    border-top: 3px solid var(--gold);
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.value-card > span {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 24px;
}

.value-card h3 {
    margin: 20px 0 10px;
    font-size: 29px;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
}

/* ==========================================================================
   22. SERVICES DETAIL
   ========================================================================== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-row.reverse .service-row-image {
    order: 2;
}

.service-row-image {
    min-width: 0;
    overflow: hidden;
}

.service-row-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 2px 70px 2px 2px;
    transition: transform .5s ease;
}

.service-row-image:hover img {
    transform: scale(1.025);
}

.service-number {
    color: #d9c49d;
    font-family: var(--font-head);
    font-size: 32px;
}

.service-row-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.service-row-content li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
}

.service-row-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* ==========================================================================
   23. THERAPY HERO
   ========================================================================== */

.therapy-hero {
    padding: 75px 0 95px;
    background: linear-gradient(135deg, #f7f1e6, #fff);
}

.therapy-hero-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.therapy-hero-copy h1 {
    font-size: clamp(55px, 7vw, 80px);
}

.therapy-hero-copy > p {
    color: var(--muted);
    font-size: 19px;
}

.therapy-meta {
    display: flex;
    gap: 30px;
    margin: 28px 0;
}

.therapy-meta span {
    padding-left: 13px;
    border-left: 2px solid var(--gold);
    color: var(--muted);
    font-size: 12px;
}

.therapy-meta strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
}

.therapy-hero-image {
    min-width: 0;
}

.therapy-hero-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 120px 3px 3px 3px;
}

/* ==========================================================================
   24. THERAPY DETAILS
   ========================================================================== */

.therapy-details-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.benefit-box {
    padding: 38px;
    background: var(--green);
    color: var(--white);
}

.benefit-box h3 {
    color: var(--white);
}

.benefit-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-box li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.benefit-box li span {
    color: #efcf99;
}

.small-note {
    margin-top: 25px;
    color: #c7d7d2;
    font-size: 11px;
}

/* ==========================================================================
   25. FULL GALLERY
   ========================================================================== */

.full-gallery {
    columns: 3 320px;
    column-gap: 18px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    break-inside: avoid;
}

.gallery-item img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.gallery-item:nth-child(3n) img {
    aspect-ratio: 1 / 1.2;
}

.gallery-item span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   26. LIGHTBOX
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: rgba(4, 18, 15, .94);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ==========================================================================
   27. CONTACT
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    font-weight: 700;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    color: var(--muted);
    font-size: 11px;
}

.contact-card strong {
    font-size: 14px;
}

.hours-box {
    padding: 25px;
    background: var(--green);
    color: var(--white);
}

.hours-box h3 {
    color: var(--white);
    font-size: 26px;
}

.hours-box small {
    color: #cfdfda;
}

.form-card.light {
    border: 1px solid #e4e5df;
    background: #fbfaf6;
    box-shadow: none;
}

/* ==========================================================================
   28. MAP
   ========================================================================== */

.map-placeholder {
    display: grid;
    height: 430px;
    place-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #e9e3d6, #d8e5df);
    text-align: center;
}

.map-placeholder span {
    font-size: 42px;
}

.map-placeholder h2 {
    margin: 10px;
    font-size: 40px;
}

.map-placeholder code {
    padding: 2px 6px;
    background: var(--white);
}

/* ==========================================================================
   29. FAQ
   ========================================================================== */

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    border: 0;
    background: none;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 27px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.accordion-item button b {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 400;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.accordion-content p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
}

.accordion-item.open .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content p {
    padding-bottom: 25px;
}

/* ==========================================================================
   30. LEGAL PAGES
   ========================================================================== */

.legal-hero {
    padding: 90px 0 55px;
    background: var(--cream);
}

.legal-hero h1 {
    font-size: 66px;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 34px;
}

.legal-content p {
    color: #53615d;
}

/* ==========================================================================
   31. THANK YOU / ERROR
   ========================================================================== */

.thank-you-section {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding: 90px 0;
    background: var(--cream);
}

.thank-you-card {
    max-width: 750px;
    margin: auto;
    padding: 70px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--success-bg);
    color: var(--green);
    font-size: 30px;
}

.error-code {
    display: block;
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 90px;
}

/* ==========================================================================
   32. FOOTER CTA
   ========================================================================== */

.footer-cta {
    padding: 42px 0;
    background: var(--gold);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta h2 {
    margin: 0;
    color: #17342d;
    font-size: 45px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   33. FOOTER
   ========================================================================== */

.site-footer {
    padding: 80px 0 25px;
    background: var(--green-deep);
    color: #c8d8d3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr .7fr;
    gap: 55px;
}

.footer-brand img {
    width: 220px;
    max-width: 100%;
    margin-bottom: 20px;
}

.site-footer h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 10px 0;
    color: #c8d8d3;
    font-size: 13px;
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer p {
    font-size: 13px;
}

.professional-note {
    color: #93aca5 !important;
    font-size: 11px !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #91aaa3;
    font-size: 11px;
}

/* ==========================================================================
   34. FLOATING CALL / WHATSAPP
   ========================================================================== */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-actions a {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.floating-actions a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .24);
}

.floating-call {
    background: var(--green);
}

.floating-whatsapp {
    background: #25d366;
    font-size: 12px;
}

/* ==========================================================================
   35. REVEAL ANIMATION
   ========================================================================== */

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s ease,
        transform .75s ease;
}

.js .reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   36. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   37. LARGE TABLET / SMALL DESKTOP
   ========================================================================== */

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .split-grid {
        gap: 55px;
    }

    .experience-grid {
        gap: 55px;
    }

    .booking-grid {
        gap: 45px;
    }

    .contact-grid {
        gap: 50px;
    }

    .therapy-details-grid {
        gap: 50px;
    }

    .footer-grid {
        gap: 35px;
    }
}

/* ==========================================================================
   38. MOBILE NAVIGATION BREAKPOINT
   ========================================================================== */

@media (max-width: 1020px) {

    :root {
        --header-height: 78px;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        z-index: 1050;
        display: flex;
        width: 100%;
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 30px 35px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--paper);
        box-shadow: 0 25px 50px rgba(15, 52, 44, .12);
        transform: translateX(105%);
        visibility: hidden;
        transition:
            transform .3s ease,
            visibility .3s ease;
    }

    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav > a:not(.btn) {
        display: flex;
        min-height: auto;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav > a:not(.btn)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .split-grid,
    .booking-grid,
    .contact-grid,
    .experience-grid,
    .therapy-hero-grid,
    .therapy-details-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row {
        gap: 40px;
    }

    .faq-intro {
        position: static;
    }

    .booking-copy {
        padding-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / 3;
    }
}

/* ==========================================================================
   39. TABLET
   ========================================================================== */

@media (max-width: 820px) {

    .section {
        padding: 85px 0;
    }

    .service-grid,
    .testimonial-grid {
        gap: 20px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 190px 190px;
    }

    .gallery-mosaic a:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-mosaic a:last-child {
        grid-column: 1 / 3;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-row-image {
        order: 0;
    }

    .services-list {
        gap: 70px;
    }

    .therapy-hero {
        padding: 65px 0 75px;
    }

    .therapy-hero-grid {
        gap: 45px;
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

/* ==========================================================================
   40. MOBILE
   ========================================================================== */

@media (max-width: 720px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 190px;
    }

    .main-nav {
        padding-right: 22px;
        padding-left: 22px;
    }

    .section {
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(44px, 13vw, 58px);
    }

    h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    h3 {
        font-size: 27px;
    }

    .lead {
        font-size: 17px;
    }

    .hero {
        height: 720px;
        min-height: 0;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 32, 27, .90),
                rgba(7, 32, 27, .60)
            );
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 58px);
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 9px;
        margin-top: 30px;
    }

    .scroll-cue {
        display: none;
    }

    .split-grid {
        gap: 45px;
    }

    .image-stack {
        padding: 0 22px 25px 0;
    }

    .image-badge {
        right: -2px;
        bottom: 20px;
        width: 115px;
        height: 115px;
    }

    .image-badge strong {
        font-size: 27px;
    }

    .service-grid,
    .testimonial-grid,
    .experience-cards,
    .stats-row,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: 0;
    }

    .service-card-body {
        padding: 27px 23px;
    }

    .experience-grid {
        gap: 45px;
    }

    .stats-row {
        gap: 20px;
    }

    .gallery-mosaic {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .gallery-mosaic a {
        width: 100%;
        height: 240px;
    }

    .gallery-mosaic img {
        height: 100%;
    }

    .booking-grid {
        gap: 35px;
    }

    .booking-contact-card a {
        font-size: clamp(28px, 8vw, 38px);
        word-break: break-word;
    }

    .form-card {
        padding: 26px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .form-submit .btn {
        width: 100%;
    }

    .page-hero {
        height: 440px;
    }

    .page-hero.short {
        height: 360px;
    }

    .page-hero h1 {
        font-size: clamp(44px, 12vw, 52px);
    }

    .page-hero p {
        font-size: 16px;
    }

    .service-row-content ul {
        grid-template-columns: 1fr;
    }

    .therapy-hero {
        padding: 55px 0;
    }

    .therapy-hero-grid {
        gap: 35px;
    }

    .therapy-hero-copy h1 {
        font-size: clamp(48px, 13vw, 65px);
    }

    .therapy-hero-copy > p {
        font-size: 17px;
    }

    .therapy-meta {
        flex-direction: column;
        gap: 12px;
    }

    .therapy-hero-image img {
        border-radius: 60px 3px 3px;
    }

    .full-gallery {
        columns: 2 150px;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
    }

    .gallery-item img {
        min-height: 180px;
    }

    .gallery-item span {
        display: none;
    }

    .contact-grid {
        gap: 42px;
    }

    .map-placeholder {
        height: 350px;
    }

    .faq-layout {
        gap: 45px;
    }

    .accordion-item button {
        padding: 19px 0;
        font-size: 23px;
    }

    .legal-hero {
        padding: 65px 0 45px;
    }

    .legal-hero h1 {
        font-size: 52px;
    }

    .thank-you-section {
        min-height: 60vh;
        padding: 70px 0;
    }

    .thank-you-card {
        padding: 45px 22px;
    }

    .error-code {
        font-size: 75px;
    }

    .footer-cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta h2 {
        font-size: 40px;
    }

    .footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .site-footer {
        padding: 65px 0 25px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .floating-actions a {
        width: 46px;
        height: 46px;
    }
}

/* ==========================================================================
   41. SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        gap: 12px;
    }

    .brand img {
        width: 175px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        height: 700px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-actions,
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .button-row .btn {
        width: 100%;
    }

    .image-main,
    .image-panel img {
        border-radius: 3px 55px 3px 3px;
    }

    .service-card-body {
        padding: 24px 20px;
    }

    .gallery-mosaic {
        display: flex;
        flex-direction: column;
    }

    .gallery-mosaic a {
        height: 220px;
    }

    .full-gallery {
        columns: 1;
    }

    .gallery-item img {
        min-height: 240px;
    }

    .benefit-box {
        padding: 28px 22px;
    }

    .contact-card {
        gap: 12px;
        padding: 15px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder h2 {
        font-size: 32px;
    }

    .footer-cta h2 {
        font-size: 36px;
    }

    .thank-you-card {
        padding: 40px 18px;
    }
}

/* ==========================================================================
   42. VERY SMALL DEVICES
   ========================================================================== */

@media (max-width: 360px) {

    .container {
        width: calc(100% - 20px);
    }

    .brand img {
        width: 155px;
    }

    .hero {
        height: 670px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .section {
        padding: 60px 0;
    }

    .form-card {
        padding: 22px 16px;
    }

    .floating-actions {
        right: 8px;
        bottom: 8px;
    }

    .floating-actions a {
        width: 43px;
        height: 43px;
    }
}

/* ==========================================================================
   43. PRINT
   ========================================================================== */

@media print {

    .topbar,
    .site-header,
    .floating-actions,
    .footer-cta,
    .menu-toggle,
    .scroll-cue {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 30px 0;
    }

    a {
        text-decoration: none;
    }
}
/* ==========================================================================
   PRIYA SPA WELLNESS
   Complete Responsive Theme CSS
   Version: 2.0
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
    --green: #173f36;
    --green-dark: #0d2e27;
    --green-deep: #092921;
    --green-2: #245a4d;
    --green-3: #2f6959;

    --ink: #1d2825;
    --muted: #68736f;
    --muted-light: #87928e;

    --cream: #f7f3eb;
    --cream-2: #fbfaf6;
    --paper: #fffdf8;
    --white: #ffffff;

    --gold: #caa467;
    --gold-2: #e1c28f;
    --gold-light: #efd6aa;

    --line: #dfe4df;
    --line-light: rgba(23, 63, 54, .10);

    --danger: #8b302a;
    --success-bg: #dfeee8;

    --shadow-sm: 0 10px 30px rgba(23, 63, 54, .07);
    --shadow: 0 24px 70px rgba(23, 63, 54, .13);
    --shadow-lg: 0 35px 90px rgba(12, 42, 35, .18);

    --radius-sm: 4px;
    --radius: 22px;
    --radius-lg: 34px;

    --container: 1180px;
    --header-height: 86px;

    --font-head: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;

    --transition-fast: .2s ease;
    --transition: .3s ease;
    --transition-slow: .6s ease;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

img[width],
img[height] {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: rgba(202, 164, 103, .25);
    color: var(--green-dark);
}

:focus-visible {
    outline: 3px solid rgba(202, 164, 103, .55);
    outline-offset: 3px;
}

/* ==========================================================================
   3. COMMON LAYOUT
   ========================================================================== */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 850px;
}

.centered {
    text-align: center;
}

.section {
    padding: 105px 0;
}

.soft-bg {
    background: var(--cream);
}

.seo-content {
    background: var(--cream-2);
}

.align-center {
    align-items: center;
}

/* ==========================================================================
   4. SKIP LINK
   ========================================================================== */

.skip-link {
    position: fixed;
    top: -100px;
    left: 15px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow-sm);
}

.skip-link:focus {
    top: 15px;
}

/* ==========================================================================
   5. TOP BAR
   ========================================================================== */

.topbar {
    background: var(--green-dark);
    color: #dce9e5;
    font-size: 12px;
    letter-spacing: .02em;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    transition: color var(--transition-fast);
}

.topbar a:hover {
    color: var(--white);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(30, 60, 50, .08);
    transition:
        box-shadow var(--transition),
        background-color var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 253, 248, .98);
    box-shadow: 0 12px 35px rgba(16, 48, 40, .08);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 222px;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   7. DESKTOP NAVIGATION
   ========================================================================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.btn) {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 86px;
    padding: 31px 0;
    white-space: nowrap;
}

.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;
    height: 2px;
    background: var(--gold);
    transition: right var(--transition-fast);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    right: 0;
}

.nav-cta {
    flex-shrink: 0;
}

/* ==========================================================================
   8. MOBILE MENU BUTTON
   ========================================================================== */

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--ink);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    min-height: 43px;
    padding: 0 20px;
}

.btn-gold {
    background: var(--gold);
    color: #17332d;
    box-shadow: 0 8px 25px rgba(202, 164, 103, .16);
}

.btn-gold:hover {
    background: var(--gold-2);
    box-shadow: 0 12px 30px rgba(202, 164, 103, .24);
}

.btn-dark {
    background: var(--green);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--green-2);
}

.btn-light {
    background: var(--white);
    color: var(--green);
}

.btn-light:hover {
    background: var(--cream);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .65);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

.btn-outline-dark {
    border-color: var(--green);
    color: var(--green);
}

.btn-outline-dark:hover {
    background: var(--green);
    color: var(--white);
}

/* ==========================================================================
   10. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3 {
    margin: 0 0 20px;
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: clamp(50px, 7vw, 88px);
    letter-spacing: -.025em;
}

h2 {
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -.02em;
}

h3 {
    font-size: 29px;
}

p {
    margin: 0 0 20px;
}

.lead {
    font-size: 19px;
    color: #40504b;
}

.eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--gold-light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(23, 63, 54, .35);
    color: var(--green);
    font-weight: 700;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.text-link:hover {
    color: var(--green-2);
    border-color: var(--gold);
}

/* ==========================================================================
   11. HERO
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    height: min(820px, calc(100vh - 124px));
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 32, 27, .92) 0%,
            rgba(9, 37, 31, .72) 45%,
            rgba(9, 37, 31, .18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero h1 {
    max-width: 780px;
    color: var(--white);
}

.hero h1 em {
    color: #f2d8a8;
    font-weight: 500;
}

.hero-content > p {
    max-width: 650px;
    color: #e6efec;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 45px;
    color: #dfe9e6;
    font-size: 13px;
}

.scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: var(--white);
    transform: translateX(-50%);
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    50% {
        transform: translate(-50%, 7px);
    }
}

/* ==========================================================================
   12. SPLIT CONTENT
   ========================================================================== */

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
}

.image-stack {
    position: relative;
    padding: 0 45px 45px 0;
}

.image-main,
.image-panel img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 3px 80px 3px 3px;
}

.image-stack::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 68%;
    height: 68%;
    background: #e8ddca;
    border-radius: 3px;
}

.image-badge {
    position: absolute;
    right: 0;
    bottom: 38px;
    display: flex;
    width: 160px;
    height: 160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.image-badge strong {
    font-family: var(--font-head);
    font-size: 34px;
}

.image-badge span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ==========================================================================
   13. FEATURE LIST
   ========================================================================== */

.feature-list {
    margin: 32px 0;
}

.feature-list > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.feature-list > div:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-list > div > span {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 22px;
}

.feature-list strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ==========================================================================
   14. SERVICES
   ========================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 55px rgba(30, 62, 53, .08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-icon {
    position: absolute;
    right: 18px;
    bottom: -25px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 22px;
}

.service-card-body {
    padding: 30px;
}

.duration {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 8px 0 13px;
    font-size: 30px;
}

.service-card p {
    min-height: 70px;
    color: var(--muted);
    font-size: 14px;
}

.service-card .text-link {
    font-size: 13px;
}

/* ==========================================================================
   15. EXPERIENCE SECTION
   ========================================================================== */

.experience-section {
    background: var(--green);
    color: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.experience-copy h2 {
    color: var(--white);
}

.experience-copy > p {
    color: #d2e1dc;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.stats-row div {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.stats-row strong {
    display: block;
    color: #efcf99;
    font-family: var(--font-head);
    font-size: 35px;
}

.stats-row span {
    color: #d3e3de;
    font-size: 11px;
}

.experience-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mini-card {
    min-height: 190px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .07);
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.mini-card:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-4px);
}

.mini-card > span {
    font-size: 25px;
}

.mini-card h3 {
    margin: 15px 0 9px;
    color: var(--white);
    font-size: 25px;
}

.mini-card p {
    margin: 0;
    color: #cadbd6;
    font-size: 13px;
}

/* ==========================================================================
   16. GALLERY
   ========================================================================== */

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}

.gallery-mosaic a {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.gallery-mosaic a:first-child {
    grid-row: 1 / 3;
}

.gallery-mosaic a:last-child {
    grid-column: 2 / 4;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.gallery-mosaic a:hover img {
    transform: scale(1.04);
}

/* ==========================================================================
   17. TESTIMONIALS
   ========================================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.testimonial {
    margin: 0;
    padding: 36px;
    border: 1px solid #e5e5dc;
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--gold);
    letter-spacing: .15em;
}

.testimonial p {
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.35;
}

.testimonial footer {
    color: var(--muted);
    font-size: 12px;
}

/* ==========================================================================
   18. BOOKING SECTION
   ========================================================================== */

.booking-section {
    background: #0f342c;
    color: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.booking-copy {
    padding-top: 35px;
}

.booking-copy h2 {
    color: var(--white);
}

.booking-copy > p {
    color: #d2e0dc;
}

.booking-contact-card {
    margin-top: 45px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.booking-contact-card span,
.booking-contact-card small {
    display: block;
    color: #c9dbd6;
    font-size: 12px;
}

.booking-contact-card a {
    color: #efd19e;
    font-family: var(--font-head);
    font-size: 38px;
    transition: color var(--transition-fast);
}

.booking-contact-card a:hover {
    color: var(--white);
}

/* ==========================================================================
   19. FORMS
   ========================================================================== */

.form-card {
    padding: 42px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-card > p {
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-grid label {
    display: block;
    min-width: 0;
}

.form-grid label > span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid #d9dfdc;
    border-radius: 3px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 164, 103, .16);
}

.form-grid textarea {
    min-height: 130px;
    resize: vertical;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    width: 17px !important;
    min-width: 17px;
    margin-top: 5px;
}

.checkbox span {
    color: var(--muted);
    font-weight: 500 !important;
}

.form-submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.form-submit small {
    max-width: 250px;
    color: var(--muted);
}

.form-errors {
    grid-column: 1 / -1;
    margin-bottom: 16px;
    padding: 12px 15px;
    border: 1px solid #edcbc8;
    background: #fff0ef;
    color: var(--danger);
    font-size: 13px;
}

.form-errors ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

/* ==========================================================================
   20. PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;
    display: flex;
    height: 520px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.page-hero.short {
    height: 420px;
}

.page-hero-bg,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-bg {
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(7, 35, 29, .90),
        rgba(7, 35, 29, .28)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(48px, 6vw, 75px);
}

.page-hero p {
    max-width: 650px;
    color: #e1ece8;
    font-size: 18px;
}

/* ==========================================================================
   21. VALUES
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    padding: 34px 28px;
    border-top: 3px solid var(--gold);
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.value-card > span {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 24px;
}

.value-card h3 {
    margin: 20px 0 10px;
    font-size: 29px;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
}

/* ==========================================================================
   22. SERVICES DETAIL
   ========================================================================== */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-row.reverse .service-row-image {
    order: 2;
}

.service-row-image {
    min-width: 0;
    overflow: hidden;
}

.service-row-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 2px 70px 2px 2px;
    transition: transform .5s ease;
}

.service-row-image:hover img {
    transform: scale(1.025);
}

.service-number {
    color: #d9c49d;
    font-family: var(--font-head);
    font-size: 32px;
}

.service-row-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.service-row-content li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
}

.service-row-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* ==========================================================================
   23. THERAPY HERO
   ========================================================================== */

.therapy-hero {
    padding: 75px 0 95px;
    background: linear-gradient(135deg, #f7f1e6, #fff);
}

.therapy-hero-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.therapy-hero-copy h1 {
    font-size: clamp(55px, 7vw, 80px);
}

.therapy-hero-copy > p {
    color: var(--muted);
    font-size: 19px;
}

.therapy-meta {
    display: flex;
    gap: 30px;
    margin: 28px 0;
}

.therapy-meta span {
    padding-left: 13px;
    border-left: 2px solid var(--gold);
    color: var(--muted);
    font-size: 12px;
}

.therapy-meta strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
}

.therapy-hero-image {
    min-width: 0;
}

.therapy-hero-image img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 120px 3px 3px 3px;
}

/* ==========================================================================
   24. THERAPY DETAILS
   ========================================================================== */

.therapy-details-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.benefit-box {
    padding: 38px;
    background: var(--green);
    color: var(--white);
}

.benefit-box h3 {
    color: var(--white);
}

.benefit-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-box li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.benefit-box li span {
    color: #efcf99;
}

.small-note {
    margin-top: 25px;
    color: #c7d7d2;
    font-size: 11px;
}

/* ==========================================================================
   25. FULL GALLERY
   ========================================================================== */

.full-gallery {
    columns: 3 320px;
    column-gap: 18px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    break-inside: avoid;
}

.gallery-item img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.gallery-item:nth-child(3n) img {
    aspect-ratio: 1 / 1.2;
}

.gallery-item span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   26. LIGHTBOX
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: rgba(4, 18, 15, .94);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ==========================================================================
   27. CONTACT
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    font-weight: 700;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    color: var(--muted);
    font-size: 11px;
}

.contact-card strong {
    font-size: 14px;
}

.hours-box {
    padding: 25px;
    background: var(--green);
    color: var(--white);
}

.hours-box h3 {
    color: var(--white);
    font-size: 26px;
}

.hours-box small {
    color: #cfdfda;
}

.form-card.light {
    border: 1px solid #e4e5df;
    background: #fbfaf6;
    box-shadow: none;
}

/* ==========================================================================
   28. MAP
   ========================================================================== */

.map-placeholder {
    display: grid;
    height: 430px;
    place-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #e9e3d6, #d8e5df);
    text-align: center;
}

.map-placeholder span {
    font-size: 42px;
}

.map-placeholder h2 {
    margin: 10px;
    font-size: 40px;
}

.map-placeholder code {
    padding: 2px 6px;
    background: var(--white);
}

/* ==========================================================================
   29. FAQ
   ========================================================================== */

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    border: 0;
    background: none;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 27px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.accordion-item button b {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 400;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.accordion-content p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
}

.accordion-item.open .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content p {
    padding-bottom: 25px;
}

/* ==========================================================================
   30. LEGAL PAGES
   ========================================================================== */

.legal-hero {
    padding: 90px 0 55px;
    background: var(--cream);
}

.legal-hero h1 {
    font-size: 66px;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 34px;
}

.legal-content p {
    color: #53615d;
}

/* ==========================================================================
   31. THANK YOU / ERROR
   ========================================================================== */

.thank-you-section {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding: 90px 0;
    background: var(--cream);
}

.thank-you-card {
    max-width: 750px;
    margin: auto;
    padding: 70px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--success-bg);
    color: var(--green);
    font-size: 30px;
}

.error-code {
    display: block;
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 90px;
}

/* ==========================================================================
   32. FOOTER CTA
   ========================================================================== */

.footer-cta {
    padding: 42px 0;
    background: var(--gold);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta h2 {
    margin: 0;
    color: #17342d;
    font-size: 45px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   33. FOOTER
   ========================================================================== */

.site-footer {
    padding: 80px 0 25px;
    background: var(--green-deep);
    color: #c8d8d3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr .7fr;
    gap: 55px;
}

.footer-brand img {
    width: 220px;
    max-width: 100%;
    margin-bottom: 20px;
}

.site-footer h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 10px 0;
    color: #c8d8d3;
    font-size: 13px;
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer p {
    font-size: 13px;
}

.professional-note {
    color: #93aca5 !important;
    font-size: 11px !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #91aaa3;
    font-size: 11px;
}

/* ==========================================================================
   34. FLOATING CALL / WHATSAPP
   ========================================================================== */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-actions a {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.floating-actions a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .24);
}

.floating-call {
    background: var(--green);
}

.floating-whatsapp {
    background: #25d366;
    font-size: 12px;
}

/* ==========================================================================
   35. REVEAL ANIMATION
   ========================================================================== */

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s ease,
        transform .75s ease;
}

.js .reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   36. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   37. LARGE TABLET / SMALL DESKTOP
   ========================================================================== */

@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .split-grid {
        gap: 55px;
    }

    .experience-grid {
        gap: 55px;
    }

    .booking-grid {
        gap: 45px;
    }

    .contact-grid {
        gap: 50px;
    }

    .therapy-details-grid {
        gap: 50px;
    }

    .footer-grid {
        gap: 35px;
    }
}

/* ==========================================================================
   38. MOBILE NAVIGATION BREAKPOINT
   ========================================================================== */

@media (max-width: 1020px) {

    :root {
        --header-height: 78px;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        z-index: 1050;
        display: flex;
        width: 100%;
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 30px 35px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--paper);
        box-shadow: 0 25px 50px rgba(15, 52, 44, .12);
        transform: translateX(105%);
        visibility: hidden;
        transition:
            transform .3s ease,
            visibility .3s ease;
    }

    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav > a:not(.btn) {
        display: flex;
        min-height: auto;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav > a:not(.btn)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .split-grid,
    .booking-grid,
    .contact-grid,
    .experience-grid,
    .therapy-hero-grid,
    .therapy-details-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row {
        gap: 40px;
    }

    .faq-intro {
        position: static;
    }

    .booking-copy {
        padding-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / 3;
    }
}

/* ==========================================================================
   39. TABLET
   ========================================================================== */

@media (max-width: 820px) {

    .section {
        padding: 85px 0;
    }

    .service-grid,
    .testimonial-grid {
        gap: 20px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 190px 190px;
    }

    .gallery-mosaic a:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-mosaic a:last-child {
        grid-column: 1 / 3;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-row-image {
        order: 0;
    }

    .services-list {
        gap: 70px;
    }

    .therapy-hero {
        padding: 65px 0 75px;
    }

    .therapy-hero-grid {
        gap: 45px;
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

/* ==========================================================================
   40. MOBILE
   ========================================================================== */

@media (max-width: 720px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 190px;
    }

    .main-nav {
        padding-right: 22px;
        padding-left: 22px;
    }

    .section {
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(44px, 13vw, 58px);
    }

    h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    h3 {
        font-size: 27px;
    }

    .lead {
        font-size: 17px;
    }

    .hero {
        height: 720px;
        min-height: 0;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 32, 27, .90),
                rgba(7, 32, 27, .60)
            );
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 58px);
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 9px;
        margin-top: 30px;
    }

    .scroll-cue {
        display: none;
    }

    .split-grid {
        gap: 45px;
    }

    .image-stack {
        padding: 0 22px 25px 0;
    }

    .image-badge {
        right: -2px;
        bottom: 20px;
        width: 115px;
        height: 115px;
    }

    .image-badge strong {
        font-size: 27px;
    }

    .service-grid,
    .testimonial-grid,
    .experience-cards,
    .stats-row,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: 0;
    }

    .service-card-body {
        padding: 27px 23px;
    }

    .experience-grid {
        gap: 45px;
    }

    .stats-row {
        gap: 20px;
    }

    .gallery-mosaic {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .gallery-mosaic a {
        width: 100%;
        height: 240px;
    }

    .gallery-mosaic img {
        height: 100%;
    }

    .booking-grid {
        gap: 35px;
    }

    .booking-contact-card a {
        font-size: clamp(28px, 8vw, 38px);
        word-break: break-word;
    }

    .form-card {
        padding: 26px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .form-submit .btn {
        width: 100%;
    }

    .page-hero {
        height: 440px;
    }

    .page-hero.short {
        height: 360px;
    }

    .page-hero h1 {
        font-size: clamp(44px, 12vw, 52px);
    }

    .page-hero p {
        font-size: 16px;
    }

    .service-row-content ul {
        grid-template-columns: 1fr;
    }

    .therapy-hero {
        padding: 55px 0;
    }

    .therapy-hero-grid {
        gap: 35px;
    }

    .therapy-hero-copy h1 {
        font-size: clamp(48px, 13vw, 65px);
    }

    .therapy-hero-copy > p {
        font-size: 17px;
    }

    .therapy-meta {
        flex-direction: column;
        gap: 12px;
    }

    .therapy-hero-image img {
        border-radius: 60px 3px 3px;
    }

    .full-gallery {
        columns: 2 150px;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
    }

    .gallery-item img {
        min-height: 180px;
    }

    .gallery-item span {
        display: none;
    }

    .contact-grid {
        gap: 42px;
    }

    .map-placeholder {
        height: 350px;
    }

    .faq-layout {
        gap: 45px;
    }

    .accordion-item button {
        padding: 19px 0;
        font-size: 23px;
    }

    .legal-hero {
        padding: 65px 0 45px;
    }

    .legal-hero h1 {
        font-size: 52px;
    }

    .thank-you-section {
        min-height: 60vh;
        padding: 70px 0;
    }

    .thank-you-card {
        padding: 45px 22px;
    }

    .error-code {
        font-size: 75px;
    }

    .footer-cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta h2 {
        font-size: 40px;
    }

    .footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .site-footer {
        padding: 65px 0 25px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .floating-actions a {
        width: 46px;
        height: 46px;
    }
}

/* ==========================================================================
   41. SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        gap: 12px;
    }

    .brand img {
        width: 175px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        height: 700px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-actions,
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .button-row .btn {
        width: 100%;
    }

    .image-main,
    .image-panel img {
        border-radius: 3px 55px 3px 3px;
    }

    .service-card-body {
        padding: 24px 20px;
    }

    .gallery-mosaic {
        display: flex;
        flex-direction: column;
    }

    .gallery-mosaic a {
        height: 220px;
    }

    .full-gallery {
        columns: 1;
    }

    .gallery-item img {
        min-height: 240px;
    }

    .benefit-box {
        padding: 28px 22px;
    }

    .contact-card {
        gap: 12px;
        padding: 15px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder h2 {
        font-size: 32px;
    }

    .footer-cta h2 {
        font-size: 36px;
    }

    .thank-you-card {
        padding: 40px 18px;
    }
}

/* ==========================================================================
   42. VERY SMALL DEVICES
   ========================================================================== */

@media (max-width: 360px) {

    .container {
        width: calc(100% - 20px);
    }

    .brand img {
        width: 155px;
    }

    .hero {
        height: 670px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .section {
        padding: 60px 0;
    }

    .form-card {
        padding: 22px 16px;
    }

    .floating-actions {
        right: 8px;
        bottom: 8px;
    }

    .floating-actions a {
        width: 43px;
        height: 43px;
    }
}

/* ==========================================================================
   43. PRINT
   ========================================================================== */

@media print {

    .topbar,
    .site-header,
    .floating-actions,
    .footer-cta,
    .menu-toggle,
    .scroll-cue {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 30px 0;
    }

    a {
        text-decoration: none;
    }
}
/* =========================================================
   FINAL MOBILE RIGHT-SIDE / HORIZONTAL SCROLL FIX
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
svg,
canvas {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    max-width: 100%;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.header-inner,
.topbar-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.brand {
    display: block;
    min-width: 0;
    max-width: 222px;
}

.brand img {
    display: block;
    width: 222px;
    max-width: 100%;
    height: auto;
}

.main-nav {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1020px) {

    .header-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .main-nav {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;
        left: auto;

        width: min(320px, 100%);
        max-width: 100%;

        overflow-x: hidden;
        overflow-y: auto;

        transform: translate3d(100%, 0, 0);

        visibility: hidden;

        transition:
            transform .3s ease,
            visibility .3s ease;

        z-index: 9999;
    }

    .main-nav.open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    body.menu-open {
        overflow-x: hidden !important;
    }

    html.menu-open {
        overflow-x: hidden !important;
    }

    .brand {
        max-width: calc(100% - 65px);
    }

    .brand img {
        width: min(222px, 100%);
    }
}

@media (max-width: 720px) {

    .container {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }

    .topbar-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .topbar-contact {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .hero,
    .hero-content,
    .hero-bg,
    .hero-overlay,
    .page-hero,
    .page-hero-bg,
    .page-hero-overlay,
    .therapy-hero,
    .section,
    .booking-section,
    .site-footer {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .grid,
    .form-grid,
    .service-grid,
    .testimonial-grid,
    .experience-cards,
    .stats-row,
    .values-grid,
    .footer-grid,
    .split-grid,
    .gallery-mosaic {
        min-width: 0;
        max-width: 100%;
    }

    .grid > *,
    .form-grid > *,
    .service-grid > *,
    .testimonial-grid > *,
    .experience-cards > *,
    .stats-row > *,
    .values-grid > *,
    .footer-grid > *,
    .split-grid > *,
    .gallery-mosaic > * {
        min-width: 0;
        max-width: 100%;
    }

    input,
    textarea,
    select,
    button {
        max-width: 100%;
    }

    p,
    a,
    span,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

    .brand {
        max-width: calc(100% - 58px);
    }

    .brand img {
        width: 190px;
        max-width: 100%;
    }

    .main-nav {
        width: 100%;
        max-width: 100%;
    }
}
/* =========================================================
   FOOTER MOBILE OVERFLOW FIX
========================================================= */

.footer-cta,
.site-footer,
.footer-grid,
.footer-bottom,
.footer-cta-inner,
.footer-cta-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.footer-grid > *,
.footer-cta-inner > *,
.footer-cta-actions > * {
    min-width: 0;
    max-width: 100%;
}

.footer-brand,
.footer-column {
    min-width: 0;
    max-width: 100%;
}

.footer-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
}

.footer-column a,
.footer-column p,
.footer-brand p,
.footer-bottom span {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-cta-actions .btn {
    max-width: 100%;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9998;

    max-width: calc(100vw - 32px);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-call,
.floating-whatsapp {
    flex: 0 0 auto;
}

@media (max-width: 720px) {

    .footer-cta-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .footer-cta-actions {
        width: 100%;
        max-width: 100%;
    }

    .footer-cta-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .footer-bottom {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }

}

@media (max-width: 480px) {

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-brand img {
        width: 190px;
        max-width: 100%;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
    }

}
/* =========================================================
   FOOTER MOBILE OVERFLOW FIX
========================================================= */

.footer-cta,
.site-footer,
.footer-grid,
.footer-bottom,
.footer-cta-inner,
.footer-cta-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.footer-grid > *,
.footer-cta-inner > *,
.footer-cta-actions > * {
    min-width: 0;
    max-width: 100%;
}

.footer-brand,
.footer-column {
    min-width: 0;
    max-width: 100%;
}

.footer-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
}

.footer-column a,
.footer-column p,
.footer-brand p,
.footer-bottom span {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-cta-actions .btn {
    max-width: 100%;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9998;

    max-width: calc(100vw - 32px);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-call,
.floating-whatsapp {
    flex: 0 0 auto;
}

@media (max-width: 720px) {

    .footer-cta-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .footer-cta-actions {
        width: 100%;
        max-width: 100%;
    }

    .footer-cta-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .footer-bottom {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }

}

@media (max-width: 480px) {

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-brand img {
        width: 190px;
        max-width: 100%;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
    }

}
