/* ============================================================
   SANIVA WELLNESS — DESIGN SYSTEM
   Philosophy: Organic Modernism
   Colors: Forest Night + Saniva Green + Premium Gold
   Typography: Lato (headings) + Merriweather (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --sw-green:        #6A8E7F;
    --sw-green-light:  #8aab9d;
    --sw-green-dark:   #4a6b5e;
    --sw-gold:         #C9A84C;
    --sw-gold-dark:    #a8893a;
    --sw-forest:       #1E2D27;
    --sw-forest-mid:   #2a3d35;
    --sw-sage:         #F7F9F8;
    --sw-body:         #4A5A52;
    --sw-border:       #e0ebe5;
    --sw-white:        #ffffff;
    --sw-radius-sm:    8px;
    --sw-radius-md:    12px;
    --sw-radius-lg:    20px;
    --sw-radius-pill:  100px;
    --sw-shadow-sm:    0 2px 8px rgba(30,45,39,0.08);
    --sw-shadow-md:    0 8px 24px rgba(30,45,39,0.12);
    --sw-shadow-lg:    0 16px 48px rgba(30,45,39,0.16);
    --sw-max-width:    1200px;
    --sw-section-v:    96px;
    --sw-section-v-sm: 56px;
}

/* --- Reset & Base --- */
.saniva-page * {
    box-sizing: border-box;
}

.saniva-page {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--sw-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.saniva-page h1,
.saniva-page h2,
.saniva-page h3,
.saniva-page h4,
.saniva-page h5 {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sw-forest);
    margin: 0;
}

.saniva-page p {
    margin: 0 0 1rem;
    line-height: 1.75;
}

.saniva-page a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.saniva-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout Utilities --- */
.sw-container {
    width: 100%;
    max-width: var(--sw-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .sw-container {
        padding: 0 48px;
    }
}

/* --- Typography Utilities --- */
.sw-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sw-gold);
    display: block;
    margin-bottom: 1rem;
}

/* --- Button Components --- */
.sw-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--sw-gold);
    color: var(--sw-forest);
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--sw-radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.sw-btn-gold:hover {
    background: var(--sw-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
    color: var(--sw-forest);
    text-decoration: none;
}

.sw-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--sw-green);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--sw-radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.sw-btn-green:hover {
    background: var(--sw-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106,142,127,0.4);
    color: #fff;
    text-decoration: none;
}

.sw-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: var(--sw-radius-pill);
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.sw-btn-ghost:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
}

/* --- Scroll Animations --- */
.sw-fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.sw-fade-up.sw-visible {
    opacity: 1;
    transform: translateY(0);
}

.sw-delay-1 { transition-delay: 0.1s; }
.sw-delay-2 { transition-delay: 0.2s; }
.sw-delay-3 { transition-delay: 0.3s; }
.sw-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION 01 — NAVIGATION
   ============================================================ */
.sw-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.sw-nav.sw-nav--scrolled {
    background: rgba(30,45,39,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.sw-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: var(--sw-max-width);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .sw-nav__inner {
        padding: 0 48px;
        height: 80px;
    }
}

.sw-nav__logo {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sw-nav__logo span {
    color: var(--sw-gold);
}

.sw-nav__logo:hover {
    text-decoration: none;
    color: #fff;
}

.sw-nav__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .sw-nav__links {
        display: flex;
    }
}

.sw-nav__links a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.sw-nav__links a:hover {
    color: #fff;
    text-decoration: none;
}

.sw-nav__right {
    display: none;
    align-items: center;
    gap: 20px;
}

@media (min-width: 900px) {
    .sw-nav__right {
        display: flex;
    }
}

.sw-nav__phone {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.sw-nav__phone:hover {
    color: #fff;
    text-decoration: none;
}

.sw-nav__phone svg {
    width: 14px;
    height: 14px;
}

.sw-nav__cta {
    background: var(--sw-gold);
    color: var(--sw-forest);
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: var(--sw-radius-pill);
    text-decoration: none;
    transition: all 0.2s;
}

.sw-nav__cta:hover {
    background: var(--sw-gold-dark);
    transform: translateY(-1px);
    color: var(--sw-forest);
    text-decoration: none;
}

/* Mobile hamburger */
.sw-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 900px) {
    .sw-nav__hamburger {
        display: none;
    }
}

.sw-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sw-nav__hamburger.sw-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.sw-nav__hamburger.sw-open span:nth-child(2) {
    opacity: 0;
}
.sw-nav__hamburger.sw-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.sw-nav__mobile {
    display: none;
    flex-direction: column;
    background: var(--sw-forest);
    padding: 0 24px 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.sw-nav__mobile.sw-open {
    max-height: 500px;
}

.sw-nav__mobile a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    display: block;
}

.sw-nav__mobile a:hover {
    color: #fff;
    text-decoration: none;
}

.sw-nav__mobile .sw-btn-gold {
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

@media (max-width: 899px) {
    .sw-nav__mobile {
        display: flex;
    }
}

/* ============================================================
   SECTION 02 — HERO
   ============================================================ */
.sw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--sw-forest);
    overflow: hidden;
}

.sw-hero__bg {
    position: absolute;
    inset: 0;
    right: 0;
    width: 100%;
}

@media (min-width: 900px) {
    .sw-hero__bg {
        left: 50%;
        width: 50%;
    }
}

.sw-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sw-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1E2D27 0%, #1E2D27 20%, rgba(30,45,39,0.7) 65%, rgba(30,45,39,0.25) 100%);
}

@media (max-width: 899px) {
    .sw-hero__bg-overlay {
        background: rgba(30,45,39,0.82);
    }
}

.sw-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--sw-max-width);
    margin: 0 auto;
    padding: 120px 24px 80px;
}

@media (min-width: 1024px) {
    .sw-hero__content {
        padding: 140px 48px 100px;
    }
}

.sw-hero__text {
    max-width: 560px;
}

@media (min-width: 1200px) {
    .sw-hero__text {
        max-width: 620px;
    }
}

.sw-hero__headline {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 24px;
}

.sw-hero__headline em {
    font-style: normal;
    color: var(--sw-gold);
    display: block;
}

.sw-hero__sub {
    font-family: 'Merriweather', serif;
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 500px;
}

.sw-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .sw-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.sw-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    align-items: center;
}

.sw-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
}

.sw-hero__trust-item svg {
    color: var(--sw-gold);
    flex-shrink: 0;
}

.sw-hero__stars {
    display: flex;
    gap: 2px;
}

.sw-hero__stars svg {
    width: 14px;
    height: 14px;
    fill: var(--sw-gold);
    color: var(--sw-gold);
}

.sw-hero__bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    z-index: 3;
}

/* ============================================================
   SECTION 03 — SOCIAL PROOF BAR
   ============================================================ */
.sw-proof-bar {
    background: var(--sw-green);
    padding: 18px 0;
}

.sw-proof-bar__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .sw-proof-bar__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.sw-proof-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

.sw-proof-bar__item svg {
    color: var(--sw-gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.sw-proof-bar__stars {
    display: flex;
    gap: 2px;
}

.sw-proof-bar__stars svg {
    width: 14px;
    height: 14px;
    fill: var(--sw-gold);
    color: var(--sw-gold);
}

.sw-proof-bar__divider {
    display: none;
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
}

@media (min-width: 900px) {
    .sw-proof-bar__divider {
        display: block;
    }
}

.sw-proof-bar__quote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   SECTION 04 — THE SANIVA DIFFERENCE
   ============================================================ */
.sw-diff {
    padding: var(--sw-section-v) 0;
    background: #fff;
}

@media (max-width: 768px) {
    .sw-diff {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-diff__header {
    max-width: 640px;
    margin-bottom: 56px;
}

.sw-diff__headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.sw-diff__headline em {
    font-style: normal;
    color: var(--sw-green);
}

.sw-diff__sub {
    font-size: 1.0625rem;
    color: var(--sw-body);
    line-height: 1.75;
}

.sw-diff__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .sw-diff__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sw-diff__card {
    background: #fff;
    border: 1px solid var(--sw-border);
    border-top: 4px solid var(--sw-green);
    border-radius: var(--sw-radius-lg);
    padding: 32px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sw-diff__card:hover {
    box-shadow: var(--sw-shadow-lg);
    transform: translateY(-4px);
}

.sw-diff__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--sw-radius-md);
    background: var(--sw-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sw-diff__icon svg {
    width: 22px;
    height: 22px;
    color: var(--sw-green);
}

.sw-diff__card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--sw-forest);
}

.sw-diff__card p {
    font-size: 0.9375rem;
    color: var(--sw-body);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   SECTION 05 — HOW IT WORKS
   ============================================================ */
.sw-hiw {
    padding: var(--sw-section-v) 0;
    background: var(--sw-forest);
}

@media (max-width: 768px) {
    .sw-hiw {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-hiw__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.sw-hiw__headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.sw-hiw__headline em {
    font-style: normal;
    color: var(--sw-gold);
}

.sw-hiw__sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.sw-hiw__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

@media (min-width: 640px) {
    .sw-hiw__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sw-hiw__steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sw-hiw__step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--sw-radius-lg);
    padding: 28px;
    transition: background 0.3s ease;
}

.sw-hiw__step:hover {
    background: rgba(255,255,255,0.08);
}

.sw-hiw__step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sw-gold);
    color: var(--sw-forest);
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.sw-hiw__step h3 {
    color: #fff;
    font-size: 1.0625rem;
    margin-bottom: 10px;
}

.sw-hiw__step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.sw-hiw__cta {
    text-align: center;
}

/* ============================================================
   SECTION 06 — MEET THE PROVIDER
   ============================================================ */
.sw-provider {
    padding: var(--sw-section-v) 0;
    background: var(--sw-sage);
}

@media (max-width: 768px) {
    .sw-provider {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-provider__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .sw-provider__grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.sw-provider__img-wrap {
    position: relative;
    border-radius: var(--sw-radius-lg);
    overflow: hidden;
    box-shadow: var(--sw-shadow-lg);
    aspect-ratio: 3/4;
    max-height: 560px;
}

.sw-provider__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sw-provider__badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(30,45,39,0.95) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sw-provider__badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sw-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: var(--sw-forest);
    font-size: 1rem;
    flex-shrink: 0;
}

.sw-provider__badge-name {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 0.9375rem;
    color: #fff;
}

.sw-provider__badge-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}

.sw-provider__headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
}

.sw-provider__headline em {
    font-style: normal;
    color: var(--sw-green);
}

.sw-provider__bio {
    font-size: 1.0625rem;
    color: var(--sw-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sw-provider__creds {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sw-provider__creds li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--sw-body);
}

.sw-provider__creds li svg {
    width: 18px;
    height: 18px;
    color: var(--sw-green);
    flex-shrink: 0;
}

/* ============================================================
   SECTION 07 — TESTIMONIALS
   ============================================================ */
.sw-testi {
    padding: var(--sw-section-v) 0;
    background: #fff;
}

@media (max-width: 768px) {
    .sw-testi {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-testi__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.sw-testi__headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.sw-testi__sub {
    font-size: 1.0625rem;
    color: var(--sw-body);
    line-height: 1.75;
}

.sw-testi__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .sw-testi__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sw-testi__card {
    background: var(--sw-sage);
    border-radius: var(--sw-radius-lg);
    padding: 32px;
    border: 1px solid var(--sw-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sw-testi__stars {
    display: flex;
    gap: 3px;
}

.sw-testi__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--sw-gold);
    color: var(--sw-gold);
}

.sw-testi__quote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--sw-body);
    line-height: 1.75;
    flex: 1;
}

.sw-testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.sw-testi__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sw-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sw-testi__name {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 0.9375rem;
    color: var(--sw-forest);
}

.sw-testi__detail {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: var(--sw-body);
}

.sw-testi__result {
    display: inline-block;
    margin-top: 4px;
    background: var(--sw-green);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: var(--sw-radius-pill);
}

.sw-testi__more {
    text-align: center;
}

.sw-testi__more a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--sw-green);
    border-bottom: 2px solid var(--sw-green);
    padding-bottom: 2px;
    text-decoration: none;
}

.sw-testi__more a:hover {
    color: var(--sw-green-dark);
    border-color: var(--sw-green-dark);
    text-decoration: none;
}

/* ============================================================
   SECTION 08 — FAQ
   ============================================================ */
.sw-faq {
    padding: var(--sw-section-v) 0;
    background: var(--sw-sage);
}

@media (max-width: 768px) {
    .sw-faq {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .sw-faq__grid {
        grid-template-columns: 1fr 2fr;
    }
}

.sw-faq__left-headline {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 20px;
}

.sw-faq__left-sub {
    font-size: 1.0625rem;
    color: var(--sw-body);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sw-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sw-faq__item {
    border-bottom: 1px solid var(--sw-border);
}

.sw-faq__item:first-child {
    border-top: 1px solid var(--sw-border);
}

.sw-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sw-forest);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
}

.sw-faq__question:hover {
    color: var(--sw-green);
}

.sw-faq__toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sw-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    transition: background 0.2s, transform 0.3s;
}

.sw-faq__item.sw-open .sw-faq__toggle {
    background: var(--sw-forest);
    transform: rotate(45deg);
}

.sw-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-family: 'Merriweather', serif;
    font-size: 0.9375rem;
    color: var(--sw-body);
    line-height: 1.75;
}

.sw-faq__item.sw-open .sw-faq__answer {
    max-height: 400px;
    padding-bottom: 20px;
}

/* ============================================================
   SECTION 09 — OTHER SERVICES
   ============================================================ */
.sw-services {
    padding: var(--sw-section-v) 0;
    background: #fff;
}

@media (max-width: 768px) {
    .sw-services {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.sw-services__headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.sw-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .sw-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sw-services__card {
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.sw-services__card-img {
    height: 200px;
    overflow: hidden;
}

.sw-services__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sw-services__card:hover .sw-services__card-img img {
    transform: scale(1.04);
}

.sw-services__card-body {
    padding: 28px;
}

.sw-services__card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--sw-radius-sm);
    background: var(--sw-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sw-services__card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sw-green);
}

.sw-services__card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.sw-services__card p {
    font-size: 0.9375rem;
    color: var(--sw-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sw-services__link {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--sw-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-bottom: 2px solid var(--sw-green);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.sw-services__link:hover {
    color: var(--sw-green-dark);
    border-color: var(--sw-green-dark);
    text-decoration: none;
}

/* ============================================================
   SECTION 10 — BOOKING / FINAL CTA
   ============================================================ */
.sw-booking {
    padding: var(--sw-section-v) 0;
    background: linear-gradient(135deg, var(--sw-forest) 0%, var(--sw-forest-mid) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sw-booking {
        padding: var(--sw-section-v-sm) 0;
    }
}

.sw-booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106,142,127,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sw-booking__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .sw-booking__inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.sw-booking__headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.sw-booking__headline em {
    font-style: normal;
    color: var(--sw-gold);
}

.sw-booking__sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.sw-booking__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sw-booking__trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}

.sw-booking__trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--sw-gold);
}

.sw-booking__form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--sw-radius-lg);
    padding: 32px;
}

.sw-booking__form-wrap .latepoint-book-button-wrap,
.sw-booking__form-wrap .latepoint-book-form-wrap {
    width: 100%;
}

/* ============================================================
   SECTION 11 — FOOTER
   ============================================================ */
.sw-footer {
    background: var(--sw-forest);
    padding: 72px 0 32px;
}

.sw-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .sw-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.sw-footer__brand-logo {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
    display: block;
}

.sw-footer__brand-logo span {
    color: var(--sw-gold);
}

.sw-footer__brand-desc {
    font-family: 'Merriweather', serif;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sw-footer__socials {
    display: flex;
    gap: 10px;
}

.sw-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.sw-footer__social-link:hover {
    background: var(--sw-green);
    color: #fff;
    text-decoration: none;
}

.sw-footer__col h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 0.875rem;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sw-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sw-footer__col ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.sw-footer__col ul li a:hover {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.sw-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .sw-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.sw-footer__copy {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.sw-footer__copy a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.sw-footer__copy a:hover {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.sw-footer__disclaimer {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    max-width: 480px;
    line-height: 1.5;
}

/* ============================================================
   OVERRIDE: Hide default WP header/footer on front page
   ============================================================ */
body.home .site-header,
body.home .site-footer,
body.home .wp-site-blocks > header,
body.home .wp-site-blocks > footer {
    display: none !important;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
    .sw-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
    .sw-hide-desktop { display: none !important; }
}
