:root {
    /* "Quiet Luxury" Palette */
    --c-cream: #F4F1EA;
    /* Warmer paper tone */
    --c-stone: #E6E2D6;
    /* Surface panels */
    --c-dark: #121412;
    /* Soft Black */
    --c-olive: #465935;
    /* Accent */
    --c-clay: #B85C38;
    /* Highlight */

    --f-head: 'Playfair Display', serif;
    --f-body: 'Inter', sans-serif;

    /* Fluid Spacing System */
    --pad-x: clamp(1.5rem, 5vw, 6rem);
    --pad-y: clamp(3rem, 8vw, 10rem);
    --gap-grid: clamp(1.5rem, 3vw, 4rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-cream);
    color: var(--c-dark);
    font-family: var(--f-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- NAV UPDATE --- */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: #fff;
    /* Always white on hero */
    background: transparent;
    transition: background 0.3s;
    mix-blend-mode: normal;
    /* Remove exclusion for cleaner look */
}

.nav-logo {
    font-family: var(--f-head);
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: currentColor;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.nav-cta {
    display: block !important;
    border: 1px solid currentColor;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

@media (min-width: 768px) {
    .nav-links a {
        display: block;
    }
}

/* Light Navigation (For Sub-pages) */
.nav.nav-light {
    position: fixed;
    background: rgba(244, 241, 234, 0.9);
    /* Cream with blur */
    backdrop-filter: blur(10px);
    color: var(--c-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav.nav-light .nav-logo a {
    color: var(--c-dark);
}

.nav.nav-light .nav-links a {
    color: var(--c-dark);
}

.nav.nav-light .nav-cta {
    border-color: var(--c-dark);
    color: var(--c-dark);
    text-decoration: none;
}

.nav.nav-light .nav-cta:hover {
    background: var(--c-dark);
    color: #fff;
}

.nav.nav-light .hamburger {
    color: var(--c-dark);
}

.nav.nav-light .hamburger-line {
    background: var(--c-dark);
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    /* Minimum touch target size */
    min-height: 44px;
    /* Minimum touch target size */
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    /* Remove tap highlight on mobile */
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation when Active */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay - OFF CANVAS STYLE */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--c-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Backdrop overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.mobile-menu-link {
    font-family: var(--f-head);
    font-size: 1.75rem;
    color: var(--c-cream);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link:hover {
    color: var(--c-clay);
    padding-left: 10px;
}

.mobile-cta {
    background: var(--c-olive);
    color: #fff !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    border: none;
}

.mobile-cta:hover {
    background: var(--c-clay);
    padding-left: 1.5rem;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact {
    color: var(--c-cream);
    text-decoration: none;
    font-size: 1.05rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.mobile-contact:hover {
    opacity: 1;
    color: var(--c-clay);
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .nav .nav-cta {
        display: none !important;
    }
}


/* --- SECTION 1: HERO (CINEMATIC) --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--c-dark);
    margin-bottom: 0;
    overflow: hidden;
    /* Clips scaling images */
}

/* Background Layer */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: center center;
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    /* extend slightly to prevent sub-pixel gaps */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    /* Much darker for contrast */
    z-index: 5;
    pointer-events: none;
}

/* Content Layer */
.hero-content-center {
    position: relative;
    z-index: 20;
    /* Ensure it is well above the background */
    padding: 0 var(--pad-x);
    max-width: 900px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    /* Default to visible */
}

.hero-text-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Approximate height for text block */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-text-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: opacity, transform;
}

.hero-text-slide.active {
    opacity: 1;
}

.eyebrow-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--f-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title em {
    opacity: 0.9;
    font-style: italic;
}

.hero-subtext {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.btn-primary {
    background: var(--c-olive);
    /* Olive Green */
    color: #fff;
    padding: 1rem 2.8rem;
    border-radius: 4px;
    /* Professional Rectangular */
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    cursor: pointer;
    background: #576d43;
    /* Lighter Olive */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--c-dark);
    color: #fff;
    border: 2px solid var(--c-dark);
    padding: 1rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--c-dark);
    border-color: var(--c-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: #fff;
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav {
        padding: 1rem;
    }

    .text-content {
        padding-top: 0;
    }
}

/* Mobile Adjustments - Crucial for smoothness and friendliness */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .hero-container {
        justify-content: space-between;
        /* Push text to edges */
        padding-top: 20vh;
        padding-bottom: 10vh;
    }

    /* Adjust text size for readability */
    .hero-title {
        font-size: 11vw;
        line-height: 1.1;
    }

    /* Move text away from center image to reduce clutter */
    .hero-text-top {
        margin-bottom: auto;
        transform: translateY(-2vh);
    }

    .hero-text-bottom {
        margin-top: auto;
        transform: translateY(2vh);
    }

    /* Relax the visual sizes */
    .hero-center-visual {
        width: 80vw;
        height: 40vh;
        top: 50%;
    }

    /* Make CTA smaller and unobtrusive */
    .hero-cta-circle {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
        bottom: -5%;
        right: 0%;
        background: var(--c-dark);
        /* Contrast popup */
    }

    .hero-meta {
        font-size: 0.75rem;
        display: none;
    }

    /* Hide meta on mobile to clean up */
    .scroll-hint {
        display: none;
    }
}

/* --- SECTION 2: INTRO STATEMENT --- */
.intro-statement {
    background-color: var(--c-cream);
    padding: var(--pad-y) var(--pad-x);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-text {
    font-family: var(--f-head);
    /* Restore beautiful serif font */
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    /* Professional desktop size */
    line-height: 1.5;
    color: var(--c-dark);
    max-width: 900px;
    /* Reduced width to match smaller font */
    margin: 0 0 5rem 0;
    /* Aligned Left */
    font-weight: 400;
}

.highlight-text {
    font-family: inherit;
    /* Inherit Playfair */
    font-style: italic;
    color: var(--c-olive);
    /* Olive Green Accent */
}

.intro-stats {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0;
    /* Aligned Left */
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .num {
    font-family: var(--f-head);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .intro-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 columns */
        gap: 2rem 1rem;
        /* Row gap, Col gap */
        width: 100%;
    }

    .stat .num {
        font-size: 2.5rem;
    }

    /* Slightly smaller for mobile grid */
    .stat:last-child {
        grid-column: span 2;
    }

    /* Center the last odd item (if 3 items) or keep as is */
}

/* --- SECTION 3: THE RITUAL (STICKY & SMOOTH) --- */
.process-section {
    position: relative;
    background-color: var(--c-stone);
    color: var(--c-dark);
}

.process-sticky {
    display: flex;
    align-items: flex-start;
    /* Aligns image to top */
    position: relative;
}

/* Sticky Image Side */
.process-visual {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.process-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
    /* Optimize for smooth transitions */
}

.process-img.active {
    opacity: 1;
}

/* Scrolling Content Side */
.process-content {
    width: 50%;
    padding: 0 var(--pad-x);
    position: relative;
}

.process-step {
    min-height: 80vh;
    /* Each step takes up space to scroll */
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    /* Fully visible always */
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle divider */
}

/* Step Typography */
.step-num {
    font-family: var(--f-head);
    font-size: 5rem;
    color: var(--c-olive);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.process-step h3 {
    font-family: var(--f-head);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.process-step p {
    max-width: 450px;
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Mobile: Optimized sticky layout */
@media (max-width: 900px) {
    .process-sticky {
        flex-direction: column;
    }

    .process-visual {
        width: 100%;
        height: 40vh;
        /* Reduced height for mobile */
        min-height: 300px;
        /* Ensure minimum visibility */
        position: sticky;
        top: 0;
        /* Stick to top of viewport */
        z-index: 10;
        /* Ensure it stays above content */
    }

    .process-img-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .process-img {
        /* Add hardware acceleration for smoother transitions on mobile */
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .process-content {
        width: 100%;
        padding-top: 2rem;
        background-color: var(--c-stone);
        /* Ensure background continuity */
        position: relative;
        z-index: 5;
    }

    .process-step {
        min-height: 60vh;
        /* Taller steps for better scroll triggering */
        padding: 3rem var(--pad-x);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .step-num {
        font-size: 3rem;
    }

    .process-step h3 {
        font-size: 2.5rem;
    }
}

/* --- SECTION 4: HORIZONTAL SCROLL --- */
.services-pin-wrapper {
    height: 100vh;
    overflow: hidden;
    background-color: var(--c-dark);
    color: var(--c-cream);
    display: flex;
    flex-direction: column;
}

.services-header {
    padding: 2rem var(--pad-x) 0 var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-shrink: 0;
}

.services-header h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 3rem);
}

.horizontal-scroll-container {
    display: flex;
    flex-grow: 1;
    padding: 2rem var(--pad-x) 0 var(--pad-x);
    align-items: flex-start;
    gap: 4rem;
    width: fit-content;
}

.h-card {
    width: 35vw;
    /* Desktop */
    height: 60vh;
    flex-shrink: 0;
    position: relative;
}

.h-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.h-img {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.h-img img {
    transition: transform 0.7s ease;
}

.h-card:hover .h-img img {
    transform: scale(1.1);
}

.h-num {
    font-family: var(--f-head);
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    mix-blend-mode: overlay;
    z-index: 2;
}

.h-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--f-head);
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    padding: 0 1rem;
}

.h-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 100%;
    color: #fff;
    line-height: 1.6;
    padding: 0 1rem 1rem 1rem;
}

.centered {
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--c-cream);
    color: var(--c-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .h-card {
        width: 85vw;
        height: 50vh;
    }
}

/* --- SECTION 5: CONDITIONS (ACCORDION) --- */
.conditions-section {
    background-color: var(--c-stone);
    padding: var(--pad-y) var(--pad-x);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-grid);
}

.col-left h2 {
    font-family: var(--f-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.sub-cond {
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 350px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--c-olive);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.accordion-list {
    list-style: none;
}

.acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    cursor: pointer;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-family: var(--f-head);
}

.acc-body {
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    font-size: 1rem;
    transition: all 0.4s ease;
    max-width: 90%;
}

.acc-item.active .acc-body {
    height: auto;
    margin-top: 1rem;
    opacity: 0.8;
    padding-bottom: 1rem;
}

.acc-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    transition: transform 0.3s ease;
    font-weight: 300;
}

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

/* --- SECTION 6: REVIEWS --- */
.reviews-section {
    padding: var(--pad-y) var(--pad-x);
    background: var(--c-cream);
}

.section-title {
    font-family: var(--f-head);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-mark {
    font-family: var(--f-head);
    font-size: 4rem;
    color: var(--c-clay);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.review-author {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SECTION 7: FOOTER --- */
.footer-section {
    background-color: var(--c-dark);
    color: var(--c-cream);
    padding-bottom: 2rem;
    overflow: hidden;
}

.marquee {
    background: var(--c-clay);
    color: #fff;
    padding: 1rem 0;
    white-space: nowrap;
    overflow: hidden;
}

.track {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--f-head);
    font-size: 1.2rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-content {
    padding: var(--pad-y) var(--pad-x);
    text-align: center;
}

.footer-cta {
    font-family: var(--f-head);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 4rem;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 1rem 2rem;
    border: 1px solid var(--c-cream);
    color: var(--c-cream);
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--c-cream);
    color: var(--c-dark);
}

.btn-solid {
    padding: 1rem 2rem;
    background: var(--c-cream);
    color: var(--c-dark);
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-solid:hover {
    background: var(--c-clay);
    color: #fff;
}

.footer-details {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-col h4 {
    font-family: var(--f-head);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--c-clay);
}

.detail-col p {
    opacity: 0.7;
    line-height: 1.6;
}

.btn-map {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: var(--c-clay);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--c-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container {
    margin: 3rem auto 4rem auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.4;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .footer-details {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-image-container {
        width: 80vw;
    }
}

/* --- BOOKING PAGE --- */
.booking-page {
    background-color: var(--c-cream);
    min-height: 100vh;
}

.booking-container {
    padding: 160px var(--pad-x) var(--pad-y) var(--pad-x);
    max-width: 1600px;
    margin: 0 auto;
}

.booking-layout {
    margin-top: 3rem;
    gap: 5rem;
    display: flex;
    justify-content: space-between;
}

/* Left Side Info */
.contact-info-side {
    flex: 1;
    max-width: 500px;
}

.eyebrow-dark {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-olive);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-title {
    font-family: var(--f-head);
    font-size: 4.5rem;
    line-height: 1.05;
    color: var(--c-dark);
    margin-bottom: 2rem;
}

.page-title em {
    font-style: italic;
    color: var(--c-dark);
    font-weight: 400;
}

.contact-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 440px;
    opacity: 0.85;
    color: var(--c-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.info-item .val {
    font-family: var(--f-head);
    font-size: 1.3rem;
    color: var(--c-dark);
    text-decoration: none;
    line-height: 1.3;
}

/* Right Side Form */
.form-side {
    flex: 1;
    max-width: 550px;
}

.booking-form {
    background: #fff;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--c-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

input,
select,
textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FAFAFA;
    /* Very light gray for contrast against white card */
    border-radius: 8px;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-dark);
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--c-olive);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
    /* Focus ring */
    outline: none;
}

/* Custom Select Arrow */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.full-width {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .booking-container {
        padding: 140px var(--pad-x) 3rem var(--pad-x);
    }

    /* Ensure horizontal padding on mobile */

    .booking-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info-side,
    .form-side {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form {
        padding: 2rem;
    }

    .page-title {
        font-size: 3rem;
    }

    /* Stack contact info on mobile for better alignment */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    input,
    select,
    textarea {
        font-size: 16px;
        /* Prevents iOS zoom */
        padding: 1rem;
    }
}

/* --- SERVICES PAGE --- */
.services-page-header {
    background-color: var(--c-cream);
    padding: 160px var(--pad-x) 4rem var(--pad-x);
    text-align: center;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.services-list {
    background-color: #fff;
}

.service-row {
    padding: 6rem var(--pad-x);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.s-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.s-visual {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

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

.service-row:hover .s-visual img {
    transform: scale(1.05);
}

.s-content {
    flex: 1;
}

/* Alternating Reverse Layout */
.service-row.reverse .s-layout {
    flex-direction: row-reverse;
}

.s-num {
    font-family: var(--f-head);
    font-size: 4rem;
    color: var(--c-clay);
    opacity: 0.3;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.s-content h2 {
    font-family: var(--f-head);
    font-size: 3rem;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
}

.s-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.s-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.s-benefits li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-olive);
    font-weight: 500;
}

.s-benefits li::before {
    content: "•";
    color: var(--c-clay);
    font-size: 1.5rem;
    line-height: 0;
}

@media (max-width: 900px) {
    .services-page-header {
        padding: 140px var(--pad-x) 3rem var(--pad-x);
    }

    .s-layout,
    .service-row.reverse .s-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .s-visual {
        width: 100%;
        height: 300px;
    }

    .s-content {
        text-align: left;
    }

    .s-num {
        font-size: 3rem;
    }

    .s-content h2 {
        font-size: 2.5rem;
    }

    .s-benefits {
        grid-template-columns: 1fr;
    }
}

/* --- SERVICE DETAIL PAGES --- */
.service-detail-header {
    background-color: var(--c-cream);
    padding: 160px var(--pad-x) 4rem var(--pad-x);
    text-align: center;
}

.service-content-section {
    padding: 0 var(--pad-x) 8rem var(--pad-x);
    background-color: var(--c-cream);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.detail-hero-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--c-dark);
}

.content-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--c-dark);
    opacity: 0.9;
}

.benefits-block {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-block h3 {
    font-family: var(--f-head);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-olive);
}

.cta-block {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-block h3 {
    font-family: var(--f-head);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block p {
    margin-bottom: 2rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .detail-hero-img {
        height: 40vh;
        margin-bottom: 2rem;
    }

    .content-block h2 {
        font-size: 2.25rem;
    }

    .benefits-block {
        padding: 2rem;
    }
}

/* --- FAQ SECTION (SEO OPTIMIZED - PREMIUM DESIGN) --- */
.faq-section {
    background: linear-gradient(to bottom, var(--c-cream) 0%, var(--c-stone) 100%);
    padding: var(--pad-y) var(--pad-x);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.eyebrow-dark {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--c-olive);
    display: block;
    margin-bottom: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
}

.faq-header .section-title {
    font-family: var(--f-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--c-dark);
    font-weight: 400;
}

.faq-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--c-dark);
    opacity: 0.75;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(70, 89, 53, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(70, 89, 53, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--c-olive);
    box-shadow: 0 8px 32px rgba(70, 89, 53, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--c-olive);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.faq-item.active .faq-question::before {
    height: 60%;
}

.faq-question:hover {
    background: rgba(70, 89, 53, 0.03);
}

.faq-item.active .faq-question {
    background: rgba(70, 89, 53, 0.05);
}

.faq-question h3 {
    font-family: var(--f-head);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--c-dark);
    margin: 0;
    padding-right: 2rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--c-olive);
}

.faq-icon {
    font-size: 2rem;
    color: var(--c-olive);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 89, 53, 0.08);
    border-radius: 50%;
    font-weight: 300;
}

.faq-item:hover .faq-icon {
    background: rgba(70, 89, 53, 0.12);
    transform: scale(1.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--c-olive);
    color: var(--c-cream);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 2rem 2rem 2rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-dark);
    opacity: 0.8;
    margin: 0;
    padding-left: 2rem;
    border-left: 2px solid rgba(70, 89, 53, 0.15);
}

/* Subtle animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.faq-item {
    animation: fadeInUp 0.6s ease backwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem var(--pad-x);
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-header .section-title {
        font-size: clamp(1.65rem, 6.5vw, 2rem) !important;
    }

    .faq-intro {
        font-size: 1.1rem;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.2rem !important;
        line-height: 1.4;
        padding-right: 1rem;
    }

    .faq-icon {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 1.05rem !important;
        line-height: 1.7;
        padding-left: 1rem;
    }

    .faq-question::before {
        width: 3px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

@media (max-width: 768px) {

    /* --- ROOT SPACING ADJUSTMENTS --- */
    :root {
        --pad-x: 1.25rem;
        --pad-y: 3rem;
        --gap-grid: 1.5rem;
    }

    /* --- HERO SECTION --- */
    .hero-section {
        min-height: 100vh;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .eyebrow-text {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        margin-bottom: 0.75rem;
    }

    .hero-subtext {
        font-size: 1.1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .btn-group {
        gap: 0.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.95rem 1.75rem;
        font-size: 1.05rem;
        width: 100%;
    }

    /* --- INTRO STATEMENT SECTION --- */
    .intro-statement {
        padding: 2.5rem var(--pad-x);
    }

    .intro-text {
        font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    .intro-stats {
        gap: 1.5rem 1rem;
    }

    .stat .num {
        font-size: 2rem;
    }

    .stat .label {
        font-size: 0.9rem;
    }

    /* --- CONDITIONS SECTION --- */
    .conditions-section {
        padding: 2.5rem var(--pad-x);
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .col-left h2 {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .sub-cond {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .acc-item {
        margin-bottom: 0;
        padding: 0.5rem 0;
    }

    .acc-header {
        padding: 0.5rem 1rem;
        font-size: 1.15rem;
    }

    .acc-body {
        padding: 0 1rem 1rem 1rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* --- SERVICES SECTION --- */
    .services-pin-wrapper {
        height: 100vh;
        overflow: hidden;
        background-color: var(--c-dark);
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .services-header {
        padding: 0 1rem 0.75rem 1rem;
        color: var(--c-cream);
    }

    .services-header h2 {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
        line-height: 1.25;
        margin-bottom: 0.75rem;
        color: #fff;
    }

    .services-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        opacity: 1;
    }

    .horizontal-scroll-container {
        gap: 1rem;
        padding: 0 1rem;
    }

    .h-card {
        min-width: 90vw;
        padding: 1.5rem 1rem;
        margin-right: 0;
        scroll-snap-align: center;
    }

    .h-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
        color: #fff;
        font-weight: 500;
    }

    .h-card p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .h-num {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    /* --- PROCESS SECTION --- */
    .process-section {
        padding: 0;
    }

    .process-content {
        width: 100%;
        padding: 2rem var(--pad-x);
    }

    .process-step {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .step-num {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }

    .process-step h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .process-step p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
        padding: 2.5rem var(--pad-x);
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-header .section-title {
        font-size: clamp(1.65rem, 6.5vw, 2rem) !important;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .faq-intro {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 1.15rem !important;
        line-height: 1.4;
        padding-right: 0.75rem;
    }

    .faq-icon {
        font-size: 1.4rem;
        width: 24px;
        height: 24px;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .faq-answer p {
        font-size: 1.05rem !important;
        line-height: 1.6;
    }

    /* --- REVIEWS SECTION --- */
    .reviews-section {
        padding: 2.5rem var(--pad-x);
    }

    .section-title {
        font-size: clamp(1.75rem, 6.5vw, 2.15rem);
        margin-bottom: 2rem;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .review-author {
        font-size: 1rem;
    }

    .quote-mark {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    /* --- FOOTER SECTION --- */
    .footer-section {
        padding: 2rem var(--pad-x);
    }

    .footer-cta {
        font-size: clamp(1.75rem, 6.5vw, 2.15rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-outline,
    .btn-solid {
        width: 100%;
        padding: 0.95rem 1.75rem;
        font-size: 1.05rem;
    }

    .footer-details {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .detail-col h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .detail-col p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .map-container {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .map-container iframe {
        height: 250px !important;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 1rem;
    }

    /* --- SERVICES PAGE SPECIFIC --- */
    .services-page-header {
        padding: 6rem var(--pad-x) 3rem var(--pad-x);
    }

    .page-title {
        font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .service-intro {
        font-size: 1.1rem !important;
        line-height: 1.6;
    }

    .services-list {
        padding: 1rem 0;
    }

    .service-row {
        padding: 2rem 0;
    }

    .s-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .s-visual {
        width: 100%;
        height: 250px;
    }

    .s-content {
        width: 100%;
    }

    .s-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .s-desc {
        font-size: 1.1rem !important;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .s-benefits {
        margin-bottom: 1.5rem;
    }

    .s-benefits li {
        font-size: 1.05rem;
        padding: 0.5rem 0;
    }

    .s-num {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    /* --- GENERAL MOBILE IMPROVEMENTS --- */
    h1 {
        font-size: clamp(1.85rem, 7vw, 2.25rem);
    }

    h2 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
    }

    h3 {
        font-size: clamp(1.4rem, 5.5vw, 1.65rem);
    }

    p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Reduce overall section spacing */
    section {
        margin-bottom: 0;
    }

    /* Better button sizing */
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-solid {
        font-size: 1.05rem;
        padding: 1rem 2rem;
    }

    /* Improve touch targets */
    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better spacing for lists */
    ul,
    ol {
        padding-left: 1.25rem;
    }

    li {
        margin-bottom: 0.5rem;
    }
}