:root {
    --color-primary: #1a1a1a;
    --color-secondary: #555555;
    --color-gold: #C5A059;
    --color-gold-hover: #B08D45;
    --color-background: #faf9f6;
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem; /* Increased for modern spacious look */
    
    --container-width: 1280px;
    --header-height: 100px; /* Taller header */
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px; /* Thicker and wider (was 14px 32px) */
    font-size: 1rem; /* Slightly larger text */
    font-weight: 700; /* Bolder text */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 20px; /* Floating from top */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    opacity: 1;
    will-change: transform, opacity;
    transition: transform 80ms linear, opacity 80ms linear, box-shadow 120ms linear;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    border-radius: 24px; /* Fully rounded floating tab */
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-header.header-hidden {
    transform: translateY(calc(-100% - 40px));
    opacity: 0;
}

.site-header:not(.header-hidden) {
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-panel-shell,
.mobile-panel-track {
    display: contents;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: var(--color-background);
    border-radius: 12px;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background-color: var(--color-background);
    background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(250, 249, 246, 0.4) 0%, rgba(250, 249, 246, 0.9) 100%);
    pointer-events: none;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
        "text visual"
        "actions visual";
    column-gap: clamp(2.5rem, 4vw, var(--spacing-xl));
    row-gap: 1.35rem;
    align-items: start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    grid-area: text;
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1rem;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 0;
    max-width: 620px;
    line-height: 1.8;
}

.hero-actions {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0;
    animation: fadeInUp 1.35s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(24px);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 0;
}

.hero-hours {
    font-size: 0.85rem;
    color: var(--color-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

.hero-trustline {
    display: none;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    height: 700px;
    border-radius: 350px 350px 40px 40px; /* Sophisticated arch shape */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    animation: fadeInRight 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateX(50px);
    border: 8px solid var(--color-white);
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197, 160, 89, 0.1), transparent);
    pointer-events: none;
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
}

.services::before {
    content: 'ZONOVA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 20vw;
    color: rgba(197, 160, 89, 0.03);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 2vw;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-secondary);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

.service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-description {
    color: var(--color-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background-color: var(--color-gold);
}

.learn-more-btn {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
    overflow: hidden;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-image-container {
    position: relative;
    padding: 20px;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.4;
}

.about-image-container::after {
    content: none;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.provider-grid {
    display: grid;
    gap: 2rem;
}

.provider-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    background: linear-gradient(140deg, #f8f4ec 0%, #ffffff 65%);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1), box-shadow 420ms ease;
}

@media (hover: hover) {
    .provider-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(15, 18, 24, 0.11);
    }
}

.provider-image {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.provider-content {
    padding: 2.25rem 2.25rem 2.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: flex-start;
    height: 100%;
}

.provider-content h3 {
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
    margin-bottom: 0.2rem;
}

.provider-role {
    font-size: 0.82rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.provider-credentials-inline {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.58);
    margin: 0 0 0.2rem;
}

.provider-content p {
    color: var(--color-secondary);
    line-height: 1.75;
    font-size: 1.02rem;
    margin: 0;
}

.provider-summary {
    color: var(--color-secondary);
}

.provider-trust {
    font-size: 0.86rem;
    color: rgba(26, 26, 26, 0.68);
    letter-spacing: 0.02em;
}

.provider-proof-list {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
}

.provider-proof-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #3f3f3f;
}

.provider-proof-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 1px;
    background: var(--color-gold);
}

.provider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* Provider Pages */
.provider-page-main {
    padding-top: 0;
}

.provider-hero {
    padding: calc(var(--header-height) + 56px) 0 4.5rem;
    background-color: var(--color-background);
    background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
}

.provider-hero-inner {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: 2.5rem;
    align-items: center;
}

.provider-portrait-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, 0.9);
}

.provider-portrait {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.provider-hero-panel {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 24px;
    padding: 2.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.provider-kicker {
    font-size: 0.8rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.75rem;
}

.provider-kicker-mobile {
    display: none;
}

.provider-kicker-desktop {
    display: block;
}

.provider-hero-panel h1 {
    margin-bottom: 0.6rem;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.provider-credentials {
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.62);
    margin-bottom: 0.35rem;
}

.provider-title {
    color: var(--color-secondary);
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.provider-hook {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}

.provider-points {
    list-style: none;
    margin-bottom: 1.5rem;
}

.provider-points li {
    font-size: 0.95rem;
    color: #3e3e3e;
    margin-bottom: 0.55rem;
    padding-left: 1.3rem;
    position: relative;
}

.provider-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 7px;
    height: 1px;
    background: var(--color-gold);
}

.provider-page-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.provider-story-section {
    padding: 4.5rem 0;
    background-color: var(--color-white);
}

.provider-story-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.provider-story h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.2rem;
}

.provider-story p {
    color: var(--color-secondary);
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.provider-side-card {
    background: #f8f4ec;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 18px;
    padding: 1.35rem;
}

.provider-side-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.provider-side-card p {
    color: var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.provider-close-cta {
    padding: 3.5rem 0 5rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f1e8 100%);
    text-align: center;
}

.provider-close-cta h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 0.9rem;
}

.provider-close-cta p {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
}

/* Booking Section */
.booking {
    padding: var(--spacing-xl) 0;
    background-color: #f4f1ea; /* Subtle warm background change */
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-embed-container {
    width: 100%;
    max-width: 480px; /* Reduced to match Mangomint widget perfectly and remove black lines */
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.booking-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.booking-alternatives {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    width: 100%;
    max-width: 600px;
}

.booking-alternatives p:first-child {
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.phone-link {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-primary);
    margin: 0.5rem 0;
    font-weight: 400;
}

.phone-link:hover {
    color: var(--color-gold);
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: var(--spacing-lg) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: var(--color-gold);
    font-size: 1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #888;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-info a {
    color: #fff;
}

.footer-info a:hover {
    color: var(--color-gold);
}

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

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

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll Motion System */
.motion-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
        opacity 680ms ease;
    will-change: transform, opacity;
}

.motion-item.motion-left {
    transform: translate3d(-34px, 0, 0);
}

.motion-item.motion-image {
    transform: translate3d(0, 18px, 0);
}

.motion-item.motion-image .service-image,
.motion-item.motion-image .provider-image,
.motion-item.motion-image .provider-portrait,
.motion-item.motion-image .about-image {
    transform: scale(1.045);
    transition: transform 980ms cubic-bezier(0.19, 1, 0.22, 1);
}

.motion-item.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.motion-item.motion-image.in-view .service-image,
.motion-item.motion-image.in-view .provider-image,
.motion-item.motion-image.in-view .provider-portrait,
.motion-item.motion-image.in-view .about-image {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .motion-item,
    .motion-item.motion-left,
    .motion-item.motion-image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .motion-item.motion-image .service-image,
    .motion-item.motion-image .provider-image,
    .motion-item.motion-image .provider-portrait,
    .motion-item.motion-image .about-image {
        transform: none !important;
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 5rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .provider-card {
        grid-template-columns: 300px 1fr;
    }

    .provider-hero-inner,
    .provider-story-grid {
        grid-template-columns: 1fr;
    }

    .provider-portrait {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-sm: 1.25rem;
        --spacing-md: 2rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --header-height: 80px; /* Taller mobile header */
    }

    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* V5 Redesign overrides desktop styles */
    .main-nav {
        display: none; /* Controlled by JS and critical.css */
    }

    .main-nav .btn {
        width: 100%;
    }

    /* Hero Mobile - Elegant & Simple */
    .hero {
        padding-top: calc(var(--header-height) + 3.5rem); /* Adjusted spacing from header */
        padding-bottom: 3rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
        background-position: center;
        background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg') !important;
        background-size: cover;
    }

    .hero::after {
        background: radial-gradient(circle at center, rgba(250, 249, 246, 0.4) 0%, rgba(250, 249, 246, 0.8) 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-container-split {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .hero-text-content {
        text-align: center;
        order: 1;
        padding: 0 1.5rem;
        transform: none !important;
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem); 
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        color: #111;
        font-family: var(--font-serif);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); /* Subtle highlight for contrast */
    }

    .hero h1 span {
        display: inline-block;
        white-space: nowrap;
    }
    
    .subheadline {
        font-size: 0.85rem;
        letter-spacing: 4px;
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9); /* Clearer on light background */
        color: #A67C37; /* Slightly deeper gold for better contrast */
        line-height: 1.6;
        text-transform: uppercase;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: #222; /* Darker for better contrast */
        line-height: 1.6;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 20px;
        font-size: 1.1rem;
        letter-spacing: 2px;
        border-radius: 40px;
    }
    
    .hero-visual {
        display: block !important;
        width: 100%;
        max-width: 420px;
        height: 320px;
        border-radius: 24px;
        margin: 1rem auto 0;
        border-width: 4px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
        transform: none !important;
        animation: fadeInUp 0.9s ease forwards;
        opacity: 1;
    }

    .booking-embed-container {
        max-width: 480px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .site-header {
        top: 15px;
        height: var(--header-height);
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile Menu Toggle Refined */
    .mobile-menu-toggle {
        width: 24px;
        height: 18px; /* Tighter toggle icon */
    }

    /* Services Mobile - Modern Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem; /* Subtle inset */
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        letter-spacing: -0.01em;
    }

    .service-card {
        box-shadow: 0 10px 30px rgba(0,0,0,0.06); /* Elegant shadow */
        border-radius: 20px; /* Softer corners */
    }
    
    .service-image {
        height: 260px; /* Balanced height */
    }
    
    .service-content {
        padding: 1.75rem;
        text-align: left; /* Keep left alignment for readability */
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        order: -1;
        margin-bottom: 1rem;
        padding: 0 1rem; /* Inset image slightly */
    }
    
    .about-image-container::before {
        right: 0;
        top: 15px;
        width: 100%;
        border-width: 1px;
    }
    
    .about-content {
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.25rem;
    }

    .team .section-header {
        margin-bottom: 2.5rem;
    }

    .provider-grid {
        gap: 1.5rem;
    }

    .provider-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .provider-image {
        min-height: 320px;
        max-height: 360px;
    }

    .provider-content {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .provider-content h3 {
        font-size: 1.6rem;
    }

    .provider-content p {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .provider-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 0.75rem;
    }

    .provider-actions .btn {
        width: 100%;
        max-width: none;
    }

    .provider-page-main {
        padding-top: 0;
    }

    .provider-hero {
        padding: calc(var(--header-height) + 2.25rem) 0 3rem;
    }

    .provider-hero-panel {
        padding: 1.5rem;
    }

    .provider-hero-panel h1 {
        font-size: 2.15rem;
    }

    .provider-portrait-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    .provider-portrait {
        min-height: 360px;
    }

    .provider-page-cta {
        flex-direction: column;
    }

    .provider-page-cta .btn {
        width: 100%;
    }

    .provider-story-section {
        padding: 3rem 0;
    }

    /* Footer Mobile */
    .site-footer {
        background: #111;
        color: #fff;
        padding: 0 0 calc(env(safe-area-inset-bottom) + 1.35rem);
    }

    .site-footer .container {
        padding-left: 2rem;
        padding-right: 1.1rem;
        padding-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-col h3 {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo {
        filter: brightness(0) invert(1);
        margin: 0 0 1rem;
    }

    .footer-info p {
        color: #888;
        margin-bottom: 0.62rem;
    }

    .footer-info a {
        color: #fff;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 0.4rem;
        text-align: left;
        color: #555;
    }
}

/* --- Results Gallery & Admin Styles --- */

/* Results Grid */
.results-hero {
    padding: calc(var(--header-height) + 80px) 0 var(--spacing-lg);
    background-color: var(--color-background);
    background-image: url('https://pub-53e78df282d94cf7941efba33c5a88ab.r2.dev/satin.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(250, 249, 246, 0.4) 0%, var(--color-background) 100%);
}

.results-gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    position: relative;
}

.results-grid-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl); /* More space between pairs */
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.result-pair {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    padding: 3rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
}

.result-pair:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    border-color: rgba(197, 160, 89, 0.15);
}

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

.result-pair-header h3 {
    font-size: 2.25rem;
    color: var(--color-primary);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.result-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--color-background);
}

.result-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.result-img-container:hover img {
    transform: scale(1.08);
}

.result-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

/* Admin Trigger */
.admin-trigger {
    background: none;
    border: none;
    color: #ccc; 
    opacity: 0.5;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.admin-trigger:hover {
    opacity: 1;
    color: var(--color-gold);
    transform: scale(1.1);
}

/* Admin Modals & Forms */
.admin-modal-content {
    text-align: center;
    max-width: 450px;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
}

.admin-dashboard-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.manage-section {
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.manage-section h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.form-input {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background-color: #faf9f6;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.admin-login-form button {
    width: 100%;
}

.error-msg {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 5px;
}

.status-msg {
    margin-top: 10px;
    font-weight: 500;
}

/* Upload Section */
.upload-section {
    background: var(--color-background);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.upload-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.dropzone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.dropzone:hover, .dropzone.dragover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.05);
}

.dropzone-label {
    color: var(--color-secondary);
    pointer-events: none;
    font-size: 0.9rem;
}

.preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.upload-controls {
    display: flex;
    gap: var(--spacing-sm);
}

.upload-controls input {
    flex-grow: 1;
}

/* Admin List */
.admin-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.admin-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

.admin-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.admin-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
}

.admin-item-info span {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.admin-item-actions {
    display: flex;
    gap: 5px;
}

.btn-icon {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--color-background);
    border-color: var(--color-primary);
}

.btn-delete {
    color: #d32f2f;
}

.btn-delete:hover {
    background: #ffebee;
    border-color: #d32f2f;
}

@media (max-width: 600px) {
    .upload-container {
        grid-template-columns: 1fr;
    }
    .result-images {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    .result-pair {
        padding: 1.5rem;
        border-radius: 24px;
    }
    .result-pair-header h3 {
        font-size: 1.75rem;
    }
}

/* Mobile Menu Refined */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 30px); /* Positioned below floating header */
        left: 2.5%; /* Match 95% width */
        right: 2.5%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        display: flex !important;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
        pointer-events: none;
    }
    
    .main-nav.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav .nav-link {
        width: 100%;
        text-align: center;
        font-size: 1.25rem;
        padding: 12px;
        font-family: var(--font-serif);
        text-transform: none;
        letter-spacing: 0;
    }
    
    .main-nav .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 20px;
    }

    .site-header {
        top: 15px;
        height: 80px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .booking-iframe {
        height: 1000px !important; /* Slightly more compact but still functional */
    }
}

/* --- Mobile Efficiency Refinements --- */
@media (max-width: 768px) {
    /* Hero CTA Refinement */
    .hero-cta-group .btn {
        width: 100%;
        max-width: 100%; /* Ensure full width on mobile for efficiency */
        padding: 18px 24px; /* Even thicker on mobile for touch targets */
        font-size: 1.1rem;
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3); /* Pop more */
    }

    /* Service Cards - Clearer Layout */
    .service-card {
        margin-bottom: 1.5rem; /* More separation */
    }

    .service-content h3 {
        font-size: 1.75rem; /* Larger headings for scanning */
    }

    .learn-more-btn {
        width: 100%; /* Full width tap target */
        text-align: center;
        padding: 12px;
        background: rgba(197, 160, 89, 0.1);
        border-radius: 8px;
        border: none;
        margin-top: auto;
    }

    /* Bottom Sticky Book Bar for High Conversion */
    body {
        padding-bottom: 80px; /* Space for sticky bar */
    }

    .mobile-sticky-cta {
        position: fixed;
        bottom: 20px; /* Lift off the bottom to match floating chat style */
        left: 20px;
        right: 20px;
        height: 60px;
        background: transparent; /* Remove background */
        padding: 0;
        box-shadow: none; /* Remove container shadow */
        z-index: 9990; /* Ensure it doesn't block chat if overlapping */
        display: grid;
        grid-template-columns: 60px 1fr 60px; /* Left btn, Center btn, Right placeholder */
        align-items: center;
        gap: 10px;
        pointer-events: none; /* Let clicks pass through empty space */
    }

    .mobile-sticky-cta > * {
        pointer-events: auto; /* Re-enable clicks on buttons */
        box-shadow: 0 4px 20px rgba(0,0,0,0.15); /* Add shadow directly to buttons */
    }

    .mobile-sticky-cta .phone-icon-btn {
        grid-column: 1;
        width: 60px; /* Match standard chat bubble size */
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff; /* White background like chat bubble */
        border-radius: 50%; /* Perfect circle */
        color: var(--color-primary);
        justify-self: start;
    }

    .mobile-sticky-cta .btn {
        grid-column: 2;
        justify-self: center; /* Center in the middle column */
        flex-grow: 0; /* Don't stretch */
        width: auto;
        min-width: 140px; /* Ensure decent width */
        padding: 0 24px;
        font-size: 1rem;
        height: 60px; /* Match height of circles */
        border-radius: 30px; /* Fully rounded pills */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex !important; /* Force show on mobile */
    }
}

/* --- Mobile-First Conversion Overrides --- */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    :root {
        --header-height: 68px;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.6rem;
        --mobile-radius: 20px;
        --mobile-pad: 1.05rem;
        --mobile-shadow: 0 16px 30px rgba(18, 20, 24, 0.08);
        --mobile-screen-height: 100svh;
        --mobile-panel-top: calc(var(--header-height) + env(safe-area-inset-top) + 0.9rem);
        --mobile-panel-height: calc(var(--mobile-screen-height) - var(--header-height) - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.65rem);
        --mobile-hero-image-height: clamp(252px, calc(var(--mobile-panel-height) * 0.43), 390px);
    }

    body {
        padding-bottom: 0 !important;
        background: #faf8f3;
        scroll-snap-type: none;
    }

    body.mobile-panel-mode {
        overscroll-behavior-y: contain;
        overflow: hidden;
        height: 100svh;
    }

    .btn {
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.74rem;
        letter-spacing: 0.09em;
        border-radius: 999px;
        box-shadow: 0 8px 16px rgba(16, 18, 22, 0.05);
        white-space: nowrap;
    }

    .container {
        padding: 0 1.1rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(242, 238, 230, 0.68);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 110;
        pointer-events: none;
    }

    .site-header {
        top: 12px;
        height: var(--header-height);
        width: 94%;
        z-index: 120;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 40px rgba(14, 18, 24, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 46px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        gap: 0;
        padding: 0;
        margin-top: 0;
        border-radius: 10px;
        background: rgba(247, 242, 233, 0.8);
        border: 1px solid rgba(197, 160, 89, 0.14);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        overflow: visible;
        z-index: 122;
    }

    .mobile-menu-toggle span {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 14px;
        height: 1.7px;
        border-radius: 999px;
        display: block;
        transform-origin: center;
    }

    .mobile-menu-toggle span:nth-child(1) {
        transform: translate(-50%, calc(-50% - 5px));
    }

    .mobile-menu-toggle span:nth-child(2) {
        transform: translate(-50%, -50%);
    }

    .mobile-menu-toggle span:nth-child(3) {
        transform: translate(-50%, calc(-50% + 5px));
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0.4);
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    body.mangomint-chat-open {
        scroll-snap-type: none !important;
    }

    .mangomint-chat-close-proxy {
        position: fixed;
        top: max(env(safe-area-inset-top), 0px);
        right: 0;
        width: 88px;
        height: 88px;
        display: none;
        padding: 0;
        border: 0;
        background: transparent;
        z-index: 10000001;
        pointer-events: none;
    }

    body.mangomint-chat-open .mangomint-chat-close-proxy {
        display: block;
        pointer-events: auto;
    }

    .main-nav {
        top: calc(var(--header-height) + 12px);
        left: 3%;
        right: 3%;
        padding: 1rem 0.95rem 0.9rem;
        gap: 0.35rem;
        border-radius: var(--mobile-radius);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 244, 236, 0.96) 100%);
        border: 1px solid rgba(197, 160, 89, 0.16);
        box-shadow: 0 20px 42px rgba(10, 12, 18, 0.14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        display: flex !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition: opacity 220ms ease, transform 280ms cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 220ms;
        z-index: 121;
    }

    .mobile-panel-shell {
        display: block;
        position: relative;
        min-height: var(--mobile-screen-height);
        height: var(--mobile-screen-height);
        overflow: hidden;
    }

    .mobile-panel-track {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(var(--mobile-screen-height) * 4);
        will-change: transform;
        transform: translate3d(0, 0, 0);
        touch-action: pan-x pan-y;
    }

    .mobile-panel-section {
        flex: 0 0 var(--mobile-screen-height);
        max-height: var(--mobile-screen-height);
        overflow: hidden;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }

    .main-nav .nav-link {
        font-family: var(--font-sans);
        font-size: 0.84rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.13em;
        padding: 0.7rem 0.35rem;
        text-align: left;
        border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    }

    .main-nav .nav-link:last-of-type {
        border-bottom: none;
    }

    .main-nav .btn {
        margin-top: 0.55rem;
        min-height: 44px;
        font-size: 0.74rem;
    }

    .hero {
        min-height: var(--mobile-screen-height);
        height: var(--mobile-screen-height);
        padding-top: var(--mobile-panel-top);
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.75rem);
        margin-bottom: 0;
        text-align: left;
        background-position: center;
        background-size: cover;
        align-items: stretch;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(250, 249, 246, 0.82) 0%, rgba(250, 249, 246, 0.68) 48%, rgba(250, 249, 246, 0.62) 100%);
    }

    .hero-container-split {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.2rem;
        min-height: var(--mobile-panel-height);
        height: var(--mobile-panel-height);
        position: relative;
        top: auto;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: clamp(1.05rem, 3vw, 1.35rem) 1.5rem 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-text-content {
        grid-area: auto;
        order: 1;
        text-align: left;
        width: 100%;
        max-width: none;
        align-self: stretch;
        padding: 0;
        padding-top: 0.38rem;
        display: flex;
        flex-direction: column;
        gap: 0.68rem;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero h1 {
        font-size: clamp(1.74rem, 6.5vw, 2.04rem);
        line-height: 1;
        letter-spacing: -0.022em;
        margin-bottom: 0;
        max-width: 14.5ch;
        align-self: flex-start;
        text-wrap: balance;
        color: #141414;
        text-shadow: none;
    }

    .hero h1 span {
        display: inline;
        white-space: normal;
    }

    .hero h1 span:last-child {
        white-space: nowrap;
    }

    .hero-description {
        font-size: 0.94rem;
        line-height: 1.58;
        max-width: 31ch;
        margin: 0;
        align-self: flex-start;
        text-align: left;
        color: #262626;
        text-shadow: none;
    }

    .hero-actions {
        grid-area: auto;
        order: 3;
        width: 100%;
        max-width: none;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.62rem;
        margin-top: 0.15rem;
        padding: 0;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-cta-group {
        display: grid;
        grid-template-columns: max-content 44px;
        justify-content: flex-start;
        align-items: center;
        gap: 0.52rem;
        margin: 0;
        width: auto;
        max-width: none;
    }

    .hero-cta-group .btn {
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding: 0 24px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        box-shadow: 0 10px 18px rgba(197, 160, 89, 0.18);
    }

    .hero-call-btn {
        width: 44px !important;
        min-width: 44px !important;
        height: 44px;
        min-height: 44px !important;
        padding: 0 !important;
        border-radius: 999px;
        justify-self: start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
        overflow: hidden;
        box-shadow: none;
    }

    .hero-call-btn::before {
        content: '';
        display: block;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23212121' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.63a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.45-1.29a2 2 0 0 1 2.11-.45c.85.3 1.73.51 2.63.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hero-hours {
        display: block;
        font-size: 0.66rem;
        opacity: 0.74;
        letter-spacing: 0.1em;
        line-height: 1.5;
        text-transform: uppercase;
        margin-top: 0;
        max-width: 30ch;
    }

    .hero-trustline {
        display: none;
    }

    .hero-visual {
        grid-area: auto;
        order: 2;
        width: 100%;
        max-width: none;
        align-self: stretch;
        height: var(--mobile-hero-image-height);
        margin-top: 0.1rem;
        border-radius: var(--mobile-radius);
        border-width: 2px;
        box-shadow: 0 18px 36px rgba(18, 20, 24, 0.12);
        transition: height 260ms ease, margin-top 260ms ease, transform 260ms ease;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero.is-condensed .hero-visual {
        height: var(--mobile-hero-image-height);
        margin-top: 0;
        transform: none;
    }

    .hero-image-main {
        object-position: center 18%;
    }

    .services,
    .about,
    .team {
        position: relative;
        min-height: var(--mobile-screen-height);
        height: var(--mobile-screen-height);
        padding-top: var(--mobile-panel-top);
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.75rem);
    }

    #services {
        --services-mobile-edge: 1.1rem;
        --services-mobile-bg: #faf8f3;
        --services-mobile-card-clearance: calc(env(safe-area-inset-bottom) + 4.35rem + 40px);
        padding-top: calc(var(--mobile-panel-top) - 1.7rem);
        padding-bottom: 0;
        background: var(--services-mobile-bg);
    }

    #providers {
        --providers-mobile-edge: 1.1rem;
        --providers-mobile-bg: #faf8f3;
        padding-top: calc(var(--mobile-panel-top) - 1.7rem);
        padding-bottom: 0;
        background: var(--providers-mobile-bg);
    }

    #services::before {
        content: none;
    }

    #services > .container,
    #about > .container,
    #providers > .container {
        position: relative;
        top: auto;
        min-height: var(--mobile-panel-height);
        height: var(--mobile-panel-height);
        border-radius: 26px;
        padding-top: 0.95rem;
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.55rem);
    }

    #services > .container,
    #providers > .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    #about > .container,
    #booking > .booking-container {
        min-height: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 246, 239, 0.84) 100%);
        border: 1px solid rgba(197, 160, 89, 0.1);
        box-shadow: 0 18px 32px rgba(18, 20, 24, 0.05);
    }

    #about {
        padding-top: 0.35rem;
        padding-bottom: 0.2rem;
    }

    #about > .container {
        min-height: 100%;
        height: 100%;
        padding-top: calc(0.6rem + 20px);
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.45rem);
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: hidden;
        overscroll-behavior: none;
        -webkit-overflow-scrolling: auto;
        scrollbar-width: none;
    }

    #about > .container::-webkit-scrollbar,
    #booking > .booking-container::-webkit-scrollbar {
        display: none;
    }

    .booking {
        --booking-mobile-edge: 1.1rem;
        min-height: auto;
        height: auto;
        padding-top: 0;
        padding-bottom: calc(env(safe-area-inset-bottom) + 1.1rem);
        margin-top: 0;
        background: transparent;
    }

    .booking::before {
        content: none;
    }

    #booking > .booking-container {
        min-height: auto;
        height: auto;
        padding-top: 40px;
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.75rem);
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        align-items: stretch;
    }

    .services-grid,
    .provider-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1.1rem;
        -webkit-overflow-scrolling: touch;
        padding: 0 1.1rem 0.35rem;
        margin: 0 -1.1rem;
        scrollbar-width: none;
    }

    #services > .container {
        min-height: 100%;
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        background: var(--services-mobile-bg);
        overflow: hidden;
    }

    #providers > .container {
        min-height: 100%;
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        background: transparent;
        overflow: hidden;
    }

    .services-grid {
        margin-bottom: 0;
        flex: 1 1 auto;
        min-height: 0;
        align-items: stretch;
    }

    .provider-grid {
        margin-bottom: 0;
        flex: 1 1 auto;
        min-height: 0;
        align-items: stretch;
    }

    .services-grid::-webkit-scrollbar,
    .provider-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid .service-card,
    .provider-grid .provider-card {
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin-bottom: 0;
    }

    .services-grid .service-card {
        height: calc(100% - var(--services-mobile-card-clearance));
        min-height: calc(100% - var(--services-mobile-card-clearance));
    }

    .provider-grid .provider-card {
        flex-basis: 78%;
        max-width: 78%;
        min-height: 0;
        height: 100%;
    }

    .services-cta {
        position: absolute;
        left: var(--services-mobile-edge);
        bottom: calc(env(safe-area-inset-bottom) + 1.15rem);
        z-index: 2;
        display: flex;
        justify-content: flex-start;
        margin-top: 0;
        padding: 0;
        background: transparent;
    }

    .services-cta .btn {
        min-height: 50px;
        font-size: 0.78rem;
        letter-spacing: 0.09em;
        min-width: 236px;
        padding: 0 34px;
        box-shadow: 0 10px 18px rgba(197, 160, 89, 0.18);
        margin-left: 0;
    }

    .section-header {
        margin-bottom: 1.35rem;
        text-align: left;
        padding: 0 0.08rem;
    }

    #services .section-header {
        max-width: none;
        margin-left: var(--services-mobile-edge);
        margin-right: var(--services-mobile-edge);
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.7rem;
    }

    #services .services-grid {
        padding: 0 var(--services-mobile-edge);
        margin: 0;
    }

    #providers .section-header {
        max-width: none;
        margin-left: var(--providers-mobile-edge);
        margin-right: var(--providers-mobile-edge);
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.7rem;
    }

    #providers .provider-grid {
        padding: 0 var(--providers-mobile-edge);
        margin: 0;
        padding-bottom: 80px;
        scroll-padding-left: var(--providers-mobile-edge);
    }

    #services .section-header h2,
    #services .section-header p,
    #services .services-cta .btn {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    #providers .section-header h2,
    #providers .section-header p {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    #booking .section-header {
        max-width: none;
        margin: 0 var(--booking-mobile-edge) 0.9rem;
        padding: 0;
        text-align: left;
    }

    #booking .section-header h2,
    #booking .section-header p {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        max-width: 31ch;
    }

    #booking .booking-embed-container {
        width: auto;
        max-width: none;
        margin: 0 var(--booking-mobile-edge);
    }

    #booking .booking-alternatives {
        width: auto;
        max-width: none;
        margin: 1rem var(--booking-mobile-edge) 0;
        padding-top: 0;
        text-align: left;
    }

    #booking .booking-alternatives p:first-child,
    #booking .phone-link,
    #booking .booking-alternatives .hero-hours {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    #booking .phone-link {
        font-size: clamp(2rem, 11vw, 2.7rem);
        margin: 0.15rem 0 0.35rem;
    }

    #booking .booking-alternatives p:first-child {
        margin-bottom: 0.18rem;
    }

    .section-header h2 {
        font-size: 1.82rem;
        line-height: 1.04;
        text-wrap: balance;
    }

    .section-header p {
        font-size: 0.92rem;
        line-height: 1.58;
        max-width: 31ch;
        margin-left: 0;
        margin-right: 0;
    }

    .subheadline {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.58rem;
    }

    .service-card,
    .provider-card,
    .provider-hero-panel,
    .provider-side-card,
    .booking-embed-container {
        border-radius: var(--mobile-radius);
        box-shadow: var(--mobile-shadow);
    }

    .service-card,
    .provider-card {
        border: 1px solid rgba(197, 160, 89, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 248, 244, 0.88) 100%);
    }

    .service-image {
        height: 194px;
        border-radius: var(--mobile-radius) var(--mobile-radius) 0 0;
        object-position: center;
    }

    .service-content,
    .provider-content,
    .provider-hero-panel,
    .provider-side-card {
        padding: var(--mobile-pad);
    }

    .service-content,
    .provider-content {
        display: flex;
        flex-direction: column;
        gap: 0.42rem;
    }

    .service-content .subheadline {
        display: inline-flex;
        align-self: flex-start;
        font-size: 0.62rem !important;
        letter-spacing: 0.18em !important;
        margin-bottom: 0.12rem;
        opacity: 0.72;
    }

    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.35rem;
        line-height: 1.08;
    }

    .service-description {
        margin-bottom: 0.95rem;
    }

    .service-description p {
        font-size: 0.89rem;
        line-height: 1.55;
    }

    .service-content > *:not(.learn-more-btn) {
        max-width: 31ch;
    }

    .learn-more-btn {
        border-radius: 999px;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        min-height: 42px;
        width: calc(100% - 1.5rem);
        padding: 0 14px;
        margin: auto 0.75rem 0.4rem;
        border-bottom: none;
        border: 1px solid rgba(197, 160, 89, 0.16);
        background: rgba(248, 244, 236, 0.96);
        align-self: center;
        transform: none !important;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.78rem;
        height: 100%;
    }

    .about-image-container {
        width: 100%;
        height: clamp(264px, calc(var(--mobile-panel-height) * 0.37), 334px);
        padding: 0;
        margin-bottom: 0;
        border-radius: var(--mobile-radius);
        overflow: hidden;
        position: relative;
    }

    .about-content {
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0.48rem;
    }

    .about-content h2 {
        font-size: 1.58rem;
        margin-bottom: 0.28rem;
        text-wrap: balance;
    }

    .about-content p {
        font-size: 0.84rem;
        line-height: 1.46;
        margin-bottom: 0;
        max-width: none;
    }

    .about-content p:nth-of-type(n+2) {
        display: block;
    }

    .about-image-container::before {
        display: none;
    }

    .about-image {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center 30%;
        border-radius: 0;
        box-shadow: 0 18px 34px rgba(16, 20, 24, 0.1);
        margin: 0;
        display: block;
    }

    .about-content p + p {
        margin-top: 0.2rem;
        padding-top: 0;
        border-top: none;
    }

    .provider-card {
        display: flex;
        flex-direction: column;
    }

    #providers .provider-content {
        margin-top: -50px;
        padding: 0.82rem 0.82rem 0.72rem;
        gap: 0.22rem;
        position: relative;
        z-index: 1;
        background: linear-gradient(180deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.92) 100%);
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
    }

    .provider-image {
        min-height: 214px;
        height: 214px;
        max-height: none;
        object-position: center 20%;
    }

    #providers .provider-card:first-child .provider-image {
        object-position: center;
    }

    .provider-content h3 {
        font-size: 1.2rem;
        line-height: 1.08;
        text-wrap: balance;
        margin-bottom: 0.02rem;
    }

    .provider-credentials-inline {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        margin-bottom: 0.08rem;
        color: rgba(26, 26, 26, 0.54);
    }

    .provider-role {
        font-size: 0.67rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.1rem;
    }

    .provider-content p {
        font-size: 0.8rem;
        line-height: 1.42;
    }

    .provider-summary {
        margin-bottom: 0.04rem;
        color: #2a2a2a;
        display: block;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .provider-more-link {
        position: static;
        display: inline;
        font-size: inherit;
        line-height: inherit;
        letter-spacing: 0;
        color: var(--color-gold);
        background: transparent;
        padding-left: 0.04rem;
    }

    .provider-trust {
        font-size: 0.76rem;
        line-height: 1.44;
        color: rgba(26, 26, 26, 0.58);
        margin-bottom: 0;
        display: none;
    }

    .provider-content > *:not(.provider-actions) {
        max-width: 31ch;
    }

    .provider-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.42rem;
        margin-top: auto;
        padding-top: 0.34rem;
    }

    .provider-actions .btn {
        width: 100%;
        min-height: 40px;
        font-size: 0.64rem;
        letter-spacing: 0.07em;
        padding: 0 10px;
        white-space: nowrap;
    }

    .provider-page-main {
        padding-top: 0;
    }

    .provider-hero {
        padding: calc(var(--header-height) + 0.6rem + 20px) 0 1.45rem;
    }

    .provider-hero-inner {
        gap: 0;
        align-items: stretch;
    }

    .provider-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.46rem;
    }

    .provider-kicker-mobile {
        display: none;
    }

    .provider-kicker-desktop {
        display: none;
    }

    .provider-hero-panel h1 {
        font-size: clamp(1.56rem, 6.6vw, 1.88rem);
        line-height: 1.02;
        margin-bottom: 0;
        text-wrap: balance;
    }

    .provider-credentials {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        margin-bottom: 0;
        color: rgba(26, 26, 26, 0.52);
    }

    .provider-title {
        font-size: 0.74rem;
        line-height: 1.45;
        margin-bottom: 0;
        color: rgba(26, 26, 26, 0.72);
    }

    .provider-hook {
        font-size: 0.92rem;
        line-height: 1.62;
        margin-bottom: 0;
        color: #262626;
        max-width: 32ch;
    }

    .provider-points {
        margin-bottom: 0;
        display: grid;
        gap: 0.58rem;
    }

    .provider-points li {
        font-size: 0.82rem;
        line-height: 1.52;
        margin-bottom: 0;
        padding-left: 1rem;
        color: rgba(26, 26, 26, 0.74);
    }

    .provider-page-cta {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.95rem;
        padding-top: 0.88rem;
        border-top: 1px solid rgba(197, 160, 89, 0.14);
    }

    .provider-page-cta .btn {
        min-height: 42px;
        font-size: 0.73rem;
        white-space: nowrap;
    }

    .provider-portrait-wrap {
        order: 1;
        width: calc(100% - 0.4rem);
        max-width: none;
        margin: 0 auto;
        border-radius: 22px;
        border-width: 1px;
        box-shadow: 0 18px 34px rgba(18, 20, 24, 0.12);
        position: relative;
        z-index: 1;
    }

    .provider-portrait {
        min-height: 290px;
        height: clamp(290px, 46vh, 380px);
        max-height: 380px;
        object-position: center 16%;
    }

    body.provider-page-sarah .provider-portrait {
        object-position: center center;
    }

    .provider-hero-panel {
        order: 2;
        position: relative;
        z-index: 2;
        width: calc(100% + 40px);
        margin-top: -1.35rem;
        margin-left: -20px;
        margin-right: -20px;
        padding: 1.15rem 1.05rem 1.08rem;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.74) 100%);
        border: 1px solid rgba(197, 160, 89, 0.16);
        box-shadow: 0 14px 28px rgba(18, 20, 24, 0.07);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    body.provider-page-caroline .provider-hero-panel,
    body.provider-page-jordyn .provider-hero-panel {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 28px;
    }

    .provider-identity {
        display: flex;
        flex-direction: column;
        gap: 0.48rem;
    }

    .provider-meta {
        display: grid;
        gap: 0.22rem;
        padding-top: 0.52rem;
        border-top: 1px solid rgba(197, 160, 89, 0.14);
    }

    .provider-summary-block {
        margin-top: 0.9rem;
        padding-top: 0.88rem;
        border-top: 1px solid rgba(197, 160, 89, 0.12);
    }

    .provider-proof-block {
        margin-top: 0.88rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(197, 160, 89, 0.12);
    }

    .provider-story-section {
        padding: 1.35rem 0 1.75rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.52) 8%, #ffffff 100%);
    }

    .provider-story-grid {
        gap: 0.9rem;
    }

    .provider-story h2,
    .provider-close-cta h2 {
        font-size: 1.28rem;
        text-wrap: balance;
    }

    .provider-story p,
    .provider-close-cta p {
        font-size: 0.9rem;
        line-height: 1.63;
        margin-bottom: 0;
    }

    .provider-story p:nth-of-type(n+2) {
        display: block;
    }

    .provider-story {
        padding: 1.05rem 1rem 1.12rem;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(197, 160, 89, 0.12);
        border-radius: 22px;
        box-shadow: 0 12px 26px rgba(18, 20, 24, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .provider-story h2 {
        margin-bottom: 0.76rem;
    }

    .provider-story-body {
        display: grid;
        gap: 0.88rem;
    }

    .provider-story-body p {
        max-width: 34ch;
    }

    .provider-story-body p + p {
        padding-top: 0.88rem;
        border-top: 1px solid rgba(197, 160, 89, 0.11);
    }

    .provider-side-card h3 {
        font-size: 0.98rem;
        margin-bottom: 0.62rem;
    }

    .provider-side-card p {
        font-size: 0.82rem;
        line-height: 1.56;
        margin-bottom: 0;
    }

    .provider-side-card {
        background: linear-gradient(180deg, rgba(248, 244, 236, 0.92) 0%, rgba(247, 241, 231, 0.76) 100%);
        border: 1px solid rgba(197, 160, 89, 0.13);
    }

    .provider-side-body {
        display: grid;
        gap: 0.62rem;
    }

    .provider-side-body p + p {
        padding-top: 0.62rem;
        border-top: 1px solid rgba(197, 160, 89, 0.11);
    }

    .provider-close-cta {
        padding: 1.45rem 0 2.05rem;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, #f5f1e8 100%);
    }

    .provider-close-cta p {
        max-width: 32ch;
        margin: 0 auto 0.95rem;
    }

    .provider-close-cta .container {
        width: calc(100% - 0.4rem);
        max-width: none;
        margin: 0 auto;
        padding: 1.15rem 1rem 1.05rem;
        background: rgba(255, 255, 255, 0.66);
        border: 1px solid rgba(197, 160, 89, 0.12);
        border-radius: 22px;
        box-shadow: 0 12px 26px rgba(18, 20, 24, 0.05);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .provider-close-cta .provider-page-cta {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .booking-iframe {
        height: clamp(900px, calc(var(--mobile-screen-height) * 1.12), 1080px) !important;
    }

    .mobile-sticky-cta {
        display: none !important;
    }

}
