/* ============ VARIABLS ============ */
:root {
    --beige: #F8F5F0;
    --sage: #A8BBA3;
    --sage-dark: #8CA486;
    --teal: #46766C;
    --teal-dark: #3D685F;
    --blue: #748AA6;
    --cream: #FFFDF9;
    --charcoal: #2E3640;
    --charcoal-soft: #4A5563;

    --r-sm: 14px;
    --r-md: 18px;
    --r-lg: 24px;

    --shadow-sm: 0 4px 16px rgba(46, 54, 64, 0.06);
    --shadow-md: 0 12px 32px rgba(46, 54, 64, 0.10);
    --shadow-lg: 0 24px 60px rgba(46, 54, 64, 0.14);

    --ease: cubic-bezier(.25, .8, .35, 1);
}

* {
    box-sizing: border-box;
}

/* Utility classes to replace Bootstrap */
.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 168, 160, 0.4) transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 168, 160, 0.35);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 168, 160, 0.65);
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

p {
    color: var(--charcoal-soft);
    line-height: 1.75;
}

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

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

.container-max {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: var(--sage);
    color: var(--cream);
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
    border-radius: 6px;
}

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

.eyebrow {
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--teal-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--teal-dark);
    display: inline-block;
}

.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 12px 0 14px;
}

.section-head p {
    font-size: 1.05rem;
}

section {
    position: relative;
    padding: 110px 0;
}

@media(max-width:768px) {
    section {
        padding: 72px 0;
    }
}

/* ============ LOADER ============ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.breath-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--sage);
    position: relative;
}

.breath-ring::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid var(--teal);
    opacity: .5;
    animation: breathe 3.2s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(0.85);
        opacity: .15;
    }

    50% {
        transform: scale(1.15);
        opacity: .55;
    }
}

/* ============ BACKGROUND SHAPES ============ */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: float-shape 14s ease-in-out infinite;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(18px, -24px) scale(1.06);
    }
}

/* ============ NAVBAR ============ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(46, 54, 64, 0.06);
    transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
    padding: 12px 0;
}

.site-nav.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 253, 249, 0.97);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.brand-title {
    font-weight: 500;
    font-size: 1.14rem;
    letter-spacing: -0.01em;
}

.brand-divider {
    margin: 2px 0;
    border: none;
    border-top: 1.5px solid var(--teal);
    width: 100%;
}

.brand-subtitle {
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--charcoal-soft);
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    flex: none;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal-soft);
    position: relative;
    padding: 4px 0;
    transition: color .25s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-book {
    background: var(--teal);
    color: #fff !important;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(124, 168, 160, 0.35);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
    border: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(124, 168, 160, 0.45);
    background: var(--teal-dark);
    color: #fff;
}

/* hamburger: svg format with three equal straight horizontal lines */
.burger {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 1100;
    padding: 6px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    overflow: visible;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
}

.burger svg {
    width: 24px;
    height: 24px;
    display: block;
    flex: none;
    transition: transform .35s var(--ease);
}

.burger svg line {
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
    transform-box: fill-box;
    transform-origin: center;
}

.burger.open svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger.open svg line:nth-child(2) {
    opacity: 0;
}

.burger.open svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Full-screen dropdown panel, sits below the fixed navbar so the logo stays visible */
.mobile-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    padding: 40px;
    overflow-y: auto;
    border-top: 1px solid rgba(46, 54, 64, 0.08);
}

.mobile-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-panel a {
    color: var(--charcoal);
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.mobile-panel a:hover {
    color: var(--teal-dark);
}

.mobile-panel .btn-book {
    margin-top: 10px;
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(46, 54, 64, .4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}

.scrim.show {
    opacity: 1;
    visibility: visible;
}

@media(max-width:991px) {
    .site-nav {
        padding: 10px 0;
    }

    .site-nav.scrolled {
        padding: 7px 0;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: inline-flex;
    }
}

/* ============ HERO ============ */
.hero {
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-grid>div {
    min-width: 0;
}

@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    line-height: 1.14;
    margin: 18px 0 22px;
}

.hero h1 .accent {
    color: var(--teal-dark);
    position: relative;
}

.hero p.lead {
    font-size: 1.12rem;
    max-width: 480px;
    margin-bottom: 34px;
}

@media(max-width:991px) {
    .hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 100%;
}

@media(max-width:991px) {
    .hero-ctas {
        justify-content: center;
    }
}

@media(max-width:420px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas a {
        text-align: center;
        justify-content: center;
    }
}

.btn-outline-therapy {
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 100px;
    font-size: 0.95rem;
    transition: all .25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline-therapy:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 52px;
    max-width: 100%;
}

@media(max-width:991px) {
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }
}

.hero-stats .stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--charcoal);
}

.hero-stats .stat-label {
    font-size: 0.82rem;
    color: var(--charcoal-soft);
}

/* Hero visual: organic blob illustration */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    width: 100%;
    max-width: 100%;
}

@media(max-width:991px) {
    .hero-visual {
        min-height: min(400px, 82vw);
    }
}

.blob-wrap {
    position: relative;
    width: min(420px, 82vw);
    height: min(420px, 82vw);
    max-width: 100%;
}

/* Main organic blobs */
.blob {
    position: absolute;
    border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%;
    animation: morph 12s ease-in-out infinite;
}

.blob.b1 {
    inset: 0;
    background: linear-gradient(145deg, rgba(168, 187, 163, 0.25), rgba(124, 168, 160, 0.2));
    animation-delay: 0s;
}

.blob.b2 {
    inset: 8%;
    background: linear-gradient(155deg, rgba(168, 187, 163, 0.35), rgba(124, 168, 160, 0.3));
    border-radius: 58% 42% 38% 62% / 55% 45% 55% 45%;
    animation-delay: -4s;
}

.blob.b3 {
    inset: 18%;
    background: linear-gradient(145deg, var(--sage), var(--teal));
    border-radius: 45% 55% 52% 48% / 48% 52% 48% 52%;
    box-shadow: var(--shadow-lg);
    animation-delay: -8s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 55% 45% 38% 62% / 58% 42% 58% 42%;
        transform: rotate(3deg) scale(1.02);
    }
    50% {
        border-radius: 38% 62% 55% 45% / 42% 58% 42% 58%;
        transform: rotate(-2deg) scale(0.98);
    }
    75% {
        border-radius: 62% 38% 45% 55% / 55% 45% 55% 45%;
        transform: rotate(4deg) scale(1.01);
    }
}

/* Central icon inside the blob */
.blob-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.blob-center-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(46, 54, 64, 0.12);
    animation: gentle-bounce 5s ease-in-out infinite;
}

.blob-center-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Floating accent icons around the blob */
.float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 4;
    animation: float-icon 6s ease-in-out infinite;
}

.float-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal-dark);
}

.float-icon.fi-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.float-icon.fi-2 {
    bottom: 12%;
    left: 2%;
    animation-delay: -2s;
}

.float-icon.fi-3 {
    top: 40%;
    left: -5%;
    animation-delay: -4s;
}

.float-icon.fi-4 {
    bottom: 5%;
    right: 10%;
    animation-delay: -1s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Decorative dots/particles */
.hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.25;
    animation: dot-drift 8s ease-in-out infinite;
}

.hero-dot:nth-child(1) { width: 8px; height: 8px; top: 15%; left: 10%; animation-delay: 0s; }
.hero-dot:nth-child(2) { width: 6px; height: 6px; top: 75%; right: 8%; animation-delay: -2s; background: var(--sage); }
.hero-dot:nth-child(3) { width: 10px; height: 10px; bottom: 20%; left: 15%; animation-delay: -4s; background: var(--blue); }
.hero-dot:nth-child(4) { width: 5px; height: 5px; top: 30%; right: 15%; animation-delay: -6s; }
.hero-dot:nth-child(5) { width: 7px; height: 7px; top: 60%; left: 5%; animation-delay: -3s; background: var(--sage); }

@keyframes dot-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.25; }
    50% { transform: translate(8px, -12px); opacity: 0.5; }
}

@media(max-width:380px) {
    .float-icon { display: none; }
}

/* ============ ABOUT ============ */
.about {
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

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

.about-art {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--beige);
    /* box-shadow: var(--shadow-md); */
}

.about-art svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.value-card {
    background: var(--cream);
    border-radius: var(--r-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

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

.value-card .v-icon {
    width: 38px;
    height: 38px;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.value-card h4 {
    font-size: 1rem;
    margin: 0 0 4px;
}

.value-card p {
    font-size: 0.88rem;
    margin: 0;
}

/* ============ CARDS (shared) ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 26px;
}

.service-card {
    background: var(--cream);
    border: 1px solid rgba(46, 54, 64, 0.06);
    border-radius: var(--r-md);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

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

.service-card .s-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--sage), var(--teal));
    color: #fff;
    margin-bottom: 18px;
    transition: transform .35s var(--ease);
}

.service-card:hover .s-icon {
    transform: rotate(-6deg) scale(1.06);
}

.service-card .s-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============ PRIVACY PAGE ============ */
.policy-page {
    background: linear-gradient(180deg, #fffdf9 0%, #f8f5f0 100%);
}

.page-main {
    padding-top: 112px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 52px;
}

.page-hero .container-max {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin: 16px 0 18px;
    line-height: 1.08;
}

.page-hero .lead {
    max-width: 720px;
    font-size: 1.08rem;
    color: var(--charcoal-soft);
}

.policy-wrap {
    padding: 20px 0 40px;
}

.policy-layout {
    display: block;
}

.policy-content {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(46, 54, 64, 0.06);
    border-radius: 24px;
    padding: clamp(20px, 3vw, 38px);
    box-shadow: var(--shadow-sm);
}

.full-width-policy {
    width: 100%;
}

.policy-block + .policy-block {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(46, 54, 64, 0.08);
}

.policy-block h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 12px;
}

.policy-block p,
.policy-block li {
    color: var(--charcoal-soft);
    line-height: 1.8;
    font-size: 0.98rem;
}

.policy-list {
    padding-left: 18px;
    margin: 14px 0 18px;
}

.service-showcase-section {
    padding: 60px 0 110px;
}

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

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

@media (max-width: 640px) {
    .service-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.service-showcase-card {
    background: var(--cream);
    border: 1px solid rgba(46, 54, 64, 0.08);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(46, 54, 64, 0.06);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.service-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(46, 54, 64, 0.10);
}

.service-card-media {
    position: relative;
    height: 230px;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124,168,160,0.9), rgba(168,187,163,0.8));
    border-bottom: 1px solid rgba(46, 54, 64, 0.08);
}

.service-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(46,54,64,0.06));
    z-index: 1;
}

.service-card-media > img,
.service-card-media > span img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.03);
}

.service-card-media span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 12px 18px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.96);
    background: rgba(255,255,255,0.04);
}

.service-card-media span:empty {
    display: none;
}

.service-media-one {
    background: linear-gradient(135deg, rgba(124,168,160,0.80), rgba(168,187,163,0.75));
}

.service-media-two {
    background: linear-gradient(135deg, rgba(116,138,166,0.82), rgba(124,168,160,0.76));
}

.service-media-three {
    background: linear-gradient(135deg, rgba(93,140,130,0.82), rgba(168,187,163,0.76));
}

.service-card-body {
    padding: 22px 20px 20px;
}

.service-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.service-card-body p {
    margin: 0 0 18px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--charcoal-soft);
}

.service-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 22px rgba(124,168,160,0.28);
    transition: transform .25s var(--ease), background .25s ease;
}

.service-card-button:hover {
    transform: translateY(-2px);
    background: var(--teal-dark);
    color: #fff;
}

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

    .policy-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-main {
        padding-top: 96px;
    }

    .page-hero {
        padding-top: 88px;
    }

    .service-showcase-section {
        padding-bottom: 80px;
    }
}

/* ============ CONDITIONS ============ */
.conditions {
    background: var(--charcoal);
    color: var(--beige);
}

.conditions .section-head h2,
.conditions .section-head p {
    color: var(--beige);
}

.conditions .eyebrow {
    color: var(--sage);
}

.conditions .eyebrow::before {
    background: var(--sage);
}

.cond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.cond-chip {
    border: 1px solid rgba(248, 245, 240, 0.14);
    border-radius: var(--r-md);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background .3s, transform .3s var(--ease), border-color .3s;
}

.cond-chip:hover {
    background: rgba(124, 168, 160, 0.14);
    transform: translateY(-3px);
    border-color: var(--teal);
}

.cond-chip svg {
    width: 24px;
    height: 24px;
    color: var(--sage);
    flex: none;
}

.cond-chip span {
    font-weight: 500;
    font-size: 0.96rem;
}

/* ============ THERAPIST SPOTLIGHT (single therapist) ============ */
.therapist-spotlight {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    background: var(--cream);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(46, 54, 64, 0.06);
}

@media(max-width:850px) {
    .therapist-spotlight {
        grid-template-columns: 1fr;
    }
}

.t-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 56px 30px;
    position: relative;
    min-height: 340px;
}

.t-photo-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.6rem;
    color: #fff;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.t-photo-name {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
}

.t-photo-role {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-align: center;
}

.t-body {
    padding: 48px 46px;
}

@media(max-width:850px) {
    .t-body {
        padding: 36px 30px;
    }
}

.t-body h3 {
    font-size: 1.4rem;
    margin: 0 0 6px;
}

.t-role {
    color: var(--teal-dark);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.t-body p.t-bio {
    font-size: 0.98rem;
    margin: 0 0 22px;
}

.t-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.t-tag {
    background: var(--beige);
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
}

.t-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.t-social {
    display: flex;
    gap: 10px;
}

.t-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: background .25s, color .25s;
}

.t-social a:hover {
    background: var(--teal);
    color: #fff;
}

.t-social i {
    font-size: 0.95rem;
}

/* ============ PROCESS ============ */
.process {
    background: var(--beige);
}

.process-track {
    position: relative;
}

.process-track::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--sage), var(--teal), var(--blue));
}

@media(max-width:767px) {
    .process-track::before {
        left: 23px;
    }
}

.process-step {
    display: flex;
    gap: 26px;
    padding-bottom: 44px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--teal-dark);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

@media(max-width:767px) {
    .step-num {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

.step-body {
    padding-top: 8px;
}

.step-body h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.step-body p {
    margin: 0;
    max-width: 520px;
}

/* ============ TESTIMONIALS ============ */
.testi-wrap {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.testi-track {
    overflow: hidden;
}

.testi-slides {
    display: flex;
    transition: transform .6s var(--ease);
}

.testi-slide {
    min-width: 50%;
    flex: 0 0 50%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media(max-width:850px) {
    .testi-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
}

.testi-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    padding: 32px 32px 28px;
    box-shadow: none;
    text-align: left;
    position: relative;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.testi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.testi-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    flex: none;
}

.testi-meta h3 {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--charcoal);
}

.testi-meta p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--charcoal-soft);
}

.testi-g-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3C4043;
}

.testi-g-badge svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: #F4B400;
    margin-bottom: 14px;
}

.testi-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testi-card p.quote {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0 0 16px;
}

.testi-service-tag {
    display: inline-block;
    background: var(--beige);
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testi-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(46, 54, 64, 0.18);
    padding: 0;
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.testi-dots button.active {
    background: var(--teal);
    transform: scale(1.25);
}

/* ============ FAQ ============ */
.faq-item {
    border-bottom: 1px solid rgba(46, 54, 64, 0.1);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.02rem;
    color: var(--charcoal);
    cursor: pointer;
}

.faq-q .plus {
    width: 22px;
    height: 22px;
    flex: none;
    position: relative;
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--teal-dark);
    border-radius: 2px;
    transition: transform .35s var(--ease);
}

.faq-q .plus::before {
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-q .plus::after {
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item.open .plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 20rem;
}

.faq-a-inner {
    padding: 0 4px 22px;
    max-width: 640px;
}

.faq-a-inner p {
    margin: 0;
    font-size: 0.94rem;
}

/* ============ APPOINTMENT CTA ============ */
.appt {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    border-radius: var(--r-lg);
    padding: 64px 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.appt h2 {
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    margin: 0 0 10px;
}

.appt p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 440px;
    margin: 0;
}

.btn-cta-white {
    background: #fff;
    color: var(--teal-dark) !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.98rem;
    white-space: nowrap;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--beige);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.c-icon svg {
    width: 20px;
    height: 20px;
}

.contact-list h3 {
    margin: 0 0 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
}

.contact-list p {
    margin: 0;
    font-size: 0.92rem;
}

.map-embed {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3.2;
    border: 1px solid rgba(46, 54, 64, 0.08);
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.map-pin svg {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 6px 10px rgba(46, 54, 64, 0.35));
    animation: pin-drop .6s var(--ease) .3s both;
}

.map-pin .pin-dot {
    width: 10px;
    height: 3px;
    margin-top: -4px;
    border-radius: 50%;
    background: rgba(46, 54, 64, 0.35);
    filter: blur(1px);
    animation: pin-shadow .6s var(--ease) .3s both;
}

@keyframes pin-drop {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pin-shadow {
    0% {
        opacity: 0;
        transform: scaleX(.3);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.map-directions {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    background: var(--cream);
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
    transition: transform .25s var(--ease), background .25s;
}

.map-directions:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

.map-directions svg {
    width: 14px;
    height: 14px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--charcoal);
    color: var(--beige);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    justify-content: center;
}

.footer-grid > div:nth-child(2) {
    text-align: center;
}

.footer-grid > div:nth-child(2) .footer-links {
    align-items: center;
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }
}

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

footer h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

footer .brand {
    color: #fff;
}

footer p {
    color: rgba(248, 245, 240, 0.65);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: rgba(248, 245, 240, 0.75);
    font-size: 0.9rem;
    transition: color .25s;
}

.footer-links a:hover {
    color: var(--sage);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(248, 245, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s;
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.footer-social i {
    font-size: 0.95rem;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 245, 240, 0.12);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.83rem;
    color: rgba(248, 245, 240, 0.55);
}

.footer-bottom a {
    color: rgba(248, 245, 240, 0.55);
}

.footer-bottom a:hover {
    color: var(--sage);
}

/* ============ SCROLL TOP ============ */
#scrollTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s, background .25s;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--teal-dark);
}

#scrollTop svg {
    width: 18px;
    height: 18px;
}

/* ============ FLOATING WHATSAPP ============ */
#whatsappFloat {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: transform .25s var(--ease), box-shadow .25s;
}

#whatsappFloat:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-lg);
}

#whatsappFloat svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

#whatsappFloat::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.6s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease), visibility .25s;
}

#whatsappFloat:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media(max-width:576px) {
    #whatsappFloat {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    #whatsappFloat svg {
        width: 24px;
        height: 24px;
    }

    .wa-tooltip {
        display: none;
    }

    #scrollTop {
        left: 20px;
        bottom: 20px;
    }
}

/* ============ COUNTER ROW spacing helper ============ */
.stagger>* {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* ============ AVAILABILITY BAR ============ */
.availability-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 28px 0 32px;
    padding: 20px 24px;
    background: rgba(168, 187, 163, 0.10);
    border: 1px solid rgba(168, 187, 163, 0.25);
    border-radius: var(--r-md);
}

.avail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.avail-item svg {
    width: 20px;
    height: 20px;
    flex: none;
    color: var(--teal);
}

@media (max-width: 600px) {
    .availability-bar {
        flex-direction: column;
        gap: 14px;
    }
}

/* ============ CONTACT SECTION ============ */
#contact {
    padding-top: 24px;
}

.contact-head {
    max-width: 720px;
    margin-bottom: 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cream);
    border: 1px solid rgba(46, 54, 64, 0.08);
    border-radius: var(--r-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--charcoal-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--teal-dark);
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 130px;
    padding: 20px 18px;
    border-radius: var(--r-md);
    border: 1px solid rgba(46, 54, 64, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

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

.contact-card-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(124, 168, 160, 0.12));
    color: var(--charcoal);
}

.contact-card-email {
    background: rgba(248, 245, 240, 0.7);
    color: var(--charcoal);
}

.contact-card-social {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(168, 187, 163, 0.18), rgba(116, 138, 166, 0.12));
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 54, 64, 0.06);
    flex: none;
    font-size: 1.35rem;
    color: var(--teal-dark);
}

.contact-card-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-soft);
    margin-bottom: 6px;
}

.contact-card strong {
    font-size: 1rem;
    color: var(--charcoal);
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 54, 64, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: background .25s, color .25s, transform .25s;
}

.contact-socials a:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

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

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

@media(max-width: 560px) {
    #contact {
        padding: 24px 0 70px;
    }

    .contact-head {
        margin-bottom: 22px;
    }

    .contact-layout {
        gap: 20px;
    }

    .contact-item {
        padding: 16px 18px;
    }

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

    .contact-card {
        min-height: 110px;
        padding: 16px 18px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

/* ============ ABOUT SECTION RESPONSIVE ============ */
@media(max-width: 768px) {
    #about {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-actions {
        margin-top: 1.5rem;
    }
}

@media(max-width: 600px) {
    #about {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-art {
        min-height: 300px;
    }
    
    #about h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    #about p {
        font-size: 0.95rem;
    }
    
    /* Availability bar */
    .availability-bar {
        gap: 12px;
    }
    
    .avail-item {
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .avail-item svg {
        width: 18px;
        height: 18px;
    }
}

@media(max-width: 480px) {
    #about {
        padding: 40px 0;
    }
    
    .about-grid {
        gap: 20px;
    }
    
    .about-art {
        min-height: 280px;
    }
    
    #about h2 {
        font-size: 1.3rem;
        margin: 8px 0 10px;
    }
    
    #about p {
        font-size: 0.9rem;
    }
    
    .availability-bar {
        padding: 16px 20px;
        gap: 10px;
    }
    
    .avail-item {
        flex-direction: row;
        align-items: center;
        font-size: 0.8rem;
    }
}

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

.about-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--sage);
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

/* ============ BOOTSTRAP ICONS (inline, only used icons) ============ */
.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    background-color: currentColor;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.bi-whatsapp {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232%22/%3E%3C/svg%3E");
}

.bi-instagram {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334%22/%3E%3C/svg%3E");
}

.bi-linkedin {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z%22/%3E%3C/svg%3E");
}

.bi-plus {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4%22/%3E%3C/svg%3E");
}

.bi-geo-alt-fill {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10m0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10m0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6%22/%3E%3C/svg%3E");
}

.bi-telephone-fill {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath fill-rule=%22evenodd%22 d=%22M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath fill-rule=%22evenodd%22 d=%22M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z%22/%3E%3C/svg%3E");
}

.bi-clock-fill {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z%22/%3E%3C/svg%3E");
}

.bi-envelope {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z%22/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z%22/%3E%3C/svg%3E");
}


