/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
    padding: 8px 0;
    font-size: 0.78rem;
    color: var(--gray);
}
.top-bar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.top-bar a { color: var(--gray); }
.top-bar a:hover { color: var(--gold); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; color: var(--gold); }

/* ===== NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    padding: 0;
}
.nav-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}
.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}
.nav-logo-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    height: 100%;
}
.nav-link-item { position: relative; }
.nav-has-mega {
    position: static;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
/* Mega menu trigger arrow */
.nav-has-mega > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-has-mega > a .nav-arrow {
    width: 10px; height: 10px;
    transition: transform 0.3s;
}
.nav-has-mega:hover > a .nav-arrow,
.nav-has-mega.active > a .nav-arrow { transform: rotate(180deg); }
.nav-cta {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #E2C275 100%) !important;
    color: var(--black) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(226, 194, 117, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: linear-gradient(135deg, #F0D48A 0%, #F0D48A 30%, #E2C275 60%, #F0D48A 100%) !important; color: var(--black) !important; box-shadow: 0 4px 16px rgba(226, 194, 117, 0.45); }

/* ===== MEGA MENU ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1060px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-top: 2px solid var(--gold);
    padding: 36px 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 220px;
    gap: 28px;
}
/* Products mega: 2 content cols + wider featured */
.mega-menu--products {
    grid-template-columns: 1fr 1fr 280px;
    width: 820px;
}

/* Invisible bridge — full width so hover isn't lost crossing gap */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}
/* ===== SIMPLE NAV DROPDOWN ===== */
.nav-has-dropdown { position: relative; display: flex; align-items: center; height: 100%; }
.nav-has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-has-dropdown > a .nav-arrow { width: 10px; height: 10px; transition: transform 0.3s; }
.nav-has-dropdown:hover > a .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-top: 2px solid var(--gold);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 100;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 20px;
}
.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.nav-dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--white-muted);
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: none;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover {
    color: var(--gold);
    background: rgba(240, 212, 138, 0.06);
}

.nav-has-mega:hover .mega-menu,
.nav-has-mega.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.mega-col h5 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.mega-col ul { list-style: none; }
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--gray-light);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s;
}
.mega-col ul a::after { display: none; }
.mega-col ul a:hover {
    background: rgba(226, 194, 117, 0.06);
    color: var(--gold);
}
.mega-col ul a .mega-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(226, 194, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mega-col ul a .mega-icon svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}
.mega-featured {
    background: var(--black);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid var(--black-border);
}
.mega-featured-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.mega-featured h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}
.mega-featured p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}
.mega-featured-link {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mega-featured-link::after { display: none !important; }
.mega-featured-link svg { width: 14px; height: 14px; }
/* View All link in mega Explore column */
.mega-view-all {
    margin-top: 8px;
    padding-top: 12px !important;
    border-top: 1px solid var(--black-border);
    font-weight: 500 !important;
    color: var(--gold) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px !important;
}
.mega-view-all::after { display: none !important; }
.mega-view-all svg { flex-shrink: 0; }

/* ===== MOBILE NAV ===== */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-drawer-overlay.active { opacity: 1; pointer-events: all; }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--black-card);
    border-left: 1px solid var(--black-border);
    z-index: 9995;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.active { transform: translateX(0); }

.mobile-drawer-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-drawer-close svg { width: 16px; height: 16px; color: var(--gray); }

.mobile-drawer-nav {
    flex: 1;
    padding: 16px 0;
}
.mobile-nav-item {
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}
.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link svg {
    width: 16px;
    height: 16px;
    color: var(--gray);
    transition: transform 0.3s, color 0.3s;
}
.mobile-nav-item.open .mobile-nav-link svg {
    transform: rotate(180deg);
    color: var(--gold);
}

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
}
.mobile-nav-item.open .mobile-sub-menu {
    max-height: 900px;
}
.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 12px 36px;
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.2s;
}
.mobile-sub-link:hover { color: var(--gold); background: rgba(226, 194, 117, 0.04); }
.mobile-sub-link .mega-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(226, 194, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-sub-link .mega-icon svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}
/* Mobile sub-section labels */
.mobile-sub-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 14px 24px 6px 36px;
    opacity: 0.7;
}
.mobile-sub-label:first-child {
    padding-top: 10px;
}
/* Mobile view-all link */
.mobile-view-all {
    color: var(--gold) !important;
    font-weight: 500;
    border-top: 1px solid var(--black-border);
    margin-top: 4px;
    padding-top: 14px !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-view-all svg { flex-shrink: 0; }

.mobile-drawer-cta {
    padding: 20px 24px;
    border-top: 1px solid var(--black-border);
}
.mobile-drawer-cta .btn-primary {
    width: 100%;
    justify-content: center;
}
.mobile-drawer-contact {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-drawer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}
.mobile-drawer-contact a:hover { color: var(--gold); }
.mobile-drawer-contact a svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9980;
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.mobile-bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
.mobile-bottom-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.mobile-bottom-btn-phone {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #E2C275 100%);
    color: var(--black);
}
.mobile-bottom-btn-phone:hover { opacity: 0.9; }
.mobile-bottom-btn-directions {
    background: var(--black);
    color: var(--white);
    border-left: 1px solid var(--black-border);
}
.mobile-bottom-btn-directions:hover { color: var(--gold); }

@media (max-width: 1024px) {
    .mega-menu { width: 720px; grid-template-columns: 1fr 1fr 1fr; }
    .mega-menu--products { width: 520px; grid-template-columns: 1fr 1fr; }
    .mega-featured { display: none; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    position: relative;
    z-index: 1;
    background: var(--black-light);
    border-bottom: 1px solid rgba(226, 194, 117, 0.2);
    padding: 14px 0;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    font-family: var(--font-body);
}
.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--gray);
}
.breadcrumb-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.25s ease;
}
.breadcrumb-item a:hover {
    color: var(--gold);
}
.breadcrumb-sep {
    margin: 0 10px;
    color: var(--black-border);
    font-size: 0.7rem;
}
.breadcrumb-sep svg {
    width: 12px;
    height: 12px;
    stroke: var(--black-border);
}
.breadcrumb-item.active {
    color: var(--gold);
}
/* Schema.org structured data — hidden visually */
.breadcrumb-item [itemprop="name"] {
    /* inherits from parent */
}

/* ===== SUB-NAV PILLS ===== */
.sub-nav {
    background: var(--black);
    padding: 16px 0;
    border-bottom: 1px solid var(--black-border);
}
.sub-nav .container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sub-nav-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-dark);
    white-space: nowrap;
}
.sub-nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sub-nav-pills::-webkit-scrollbar {
    display: none;
}
.sub-nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray);
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.sub-nav-pill:hover {
    color: var(--gold);
    border-color: rgba(226, 194, 117, 0.3);
    background: rgba(226, 194, 117, 0.06);
}
.sub-nav-pill.active {
    color: var(--gold);
    border-color: rgba(226, 194, 117, 0.4);
    background: rgba(226, 194, 117, 0.08);
}
@media (max-width: 768px) {
    .sub-nav .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sub-nav-pills {
        flex-wrap: nowrap;
        width: 100%;
    }
    .sub-nav-pill {
        padding: 7px 14px;
        font-size: 0.74rem;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 194, 117, 0.1);
    border: 1px solid rgba(226, 194, 117, 0.3);
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
}
.hero-badge span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic;
    display: block;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 25%, #D4A84B 50%, #E2C275 75%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrapper {
    position: relative;
    height: 600px;
}
.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
}
.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 220px;
    height: 280px;
    border: 1px solid var(--gold);
    z-index: -1;
}
/* Team photo variant — preserves natural aspect ratio so all people are visible */
.hero--team-photo .hero-image-wrapper {
    height: auto;
    aspect-ratio: 3 / 2;
}
.hero--team-photo .hero-image-main {
    object-fit: contain;
    object-position: center;
}
.hero-stat-strip {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--black-border);
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat p {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-stat-link {
    text-decoration: none;
    color: inherit;
    -webkit-text-fill-color: inherit;
    transition: opacity 0.2s ease;
}
.hero-stat-link:hover { opacity: 0.8; }
.hero-stat-link h3 {
    -webkit-text-fill-color: transparent;
}
.hero-stat h3 { white-space: nowrap; }

/* Carousel dots */
.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}
.hero-dot {
    width: 40px;
    height: 3px;
    background: var(--black-border);
    cursor: pointer;
    transition: background 0.3s;
}
.hero-dot.active { background: var(--gold); }

/* ===== ABOUT / INTRO ===== */
.about {
    padding: 120px 0;
    background: var(--black-light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-content .section-subtitle { max-width: 520px; margin-bottom: 24px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--black-border);
    background: var(--black);
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 22px; height: 22px; color: var(--gold); }
.about-feature span {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.about-image-wrap {
    position: relative;
    height: 100%;
    min-height: 500px;
}
.about-image-wrap .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--black);
}
.services-header {
    text-align: center;
    margin-bottom: 64px;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}
a.service-card {
    color: inherit;
    text-decoration: none;
    display: block;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.service-card-img {
    height: 220px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.75);
    transition: all 0.5s;
}
.service-card:hover .service-card-img img {
    filter: grayscale(50%) brightness(0.85);
    transform: scale(1.05);
}
.service-card-body {
    padding: 28px 24px;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.service-card-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 12px; }
.service-card-link svg { width: 14px; height: 14px; }

/* ===== WHY CHOOSE US / BENEFITS ===== */
.why-us {
    padding: 120px 0;
    background: var(--black-light);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-us-image {
    position: relative;
    height: 550px;
}
.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
}
.why-us-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}
.benefit-list {
    list-style: none;
    margin-top: 36px;
}
.benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-border);
}
.benefit-item:first-child { border-top: 1px solid var(--black-border); }
.benefit-icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
}
.benefit-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.benefit-content p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* ===== EXPERIENCE / PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--black);
}
.process-header {
    text-align: center;
    margin-bottom: 72px;
}
.process-header .section-subtitle { margin: 0 auto; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-step-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    background: var(--black);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 500;
}
.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--black-light);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--black);
    border: 1px solid var(--black-border);
    padding: 36px 28px;
    transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(226, 194, 117, 0.4); }
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
}
.testimonial-author-info h5 {
    font-size: 0.9rem;
    font-weight: 500;
}
.testimonial-author-info p {
    font-size: 0.78rem;
    color: var(--gray-dark);
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background: var(--black);
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.pricing-table {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    overflow: hidden;
}
.pricing-table-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--black-border);
}
.pricing-table-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    transition: background 0.3s;
}
.pricing-row:hover { background: rgba(226, 194, 117, 0.03); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row span:first-child {
    font-size: 0.92rem;
    color: var(--gray-light);
}
.pricing-row span:last-child {
    font-size: 0.92rem;
    font-weight: 500;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 35%, #D4A84B 65%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-cta {
    padding: 24px 32px;
    border-top: 1px solid var(--black-border);
}
.pricing-cta .btn-primary { width: 100%; justify-content: center; }

/* Collapsible pricing rows */
.pricing-row--hidden {
    display: none;
}
.pricing-table--expanded .pricing-row--hidden {
    display: flex;
}
.pricing-toggle {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: none;
    border: none;
    border-top: 1px solid var(--black-border);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}
.pricing-toggle:hover {
    background: rgba(226, 194, 117, 0.05);
    color: var(--gold-light);
}
.pricing-note {
    padding: 12px 32px 16px;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
    border-top: 1px solid var(--black-border);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    padding: 100px 0;
    background: var(--black);
}
.ct-wrapper {
    margin-top: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.ct-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}
.ct-table thead th {
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    border-bottom: 2px solid rgba(226, 194, 117, 0.25);
    background: var(--black-light);
}
.ct-table tbody td {
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-light);
    border-bottom: 1px solid var(--black-border);
    vertical-align: top;
}
.ct-table tbody tr:hover td {
    background: rgba(226, 194, 117, 0.03);
}
.ct-label-col {
    font-weight: 500;
    color: var(--white) !important;
    white-space: nowrap;
}
.ct-footer {
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}
.ct-cta {
    margin-top: 32px;
}
@media (max-width: 768px) {
    .ct-table thead th,
    .ct-table tbody td {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
}

/* ===== BLOG / TIPS PREVIEW ===== */
.blog-preview {
    padding: 120px 0;
    background: var(--black-light);
}
.blog-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
    flex-wrap: wrap;
}
.blog-preview-header .section-subtitle { margin-top: 8px; }
.blog-preview-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: gap 0.3s;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.blog-preview-link:hover { gap: 12px; }
.blog-preview-link svg { width: 14px; height: 14px; color: var(--gold); }
.blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}
.blog-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(226, 194, 117, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.blog-card-featured {
    grid-row: 1 / 3;
    position: relative;
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-featured .blog-card-img {
    position: absolute;
    inset: 0;
    height: 100%;
}
.blog-card-img > div {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-img > div { transform: scale(1.05); }
.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--gold);
    border: 1px solid rgba(226, 194, 117, 0.2);
    z-index: 2;
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-featured .blog-card-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 70%, transparent 100%);
    padding: 80px 28px 28px;
    min-height: 100%;
    justify-content: flex-end;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.blog-card-meta span { font-size: 0.75rem; color: var(--gray-dark); }
.blog-card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-dark); }
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.blog-card-featured .blog-card-body h3 { font-size: 1.4rem; }
.blog-card:hover .blog-card-body h3 { color: var(--gold); }
.blog-card-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-read {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: gap 0.3s;
}
.blog-card:hover .blog-card-read { gap: 10px; }
.blog-card-read svg { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card-featured { grid-row: auto; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-preview-header { flex-direction: column; align-items: flex-start; }
}

/* ===== BLOG ARTICLE ===== */
.blog-article {
    padding: 60px 0 120px;
    background: var(--black);
}
.blog-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}
.blog-article-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(226, 194, 117, 0.1);
    color: var(--gold);
    border: 1px solid rgba(226, 194, 117, 0.2);
    margin-bottom: 24px;
}
.blog-article-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
}
.blog-article-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}
.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.82rem;
    color: var(--gray-dark);
}
.blog-article-author { color: var(--gray-light); font-weight: 500; }
.blog-article-hero {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
}
.blog-article-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-article-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 48px 0 20px;
    line-height: 1.3;
}
.blog-article-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 36px 0 16px;
    line-height: 1.3;
}
.blog-article-content p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-article-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-article-content a:hover { color: var(--gold-light); }
.blog-article-content ul {
    margin: 0 0 24px 24px;
    list-style: none;
}
.blog-article-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 8px;
}
.blog-article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.blog-article-callout {
    background: var(--black-light);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}
.blog-article-callout strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}
.blog-article-callout p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.blog-article-figure {
    margin: 36px 0;
    border-radius: 12px;
    overflow: hidden;
}
.blog-article-figure img { width: 100%; height: auto; }
.blog-article-figure figcaption {
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--gray-dark);
    font-style: italic;
}
.blog-article-cta {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--black-border);
}

/* Sidebar */
.blog-article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.blog-sidebar-section {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 24px;
}
.blog-sidebar-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
}
.blog-sidebar-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-sidebar-section ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: all 0.3s;
}
.blog-sidebar-section ul li a:hover {
    background: rgba(226, 194, 117, 0.06);
    color: var(--gold);
}
.blog-sidebar-section ul li a svg { width: 14px; height: 14px; color: var(--gold); opacity: 0; transition: opacity 0.3s; }
.blog-sidebar-section ul li a:hover svg { opacity: 1; }
.blog-sidebar-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.blog-sidebar-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    flex-shrink: 0;
}
.blog-sidebar-author strong { display: block; font-size: 0.9rem; }
.blog-sidebar-author span { font-size: 0.78rem; color: var(--gray-dark); }
.blog-sidebar-book p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}
@media (max-width: 1024px) {
    .blog-article-layout { grid-template-columns: 1fr; gap: 48px; }
    .blog-article-sidebar { position: static; }
}

/* ===== TABLE COMPONENT ===== */
.table-section {
    padding: 120px 0;
    background: var(--black);
}
.table-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.table-section-header .section-subtitle { margin: 0 auto; }

.dermis-table-wrapper {
    border: 1px solid var(--black-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--black-card);
}
/* Horizontal scroll on mobile */
.dermis-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.dermis-table-scroll::-webkit-scrollbar { height: 6px; }
.dermis-table-scroll::-webkit-scrollbar-track { background: var(--black); }
.dermis-table-scroll::-webkit-scrollbar-thumb { background: var(--black-border); border-radius: 3px; }

.dermis-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

/* Head */
.dermis-table thead th {
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    background: var(--black);
    border-bottom: 1px solid var(--black-border);
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 2;
}
.dermis-table thead th:first-child { padding-left: 32px; }
.dermis-table thead th:last-child { padding-right: 32px; }

/* Body */
.dermis-table tbody tr {
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    transition: background 0.25s;
}
.dermis-table tbody tr:last-child { border-bottom: none; }
.dermis-table tbody tr:hover {
    background: rgba(226, 194, 117, 0.03);
}
.dermis-table tbody td {
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--gray-light);
    vertical-align: middle;
}
.dermis-table tbody td:first-child { padding-left: 32px; }
.dermis-table tbody td:last-child { padding-right: 32px; }

/* Cell variants */
.table-cell-primary {
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
}
.table-cell-gold {
    font-weight: 500;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.table-cell-muted {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Badge / pill inside table */
.table-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.table-badge-gold {
    background: rgba(226, 194, 117, 0.1);
    color: var(--gold);
    border: 1px solid rgba(226, 194, 117, 0.2);
}
.table-badge-gray {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray);
    border: 1px solid var(--black-border);
}

/* Check / X icons in table */
.table-check { color: var(--gold); }
.table-x { color: var(--gray-dark); }

/* Star rating in table */
.table-stars {
    display: flex;
    gap: 2px;
}
.table-stars svg { width: 14px; height: 14px; }
.table-stars .filled { color: var(--gold); fill: var(--gold); }
.table-stars .empty { color: var(--black-border); fill: var(--black-border); }

/* Row with icon + text */
.table-cell-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.table-cell-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(226, 194, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.table-cell-icon svg { width: 18px; height: 18px; color: var(--gold); }

/* Table footer / CTA row */
.dermis-table-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--black-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.dermis-table-footer p {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .dermis-table thead th { font-size: 0.65rem; padding: 14px 16px; }
    .dermis-table tbody td { padding: 16px; font-size: 0.85rem; }
    .dermis-table thead th:first-child,
    .dermis-table tbody td:first-child { padding-left: 20px; }
    .dermis-table-footer { padding: 16px 20px; }
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--black-light);
}
.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.75);
    transition: all 0.5s;
}
.gallery-item:hover img {
    filter: grayscale(40%) brightness(0.9);
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
}
.gallery-item { cursor: pointer; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}
.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.lightbox-close svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: color 0.3s;
}
.lightbox-close:hover svg { color: var(--black); }

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-overlay.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--black-card);
    border: 1px solid var(--black-border);
}
.lightbox-image-wrapper > div {
    width: 100%;
    height: 100%;
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
}
.lightbox-caption h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.lightbox-caption p {
    font-size: 0.88rem;
    color: var(--gray);
}

.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
    z-index: 3;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}
.lightbox-nav:hover {
    background: rgba(226, 194, 117, 0.15);
    border-color: var(--gold);
}
.lightbox-nav svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}
.lightbox-nav:hover svg { color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}
.lightbox-thumb {
    width: 64px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
}
.lightbox-thumb.active {
    border-color: var(--gold);
    opacity: 1;
}
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb > div {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-thumbnails { display: none; }
    .lightbox-content { width: 95%; }
}

/* ===== TEAM ===== */
.team {
    padding: 120px 0;
    background: var(--black);
}
.team-header {
    text-align: center;
    margin-bottom: 64px;
}
.team-header .section-subtitle { margin: 0 auto; }

/* ===== LOCATION ===== */
.location {
    padding: 120px 0;
    background: var(--black-light);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.location-map {
    height: 400px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    overflow: hidden;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}
.location-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.location-block h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.location-address {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}
.location-hours {
    width: 100%;
    border-collapse: collapse;
}
.location-hours td {
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--black-border);
}
.location-hours td.day {
    color: var(--gray-light);
    font-weight: 500;
    width: 120px;
}
.location-hours td.time {
    color: var(--gray);
    text-align: right;
}
.location-link {
    color: var(--gold);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.location-link:hover {
    color: var(--gold-light);
}
.location-map-embed {
    width: 100%;
    height: 100%;
}
.location-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-card);
    color: var(--gray-dark);
    font-size: 0.85rem;
}
.location-details { }
.location-info {
    margin-top: 32px;
}
.location-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--black-border);
}
.location-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.location-info-item h5 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.location-info-item p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* ===== CONTACT / BOOKING FORM ===== */
.contact-form-section {
    padding: 100px 0;
    background: var(--black);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.3px;
}
.form-group label .required {
    color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 14px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(226, 194, 117, 0.1);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group select option {
    background: var(--black-card);
    color: var(--white);
}
.form-group select optgroup {
    color: var(--gold);
    font-weight: 600;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-submit {
    align-self: flex-start;
    margin-top: 8px;
}
.contact-form-submit svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.contact-form-submit:hover svg {
    transform: translateX(4px);
}
.contact-form-note {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 4px;
}

/* Form feedback messages */
.contact-form-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}
.contact-form-success h3 {
    color: #166534;
    margin-bottom: 0.5rem;
}
.contact-form-success p {
    color: #15803d;
}
.contact-form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.contact-form-error p {
    color: #991b1b;
    margin: 0;
    font-size: 0.9rem;
}

/* Form Modal */
.form-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background 0.25s ease;
}
.form-modal-overlay.modal-visible {
    background: rgba(0, 0, 0, 0.5);
}
.form-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-visible .form-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.form-modal-icon svg {
    width: 56px;
    height: 56px;
    stroke-width: 1.5;
    margin-bottom: 12px;
}
.modal-success .form-modal-icon svg {
    color: #16a34a;
}
.modal-error .form-modal-icon svg {
    color: #dc2626;
}
.form-modal-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.form-modal-message {
    color: var(--gray, #666);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.form-modal-close {
    min-width: 120px;
}

/* Sidebar */
.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}
.contact-sidebar-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 32px;
}
.contact-sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.contact-sidebar-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.contact-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.9rem;
    padding: 10px 0;
    border-top: 1px solid var(--black-border);
    transition: color 0.3s ease;
}
.contact-sidebar-link:hover {
    color: var(--gold-light);
}
.contact-sidebar-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.contact-sidebar-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-sidebar-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.5;
}
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
}

/* Contact form responsive */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-section {
        padding: 60px 0;
    }
    .contact-form-sidebar {
        position: static;
    }
}

/* ===== TEAM GRID ===== */
.team-grid {
    padding: 80px 0;
    background: var(--black);
}
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.team-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.team-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card-body {
    padding: 24px;
}
.team-card-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 4px;
}
.team-card-name a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}
.team-card-name a:hover {
    color: var(--gold);
}
.team-card-title {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.team-card-bio {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}
.team-card-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.team-credential {
    display: inline-block;
    background: rgba(226, 194, 117, 0.1);
    border: 1px solid rgba(226, 194, 117, 0.25);
    color: var(--gold);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.team-card-specialties {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}
.team-specialties-label {
    color: var(--gray-light);
    font-weight: 600;
}

/* ===== CONDITIONS GRID ===== */
.conditions-grid {
    padding: 80px 0;
    background: var(--black-light);
}
.conditions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.condition-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.condition-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.condition-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.4s, filter 0.4s;
}
.condition-card:hover .condition-card-image img {
    transform: scale(1.05);
    filter: grayscale(50%);
}
.condition-card-body {
    padding: 24px;
}
.condition-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.condition-card--icon-only {
    padding: 32px 24px;
}
.condition-card--icon-only .condition-card-body {
    padding: 0;
}
.condition-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.condition-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
}
.condition-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
}
.condition-card-name a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.condition-card-name a:hover {
    color: var(--gold);
}
.condition-card-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}
.condition-card-treatments {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.8;
}
.condition-treatments-label {
    display: block;
    color: var(--gray-light);
    font-weight: 600;
    margin-bottom: 4px;
}
.condition-treatment-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.2s;
}
.condition-treatment-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== SERVICE CARDS (Pillar/Hub subpage grid) ===== */
.service-cards {
    padding: 80px 0;
}
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(226, 194, 117, 0.08);
}
.service-card-image {
    width: 100%;
    aspect-ratio: 400 / 260;
    overflow: hidden;
    background: var(--black-light);
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.4s, filter 0.4s;
}
.service-card:hover .service-card-image img {
    transform: scale(1.05);
    filter: grayscale(50%);
}
.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    background: var(--black-light);
}
.service-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    fill: none;
}
.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}
.service-card-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.2s;
}
.service-card-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
}
.service-card:hover .service-card-link {
    gap: 10px;
}
@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== BRAND SHOWCASE ===== */
.brand-showcase {
    padding: 80px 0;
    background: var(--black);
}
.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.brand-showcase-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.brand-showcase-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(226, 194, 117, 0.08);
}
.brand-showcase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.brand-showcase-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 194, 117, 0.08);
    border: 1px solid rgba(226, 194, 117, 0.15);
    border-radius: 12px;
}
.brand-showcase-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
}
.brand-showcase-name-group {
    flex: 1;
}
.brand-showcase-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2px;
}
.brand-showcase-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.brand-showcase-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    background: rgba(226, 194, 117, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
}
.brand-showcase-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.brand-showcase-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brand-showcase-highlights li {
    font-size: 0.85rem;
    color: var(--gray-light, #ccc);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.brand-showcase-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}
.brand-showcase-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--black-border);
    margin-bottom: 16px;
}
.brand-showcase-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray);
}
.brand-showcase-meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
}
.brand-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}
.brand-showcase-link:hover {
    gap: 10px;
}
.brand-showcase-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
}
.brand-showcase-footer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 32px;
    font-style: italic;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .brand-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .brand-showcase-header {
        flex-wrap: wrap;
    }
    .brand-showcase-price {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* ===== DECISION GUIDE ===== */
.decision-guide {
    padding: 80px 0;
    background: var(--black-light, #111);
}
.decision-guide-body {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.decision-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.decision-guide-factor {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.decision-guide-factor:hover {
    border-color: rgba(226, 194, 117, 0.4);
    transform: translateY(-4px);
}
.decision-guide-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 194, 117, 0.08);
    border: 1px solid rgba(226, 194, 117, 0.15);
    border-radius: 50%;
}
.decision-guide-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
}
.decision-guide-factor h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}
.decision-guide-factor p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .decision-guide-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .decision-guide-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(226, 194, 117, 0.06) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner .section-subtitle {
    margin: 0 auto 40px;
    max-width: 560px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-contact-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 36px;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}
.cta-contact-item svg { width: 16px; height: 16px; color: var(--gold); }
.cta-contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
    padding: 80px 0 32px;
    background: var(--black);
    border-top: 1px solid var(--black-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand .nav-logo-name {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.footer-brand .nav-logo-tagline { margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; color: var(--gray); }
.footer-social a:hover svg { color: var(--gold); }
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: var(--gray);
    transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
/* Footer pill rows */
.footer-pills-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--black-border);
}
.footer-pills-row {
    margin-bottom: 28px;
}
.footer-pills-row:last-child { margin-bottom: 0; }
.footer-pills-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 12px;
}
.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--black-border);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--gray);
    background: var(--black-card);
    transition: all 0.3s;
    cursor: default;
    white-space: nowrap;
    text-decoration: none;
}
a.footer-pill { cursor: pointer; }
.footer-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-pill svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.footer-pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(226, 194, 117, 0.06);
}

.footer-bottom {
    padding-top: 32px;
    margin-top: 40px;
    border-top: 1px solid var(--black-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray-dark);
}

/* ===== INFO CARDS CAROUSEL (Apple-style FAQ) ===== */
.info-cards {
    padding: 120px 0;
    background: var(--black);
}
.info-cards-header {
    text-align: center;
    margin-bottom: 56px;
}
.info-cards-header .section-subtitle { margin: 0 auto; }

.info-cards-track-wrapper {
    position: relative;
    overflow: hidden;
}
.info-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 20px;
}
.info-cards-track::-webkit-scrollbar { display: none; }

.info-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 28px 28px 64px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-card:hover {
    border-color: rgba(226, 194, 117, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.info-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}
.info-card-body h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.info-card-body h4 .highlight {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-card-body p.card-teaser {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.5;
}
.info-card-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.info-card:hover .info-card-plus {
    background: var(--gold);
    border-color: var(--gold);
}
.info-card-plus svg {
    width: 16px;
    height: 16px;
    color: var(--gray);
    transition: color 0.3s;
}
.info-card:hover .info-card-plus svg { color: var(--black); }

/* Carousel navigation arrows */
.info-cards-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.info-cards-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--black-border);
    background: var(--black-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.info-cards-nav button:hover {
    border-color: var(--gold);
    background: rgba(226, 194, 117, 0.1);
}
.info-cards-nav button svg {
    width: 18px;
    height: 18px;
    color: var(--gray);
}
.info-cards-nav button:hover svg { color: var(--gold); }

/* Modal overlay */
.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 24px;
}
.info-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.info-modal {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px 44px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.info-modal-overlay.active .info-modal {
    transform: scale(1) translateY(0);
}
.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}
.info-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.info-modal-close svg {
    width: 16px;
    height: 16px;
    color: var(--gray);
}
.info-modal-close:hover svg { color: var(--black); }
.info-modal-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-modal-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}
.info-modal h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.3;
    padding-right: 40px;
}
.info-modal-section {
    margin-bottom: 24px;
}
.info-modal-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}
.info-modal-section p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.75;
}
.info-modal-section h5 a,
.info-modal-section p a {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: #D4A84B;
    text-underline-offset: 2px;
    transition: text-decoration-color 0.3s;
}
.info-modal-section h5 a:hover,
.info-modal-section p a:hover {
    text-decoration-color: #F0D48A;
}
.info-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
    transition: gap 0.3s;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-modal-link:hover { gap: 10px; }
.info-modal-link svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
    .info-card { flex: 0 0 280px; min-height: 200px; }
    .info-modal { padding: 36px 28px; }
    .info-modal h3 { font-size: 1.4rem; }
}

/* ===== PARALLAX ===== */
.parallax {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.parallax-bg {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%) brightness(0.35);
    z-index: 0;
}
@supports (-webkit-touch-callout: none) {
    .parallax-bg { background-attachment: scroll; }
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}
.parallax-content .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}
.parallax-content .section-subtitle {
    margin: 0 auto 32px;
    max-width: 540px;
}
.parallax-stat-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 40px;
}
.parallax-stat-row .hero-stat h3 { font-size: 2.4rem; }

/* ===== MINI CTA BAR ===== */
.mini-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 25%, #D4A84B 50%, #E2C275 75%, #F0D48A 100%);
    text-align: center;
}
.mini-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.mini-cta p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
}
.mini-cta p em {
    font-style: italic;
}
.mini-cta .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.mini-cta .btn-dark:hover { background: var(--black-light); }
.mini-cta .btn-dark svg { width: 14px; height: 14px; }

/* ===== CONDITION / TREATMENT GRID ===== */
/* Anchor navigation bar */
.cg-anchor-nav {
    position: sticky;
    top: 80px;
    z-index: 20;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--black-border);
    padding: 14px 0;
    backdrop-filter: blur(10px);
}
.cg-anchor-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0;
}
.cg-anchor-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    border: 1px solid var(--black-border);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cg-anchor-link:hover {
    border-color: var(--gold-dark);
    color: var(--gray-light);
}
.cg-anchor-link.active {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #E2C275 100%);
    border-color: transparent;
    color: var(--black);
    font-weight: 600;
}

/* Category section — image left, links right */
.cg-category {
    padding: 60px 0;
    border-bottom: 1px solid var(--black-border);
    scroll-margin-top: 180px;
}
.cg-category:last-child { border-bottom: none; }

.cg-category-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}
.cg-category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.cg-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.5s ease;
}
.cg-category:hover .cg-category-image img {
    filter: grayscale(40%) brightness(0.95);
}
.cg-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Text link grid within category */
.cg-text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.cg-text-link {
    position: relative;
    display: block;
    padding: 14px 4px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--black-border);
}
.cg-text-link:hover {
    color: var(--gold);
}

/* Tooltip — JS-driven element, not CSS pseudo */
.cg-tooltip {
    position: absolute;
    z-index: 50;
    max-width: 320px;
    padding: 12px 16px;
    background: var(--black-card);
    border: 1px solid var(--gold-dark);
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.55;
    pointer-events: none;
    white-space: normal;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cg-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
    .cg-category-grid {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }
}
@media (max-width: 720px) {
    .cg-anchor-nav { padding: 10px 0; }
    .cg-anchor-scroll {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 4px;
        padding-bottom: 4px;
    }
    .cg-anchor-link { padding: 6px 12px; font-size: 0.62rem; letter-spacing: 1px; }
    .cg-category { padding: 32px 0; }
    .cg-category-grid {
        grid-template-columns: 120px 1fr;
        gap: 20px;
        align-items: start;
    }
    .cg-category-image {
        aspect-ratio: 3/4;
        max-height: none;
    }
    .cg-category-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .cg-text-grid { grid-template-columns: 1fr; }
    .cg-text-link { padding: 10px 0; font-size: 0.75rem; }
    .cg-tooltip { display: none; }
}
@media (max-width: 400px) {
    .cg-category-grid {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }
    .cg-category-title { font-size: 0.95rem; margin-bottom: 8px; }
    .cg-text-link { font-size: 0.7rem; padding: 8px 0; }
}

/* ===== CONCERNS LIST (compact text-only) ===== */
.concerns-list {
    padding: 60px 0;
}
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--black-border);
}
.concern-item {
    display: block;
    padding: 20px 12px 20px 0;
    border-bottom: 1px solid var(--black-border);
    text-decoration: none;
    transition: background 0.2s ease;
}
.concern-item:hover { background: rgba(200, 169, 110, 0.04); }
.concern-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
    transition: color 0.3s;
}
.concern-item:hover .concern-name { color: var(--gold); }
.concern-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
}
@media (max-width: 720px) {
    .concerns-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .concerns-grid { grid-template-columns: 1fr; }
    .concern-item { padding: 16px 0; }
}

/* ===== TIER COMPARISON ===== */
.tier-comparison {
    padding: 80px 0;
    background: var(--black-light);
}
.tier-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}
.tier-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tier-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tier-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tier-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease;
}
.tier-card:hover { border-color: var(--gold-dark); }
.tier-card--featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(200, 169, 110, 0.06) 0%, var(--black-card) 40%);
}
.tier-badge {
    position: absolute;
    top: -1px; right: 24px;
    background: linear-gradient(135deg, #F0D48A 0%, #D4A84B 100%);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
}
.tier-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}
.tier-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.tier-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.tier-duration {
    font-size: 0.75rem;
    color: var(--gray-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.tier-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
    font-size: 0.82rem;
    color: var(--gray-light);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}
.tier-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.tier-best-for {
    font-size: 0.78rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 28px;
}
.tier-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}
@media (max-width: 960px) {
    .tier-grid--3, .tier-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .tier-grid--3, .tier-grid--4, .tier-grid--2 { grid-template-columns: 1fr; }
    .tier-card { padding: 32px 24px; }
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    padding: 80px 0;
}
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--black-border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
    width: 20px; height: 20px;
    stroke: var(--gray);
    flex-shrink: 0;
    transition: transform 0.3s ease, stroke 0.3s ease;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    stroke: var(--gold);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 600px;
}
.faq-answer-inner {
    padding: 0 0 24px;
}
.faq-answer-inner p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.7;
}
.faq-answer-inner a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.faq-answer-inner a:hover {
    border-bottom-color: var(--gold);
}

/* ===== PRODUCT DETAILS (static info blocks) ===== */
.product-details {
    padding: 100px 0;
    background: var(--black-light);
}
.product-details .divider {
    margin-bottom: 48px;
}
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-detail-block {
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: border-color 0.3s ease;
}
.product-detail-block:hover {
    border-color: var(--gold-dim);
}
.product-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-detail-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}
.product-detail-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}
.product-detail-block p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray);
}
@media (max-width: 768px) {
    .product-details-grid { grid-template-columns: 1fr; }
}

/* ===== TEAM HOME (compact homepage cards) ===== */
.team-home { padding: 100px 0; background: var(--black); }
.team-home .divider { margin-bottom: 20px; }
.team-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.team-home-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.3s ease;
}
.team-home-card:hover { border-color: var(--gold-dim); }
.team-home-photo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--black-border);
}
.team-home-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-home-info { flex: 1; min-width: 0; }
.team-home-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
}
.team-home-name a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}
.team-home-name a:hover { color: var(--gold); }
.team-home-title {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 6px;
}
.team-home-tagline {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--gray);
    margin: 0;
}
@media (max-width: 1024px) {
    .team-home-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .team-home-grid { grid-template-columns: 1fr; }
    .team-home-card { padding: 16px; }
}

/* ===== PROMOTIONS NAV LINK ===== */
.nav-promo-link {
    color: var(--gold) !important;
}
.mobile-nav-promo {
    color: var(--gold) !important;
}

/* ===== PROMOTIONS PAGE ===== */
.promo-hero {
    padding: 80px 0 40px;
    text-align: center;
}
.promo-page-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.promo-hero .section-subtitle {
    margin: 0 auto;
    max-width: 560px;
}

/* Featured promo — full-width hero card */
.promo-featured {
    padding: 0 0 80px;
}
.promo-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.promo-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.promo-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.promo-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}
.promo-featured-card:hover .promo-featured-image img {
    filter: grayscale(50%);
}
.promo-featured-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
}
.promo-featured-title em {
    font-style: italic;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 55%, #E2C275 80%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.promo-featured-body {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Badges */
.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 2;
}
.promo-badge--featured {
    font-size: 0.75rem;
    padding: 8px 18px;
}

/* Includes checklist */
.promo-includes {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.promo-includes li {
    font-size: 0.88rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.promo-includes li svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Pricing */
.promo-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}
.promo-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}
.promo-price-original {
    font-size: 1rem;
    color: var(--gray-dark);
    text-decoration: line-through;
}
.promo-cta {
    margin-top: 24px;
    display: inline-flex;
    align-self: flex-start;
}

/* Tags */
.promo-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(226, 194, 117, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Promo grid */
.promo-grid-section {
    padding: 0 0 80px;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.promo-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.promo-card:hover {
    border-color: rgba(226, 194, 117, 0.4);
    transform: translateY(-4px);
}
.promo-card--highlight {
    border-color: rgba(226, 194, 117, 0.3);
    box-shadow: 0 0 30px rgba(226, 194, 117, 0.06);
}
.promo-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s, transform 0.4s;
}
.promo-card:hover .promo-card-image img {
    filter: grayscale(40%);
    transform: scale(1.04);
}
.promo-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.promo-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 10px;
}
.promo-card-body {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.promo-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--black-border);
}
.promo-card-footer .promo-price {
    font-size: 1.3rem;
}
.promo-card-footer .promo-price-original {
    font-size: 0.85rem;
}
.promo-card-cta {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.3s;
}
.promo-card-cta:hover { color: var(--gold-light); }
.promo-card-cta svg { width: 14px; height: 14px; }

/* Fine print */
.promo-fine-print {
    padding: 40px 0 80px;
    text-align: center;
}
.promo-fine-print p {
    font-size: 0.78rem;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PROMO FLYER (single image) ===== */
.promo-flyer {
    padding: 80px 0 40px;
    text-align: center;
}
.promo-flyer .section-subtitle {
    margin: 0 auto;
    max-width: 560px;
}
.promo-flyer-image {
    margin: 48px auto 0;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.promo-flyer-image img {
    width: 100%;
    height: auto;
    display: block;
}
.promo-flyer-cta {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-featured-card {
        grid-template-columns: 1fr;
    }
    .promo-featured-image {
        min-height: 260px;
    }
    .promo-featured-content {
        padding: 32px 24px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== SITEMAP PAGE ===== */
.sitemap-page {
    padding: 80px 0 100px;
}
.sitemap-page .section-subtitle {
    margin: 0 auto 60px;
    text-align: center;
    max-width: 560px;
}
.sitemap-page .section-label,
.sitemap-page .section-title {
    text-align: center;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}
.sitemap-group-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black-border);
}
.sitemap-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sitemap-links li a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.2s;
    line-height: 1.6;
}
.sitemap-links li a:hover {
    color: var(--white);
}
@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== PRODUCT GRID COMPONENT ===== */
/* Filterable product card grid with pills, search, and image cards */

.component--product-grid {
    padding: 80px 0 60px;
}
.component--product-grid .section-header {
    margin-bottom: 40px;
}
.component--product-grid .section-header .label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.component--product-grid .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}
.component--product-grid .section-header h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 55%, #E2C275 80%, #F0D48A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filter bar — sticky with pills */
.cg-filter-bar {
    position: sticky;
    top: 80px;
    z-index: 20;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--black-border);
    padding: 14px 0;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}
.cg-filter-bar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.cg-filter-bar .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Filter pills — horizontal scroll */
.cg-filter-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
    flex: 1;
    scrollbar-width: none;
}
.cg-filter-scroll::-webkit-scrollbar { display: none; }

.cg-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    background: transparent;
    border: 1px solid var(--black-border);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cg-pill:hover {
    border-color: var(--gold-dark);
    color: var(--gray-light);
}
.cg-pill.active {
    background: linear-gradient(135deg, #F0D48A 0%, #E2C275 30%, #D4A84B 60%, #E2C275 100%);
    border-color: transparent;
    color: var(--black);
    font-weight: 600;
}
.cg-count {
    opacity: 0.6;
}
.cg-pill.active .cg-count {
    opacity: 0.8;
}

/* Dropdown — mobile alternative to pills */
.cg-dropdown-wrap {
    display: none;
}
.cg-dropdown {
    width: 100%;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    background: var(--black-card);
    border: 1px solid var(--black-border);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

/* Search bar */
.cg-search-wrap {
    margin-bottom: 40px;
    padding-top: 24px;
}
.cg-search-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cg-search-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 0 16px;
    transition: border-color 0.3s ease;
}
.cg-search-box:focus-within {
    border-color: var(--gold-dark);
}
.cg-search-box svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    flex-shrink: 0;
}
.cg-search-box input {
    width: 100%;
    padding: 12px 12px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.cg-search-box input::placeholder {
    color: var(--gray-dark);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}
.cg-result-count {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Grid container */
.cg-grid-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Group sections */
.cg-group-section {
    margin-bottom: 48px;
}
.cg-group-section.hidden {
    display: none;
}
.cg-group-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black-border);
}
.cg-group-heading h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.cg-group-heading .line {
    flex: 1;
    height: 1px;
    background: var(--black-border);
}
.cg-gcount {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Card grid layout */
.cg-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Individual product card */
.cg-card {
    display: flex;
    flex-direction: column;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
    text-decoration: none;
    color: inherit;
}
.cg-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}
.cg-card--no-link {
    cursor: default;
}
.cg-card--no-link:hover {
    transform: none;
    border-color: var(--black-border);
}
.cg-card.filtered-out {
    display: none;
}

/* Card image */
.cg-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.5s ease;
}
.cg-card:hover .cg-card-img {
    filter: grayscale(30%) brightness(1);
}

/* Card body */
.cg-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cg-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.cg-card-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

/* Card CTA arrow */
.cg-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    transition: gap 0.3s ease;
}
.cg-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    transition: transform 0.3s ease;
}
.cg-card:hover .cg-card-arrow {
    gap: 12px;
}
.cg-card:hover .cg-card-arrow svg {
    transform: translateX(3px);
}

/* "Available in clinic" note for non-linked cards */
.cg-card-note {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-top: auto;
}

/* No results message */
.cg-no-results {
    display: none;
    text-align: center;
    padding: 80px 0;
}
.cg-no-results.visible {
    display: block;
}
.cg-no-results h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cg-no-results p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== PRODUCT GRID — RESPONSIVE ===== */
@media (max-width: 960px) {
    .cg-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
}
@media (max-width: 720px) {
    .component--product-grid { padding: 48px 0 40px; }

    .cg-filter-bar { padding: 10px 0; }
    .cg-filter-scroll { display: none; }
    .cg-dropdown-wrap { display: block; }

    .cg-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cg-card-body { padding: 14px; }
    .cg-card-title { font-size: 0.88rem; }
    .cg-card-desc { font-size: 0.72rem; margin-bottom: 10px; }
    .cg-card-arrow { font-size: 0.62rem; }
    .cg-card-arrow svg { width: 12px; height: 12px; }

    .cg-group-heading h2 { font-size: 1.1rem; }
    .cg-group-section { margin-bottom: 32px; }

    .cg-search-box input { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .cg-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
