@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --taupe: #b8a898;
    --brown: #8b7355;
    --dark-brown: #3d2e1e;
    --slate-blue: #7a9aaa;
    --text-dark: #2a2018;
    --text-mid: #6b5d4f;
    --text-light: #9e9189;
    --gold: #c9a96e;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Jost', sans-serif; */
    font-family: "Host Grotesk";
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 68px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-circle {
    width: 180px;
    height: 48px;
    border: 1.5px solid var(--text-dark);
 
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.2;
}

.logo-text .clinic-name {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-dark);
    display: block;
}

.logo-text .clinic-sub {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-mid);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    color: var(--brown);
}

.nav-links a .chevron {
    font-size: 8px;
    opacity: 0.6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 7px 16px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.2s;
}

.btn-search:hover {
    border-color: var(--brown);
    color: var(--brown);
}

.btn-book {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: #2a2018;
    border: none;
    border-radius: 24px;
    padding: 9px 20px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-book:hover {
    background: #6a8999;
}

.btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s;
}

.btn-icon:hover {
    border-color: var(--brown);
    color: var(--brown);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #c4b09a 0%, #8a7a6a 30%, #6b5d50 60%, #4a3d32 100%);
}

/* Simulated portrait overlay */
.hero-portrait {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(to right, transparent 0%, rgba(100, 85, 70, 0.1) 30%),
        radial-gradient(ellipse at 60% 35%, #c4a882 0%, #9a7e64 25%, #7a6350 50%, #5a4838 75%, #3a2e24 100%);
}

.hero-face-illus {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 520px;
    background: radial-gradient(ellipse at 50% 40%,
            rgba(220, 195, 165, 0.9) 0%,
            rgba(190, 160, 125, 0.8) 25%,
            rgba(155, 125, 95, 0.6) 50%,
            transparent 75%);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(30, 22, 14, 0.55) 0%,
            rgba(30, 22, 14, 0.35) 35%,
            rgba(30, 22, 14, 0.1) 70%,
            transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 72px;
    max-width: 1000px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-tagline {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 38px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.btn-cta-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 14px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-hero:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.btn-cta-hero .arrow-circle {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-cta-hero:hover .arrow-circle {
    transform: translateX(3px);
}

.hero-locations {
    color: rgba(255, 255, 255, 0.85);
}

.hero-locations .loc-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
    display: block;
}

.hero-locations .loc-places {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
}

/* Hero ratings */
.hero-ratings {
    position: absolute;
    bottom: 72px;
    right: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 10px 20px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-left: -8px;
    display: inline-block;
    overflow: hidden;
    background: var(--taupe);
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.rating-info {
    color: #fff;
}

.stars {
    color: #f0c040;
    font-size: 12px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 11px;
    font-weight: 300;
    opacity: 0.85;
    margin-top: 1px;
}

/* Kontakt tab */
.kontakt-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg) translateX(50%);
    transform-origin: right center;
    z-index: 50;
    background: var(--slate-blue);
    color: #fff;
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    writing-mode: horizontal-tb;
    transform: rotate(-90deg) translateX(-50%);
    right: -28px;
    top: 50%;
    position: fixed;
}

/* ─── BENEFITS ─── */
.benefits {
    background: #f5f0e6;
    padding: 64px 60px 72px;
}

.benefits-top {
    text-align: center;
    margin-bottom: 52px;
}

.benefits-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-top: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px dashed rgba(100, 88, 72, 0.3);
    border-left: 1px dashed rgba(100, 88, 72, 0.3);
}

.benefit-item {
    padding: 52px 36px 52px;
    border-right: 1px dashed rgba(100, 88, 72, 0.3);
    border-bottom: 1px dashed rgba(100, 88, 72, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.benefit-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}

.benefit-label {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b5d4f;
    line-height: 1;
}

.benefit-label span {
    margin-top: 20px;
    color: inherit;
    transition: color 0.17s;
}

.benefit-item:hover,
.benefit-item:focus-visible {
    background: #232224;
    color: #fff;
    box-shadow: 0 4px 28px rgba(40, 32, 21, 0.18);
}

.benefit-item:hover .benefit-label,
.benefit-item:focus-visible .benefit-label {
    color: #fff;
}

.benefit-item:hover .benefit-icon-wrap svg *,
.benefit-item:focus-visible .benefit-icon-wrap svg * {
    stroke: #e8e6e3 !important;
    fill: none !important;
}

.benefit-item:hover .benefit-icon-wrap svg circle[fill="#7a6e60"],
.benefit-item:focus-visible .benefit-icon-wrap svg circle[fill="#7a6e60"],
.benefit-item:hover .benefit-icon-wrap svg ellipse[fill="#7a6e60"],
.benefit-item:focus-visible .benefit-icon-wrap svg ellipse[fill="#7a6e60"],
.benefit-item:hover .benefit-icon-wrap svg rect[fill="#7a6e60"],
.benefit-item:focus-visible .benefit-icon-wrap svg rect[fill="#7a6e60"] {
    fill: #fff !important;
}

.section-tag {
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.btn-book-outlined {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--slate-blue);
    color: #fff;
    border: none;
    border-radius: 28px;
    padding: 12px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
}

.btn-book-outlined:hover {
    background: #6a8999;
}



/* ─── WELCOME SECTION ─── */
/* MAIN */
.welcome {
    background: var(--cream);
    padding: 80px 60px;
}

/* FLEX CONTAINER */
.welcome-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE (IMAGES) */
.welcome-images {
    display: flex;
    gap: 12px;
    flex: 1;
}

/* BIG IMAGE */
.img-card.big {
    flex: 1.2;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* RIGHT STACK */
.image-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* SMALL IMAGE */
.img-card.small {
    flex: 1;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* IMAGE BACKGROUND */
.img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* STAT INSIDE IMAGE */
.img-stat.dark {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 16px;
    border-radius: 10px;
    color: #fff;
}

/* STAT CARD */
.stat-card {
    background: #3d2e1e;
    color: #fff;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXT */
.num {
    font-size: 26px;
    font-weight: 600;
}

.label {
    font-size: 13px;
    opacity: 0.9;
}

/* RIGHT CONTENT */
.welcome-content {
    flex: 1;
}

/* TYPOGRAPHY */
.welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 300;
    text-transform: uppercase;
    color: #3d2e1e;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ========================= */

@media (max-width: 992px) {
    .welcome-container {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-images {
        width: 100%;
    }

    .img-card.big {
        height: 260px;
    }
}

@media (max-width: 600px) {

    .welcome {
        background: var(--cream);
        padding: 80px 30px;
    }


    .welcome-container {
        flex-direction: column;
        gap: 25px;
    }

    .welcome-images {
        flex-direction: column;
        gap: 10px;
    }

    /* 🔥 BIG IMAGE (Hero feel) */
    .img-card.big {
        height: 600px;
        /* increase this for more dominance */
        min-height: 260px;
    }

    /* SMALL IMAGE */
    .img-card.small {
        height: 160px;
    }

    /* STAT CARD */
    .stat-card {
        min-height: 120px;
    }

    /* IMPORTANT (no collapse) */
    .img-card,
    .stat-card {
        width: 100%;
        flex-shrink: 0;
    }
}

.kosmetik-label {
    position: absolute;
    bottom: 72px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(220, 200, 165, 0.85);
    letter-spacing: 1px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: #2a2018;
    padding: 80px 60px;
    color: #fff;

    align-items: center;
}

.test-left {}

.test-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 32px;
}

.quote-icon {
    font-size: 36px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
}

.test-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.test-author {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.test-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.test-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.test-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.test-right {
    position: relative;
}

.doctor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.doctor-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(170deg, #b8a88a 0%, #8a7560 35%, #5a4838 65%, #3a2e24 100%);
}

/* Simulated doctor face */
.doctor-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(50, 40, 30, 0.5));
}

.doctor-info {
    position: relative;
    z-index: 2;
    padding: 20px 24px;
    background: rgba(50, 40, 30, 0.3);
    backdrop-filter: blur(4px);
}

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.doctor-title {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.accordion-list {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.accordion-item:hover {
    color: #fff;
}

.accordion-item .plus {
    font-size: 16px;
    opacity: 0.5;
}

.expand-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.2s;
}

.expand-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.8;
}

.footer-col-title {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    background: var(--text-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── FIXED SIDEBAR TAB ─── */
.sidebar-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
}

.sidebar-tab-inner {
    background: var(--slate-blue);
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 18px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    border-radius: 4px 0 0 4px;
    transition: background 0.2s;
}

.sidebar-tab-inner:hover {
    background: #6a8999;
}

.sidebar-tab-inner svg {
    width: 12px;
    height: 12px;
}

/* ─── WEBINARS ─── */
.webinars {
    background: #2a2018;
    padding: 72px 60px 80px;
}

.webinars-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 52px;
}

.webinars-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
    margin-top: 10px;
}

.webinars-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.webinar-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 20px;
}

.webinar-card:hover .webinar-img img,
.webinar-card:hover .webinar-img svg {
    transform: scale(1.03);
}

.webinar-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.webinar-img svg {
    transition: transform 0.5s ease;
}

.webinar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(30, 22, 14, 0.82) 0%,
            rgba(30, 22, 14, 0.35) 45%,
            rgba(30, 22, 14, 0.08) 100%);
}

.webinar-info {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.webinar-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;

}

.webinar-cat {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: -0.4px;
    display: none;
}

.webinar-name {

    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.webinar-desc {
    color: #fff;
    margin-top: 10px;
    opacity: 0.7;
}

.webinar-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.webinar-date,
.webinar-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.webinar-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s;

}

.webinar-card:hover .webinar-arrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.mobile-nav-header {
    display: none;
}

/* ─── BLOG ─── */
.blog {
    background: var(--warm-white);
    padding: 80px 60px;
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 8px;
}

.blog-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.blog-all-link:hover {
    color: var(--brown);
    border-color: var(--brown);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.blog-card {
    background: var(--cream);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-card--featured .blog-card-img {
    height: 320px;
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-img svg {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img svg {
    transform: scale(1.04);
}

.blog-card-img--small {
    height: 160px;
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 14, 8, 0.55) 0%, rgba(20, 14, 8, 0.1) 55%, transparent 100%);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Jost', sans-serif;
}

.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-date,
.blog-read {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.blog-date::after {
    content: '·';
    margin-left: 14px;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-card--small .blog-card-title {
    font-size: 18px;
}

.blog-card-excerpt {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    margin-top: auto;
    padding-top: 8px;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 11px;
}

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-card--small {
    flex-direction: row;
}

.blog-card--small .blog-card-img--small {
    width: 200px;
    min-width: 200px;
    height: auto;
}

.blog-card--small .blog-card-body {
    padding: 20px 20px 20px;
}

.blog-card--small .blog-card-excerpt {
    display: none;
}

/* ─── CONTACT ─── */
.contact {
    background: #3d342a;
    padding: 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.contact-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 44px;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.contact-loc {
    padding: 24px 0;
}

.contact-loc-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-loc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    margin-top: 2px;
    min-width: 24px;
}

.contact-loc-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.contact-loc-region {
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.contact-loc-details {
    padding-left: 42px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.contact-detail-row svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.contact-email-link:hover {
    color: #fff;
}

.contact-right {
    padding: 80px 60px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    max-height: 300px;
    position: relative;
    overflow: hidden;
}

.map-pin-card {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.map-pin-icon {
    width: 36px;
    height: 36px;
    background: var(--slate-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.map-pin-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.map-pin-addr {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

.map-toggle {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 4px;
    display: flex;
    gap: 2px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.map-toggle-btn {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
}

.map-toggle-btn--active {
    background: var(--slate-blue);
    color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 28px 60px;
    }

    .hero-ratings {
        right: 20px;
    }

    .blog {
        padding: 60px 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card--small {
        flex-direction: column;
    }

    .blog-card--small .blog-card-img--small {
        width: 100%;
        height: 160px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 40px 28px;
    }

    .contact-right {
        padding: 28px;
    }

    .map-container {
        min-height: 400px;
    }

    .benefits {
        padding: 48px 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        padding: 36px 20px;
    }

    .webinars {
        padding: 60px 28px;
    }

    .webinars-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .webinars-grid {
        grid-template-columns: 1fr;
    }

    .webinar-card {
        height: 380px;
    }

    .welcome,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .welcome-images {
        height: 280px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
        padding: 40px 28px;
    }

    .footer-bottom {
        padding: 16px 28px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .hero-ratings {
        display: none;
    }

    .nav-links li {
        border-bottom: solid 2px #2a2018;
        width: 100%;

    }
}

/* Subtle reveal animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.9s ease both;
}

.hero-title {
    animation: fadeUp 1s 0.15s ease both;
}

.hero-tagline {
    animation: fadeUp 1s 0.25s ease both;
}

.hero-cta {
    animation: fadeUp 1s 0.35s ease both;
}

/* ─── TOP BANNER STATS ─── */
.top-banner-numbers,
.top-banner-word {
    text-align: center;
}

.banner-margin {
    background-color: #2a2018;
}

.straight-line1 {
    width: 2px;
    background-color: #fff;
    margin: 5px 0;
}

.top-banner-numbers {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
}

.top-banner-word {
    font-weight: 600;
    line-height: 30px;
}

.top-banner-text {
    display: flex;
    color: #fff;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 100%;
    margin: auto;
    list-style: none;
}

.top-banner-text li {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

@media only screen and (max-width: 1400px) {
    .top-banner-numbers {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .med-hidden {
        display: none;
    }

    .top-banner-numbers {
        font-size: 32px;
    }

    .top-banner-text {
        display: grid;
        grid-template-columns: 50% 50%;
        text-align: center;
        padding: 10px;
    }

    .top-banner-text>li {
        padding: 20px;
        box-sizing: border-box;
    }

    .top-banner-text>li:first-child {
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .top-banner-text>li:nth-child(3) {
        border-bottom: 1px solid #fff;
    }

    .top-banner-text>li:nth-child(5) {
        border-right: 1px solid #fff;
    }
}

@media only screen and (max-width: 575px) {
    .top-banner-text {
        display: grid;
        grid-template-columns: 50% 50%;
        text-align: center;
        padding: 10px;
    }

    .top-banner-text li {
        padding: 0 15px;
    }

    .top-banner-numbers {
        font-size: 28px;
        margin-top: 20px;
        line-height: 35px;
    }

    .top-banner-word {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 20px;
        padding: 0 8px;
    }

    .straight-line1 {
        display: none;
    }


}

/* ─── RESPONSIVE NAVBAR (index) ─── */
body.has-fixed-nav {
    padding-top: 70px;
}

.responsive-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}



.nav-overlay.open {
    display: block;
}

/* ─── MOBILE MENU HEADER (logo + close btn) ─── */


.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-nav-brand-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold);
}

.mobile-nav-brand-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    display: block;
    line-height: 1.3;
}

.mobile-nav-brand-sub {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    display: block;
}

.mobile-nav-close {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.mobile-nav-close:hover {
    background: #f0ede9;
}

.hamburger-bar {
    width: 24px;
    height: 3px;
    background: #333;
}

.responsive-navbar~.hero {
    height: calc(100vh - 70px);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-navbar~.hero .hero-overlay {
    background: linear-gradient(to right,
            rgba(30, 22, 14, 0.55),
            rgba(30, 22, 14, 0.2));
}

.responsive-navbar~.hero .hero-content {
    padding: 0 60px 70px;
    max-width: 900px;
}

.responsive-navbar~.hero .hero-title {
    font-size: clamp(38px, 5vw, 62px);
    color: #fff;
}

.responsive-navbar~.hero .hero-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-cta-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 5px 5px 12px;
    border-radius: 40px;
    color: #000;
    font-size: 19px;
    border: none;
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .nav-hamburger {
        display: flex;
    }

    .responsive-navbar .nav-actions {
        display: none;
    }

    .responsive-navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: #fff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1100;
        list-style: none;
        margin: 0;
        overflow-y: auto;
    }

    .responsive-navbar .nav-links.open {
        right: 0;
    }

    .responsive-navbar .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0ede9;
    }

    .responsive-navbar .nav-links li a {
        font-size: 17px;
        padding: 16px 24px;
        display: block;
        color: var(--text-dark);
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    .responsive-navbar .nav-links li a:hover {
        color: var(--brown);
        background: var(--cream);
    }

    /* Dark overlay behind mobile menu - handled globally below */

    .responsive-navbar~.hero .hero-content {
        padding: 0 20px 40px;
    }

    .responsive-navbar~.hero .hero-title {
        font-size: 30px;
    }

    .responsive-navbar~.hero .hero-ratings {
        right: 20px;
        bottom: 20px;
    }
}

/* ─── BLOG SECTION ─── */
.ssb-blog-section {
    padding: 80px 0;
    background: var(--cream);
}

.ssb-container {
    width: min(1320px, 92%);
    margin: auto;
}

.ssb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    gap: 20px;
}

.ssb-subtitle {
    display: block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.ssb-title {
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.15;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    max-width: 700px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ssb-nav {
    display: flex;
    gap: 12px;
}

.ssb-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--text-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ssb-arrow:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.ssb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ssb-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0ede9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ssb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(42, 32, 24, 0.05);
}

.ssb-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
    border-radius: 8px;
}

.ssb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.ssb-card:hover .ssb-image img {
    transform: scale(1.04);
}

.ssb-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.ssb-card-title {
    font-size: 24px;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
}

.ssb-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 22px;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.ssb-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--slate-blue);
    font-size: 14px;
    font-weight: 500;
    width: max-content;
    position: relative;
    font-family: 'Jost', sans-serif;
    margin-top: auto;
    transition: color 0.2s;
}

.ssb-readmore:hover {
    color: var(--brown);
}

.ssb-readmore::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: 0.3s;
}

.ssb-readmore:hover::after {
    width: 100%;
}

.ssb-footer {
    margin-top: 55px;
    text-align: center;
}

.ssb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid var(--text-dark);
    border-radius: 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
}

.ssb-btn:hover {
    background: var(--text-dark);
    color: #fff;
}

@media (max-width: 1199px) {
    .ssb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ssb-title {
        font-size: 38px;
    }

    .ssb-card-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .ssb-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .ssb-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ssb-title {
        font-size: 30px;
    }

    .ssb-card-title {
        font-size: 20px;
    }

    .ssb-nav {
        margin-top: 15px;
    }
}

/* ─── FAQ ─── */
.faq-section {
    padding: 64px 0;
    background: var(--cream, #f5f0e8);
}

.faq-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 38px;
}

.faq-accordion {
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(70, 62, 49, 0.07);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ede4d7;
    background: #fff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
    text-align: left;
}

.faq-item .faq-question[aria-expanded="true"] {
    background: #faf8f4;
    color: var(--slate-blue);
    font-weight: 500;
}

.faq-icon {
    font-size: 1.3em;
    margin-left: auto;
    transition: color 0.2s;
    color: var(--slate-blue);
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    font-size: 1rem;
    color: var(--text-mid, #6b5d4f);
    line-height: 1.7;
    background: #faf8f4;
}

@media (max-width: 700px) {
    .faq-section {
        padding: 44px 0;
    }

    .faq-answer,
    .faq-question {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 20px;
        border-bottom: 1px solid #f0ede9;
        background: var(--cream);
        flex-shrink: 0;
    }
}