/*
Theme Name: The Loud House - Private Members Collective
Theme URI: https://theloudhouse.co.za
Author: Lereko Digital
Author URI: https://lerekodigital.co.za
Description: A premium, minimalist WordPress + WooCommerce theme for The Loud House Private Members Collective. Features membership gating, age verification, dark editorial aesthetic, and curated product display.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loud-house
Tags: woocommerce, dark, minimalist, membership, cannabis, custom-logo

*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --lh-black: #0A0A0A;
    --lh-dark: #111111;
    --lh-charcoal: #1A1A1A;
    --lh-graphite: #2A2A2A;
    --lh-grey: #888888;
    --lh-light-grey: #CCCCCC;
    --lh-white: #F5F5F0;
    --lh-cream: #E8E4DF;
    --lh-green: #1B3A2D;
    --lh-green-light: #2D5E47;
    --lh-green-accent: #4A7C64;
    --lh-gold: #C9A962;
    --lh-gold-dim: rgba(201, 169, 98, 0.15);
    --lh-red-subtle: #8B2E2E;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Sizing */
    --container-max: 1400px;
    --container-narrow: 900px;
    --gap: clamp(1rem, 3vw, 2.5rem);
    --section-padding: clamp(4rem, 10vh, 8rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    /* Z-index */
    --z-base: 1;
    --z-sticky: 100;
    --z-overlay: 500;
    --z-modal: 1000;
    --z-top: 9999;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--lh-white);
    background-color: var(--lh-black);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--lh-gold);
}

::selection {
    background: var(--lh-green);
    color: var(--lh-white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

.display-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.02em;
}

.label-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lh-grey);
    font-weight: 300;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--gap);
    padding-right: var(--gap);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lh-white);
    transform: translateY(100%);
    transition: transform var(--transition-med);
    z-index: 0;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn--primary {
    background: var(--lh-white);
    color: var(--lh-black);
    border-color: var(--lh-white);
}

.btn--primary:hover {
    color: var(--lh-black);
}

.btn--primary::after {
    background: var(--lh-gold);
}

.btn--primary:hover::after {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--lh-white);
    border-color: rgba(245, 245, 240, 0.3);
}

.btn--outline:hover {
    color: var(--lh-black);
    border-color: var(--lh-white);
}

.btn--outline:hover::after {
    transform: translateY(0);
}

.btn--gold {
    background: var(--lh-gold);
    color: var(--lh-black);
    border-color: var(--lh-gold);
}

.btn--gold::after {
    background: var(--lh-white);
}

.btn--gold:hover::after {
    transform: translateY(0);
}

.btn--small {
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    padding: 1.5rem 0;
    transition: all var(--transition-med);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.site-logo__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lh-white);
    line-height: 1;
}

.site-logo__tagline {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--lh-gold);
    margin-top: 2px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.nav-primary {
    display: none;
}

.nav-primary ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-primary a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding-bottom: 3px;
}

.nav-primary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lh-gold);
    transition: width var(--transition-med);
}

.nav-primary a:hover::after,
.nav-primary .current-menu-item a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions a {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.header-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lh-gold);
    color: var(--lh-black);
    font-size: 0.55rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: calc(var(--z-overlay) + 1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--lh-white);
    transition: all var(--transition-med);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--lh-black);
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

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

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    transition: all var(--transition-med);
}

.mobile-menu a:hover {
    color: var(--lh-gold);
    transform: translateX(10px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 var(--gap);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--lh-gold);
}

.hero__eyebrow span {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lh-gold);
    font-weight: 300;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: var(--lh-white);
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--lh-cream);
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.hero__scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lh-grey);
}

.hero__scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lh-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MEMBERSHIP GATE
   ============================================ */
.membership-gate {
    background: var(--lh-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.membership-gate__inner {
    max-width: 600px;
    margin: 0 auto;
}

.membership-gate__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    border: 1px solid var(--lh-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lh-gold);
    font-size: 1.2rem;
}

.membership-gate h2 {
    margin-bottom: 1rem;
    color: var(--lh-white);
}

.membership-gate p {
    color: var(--lh-grey);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ============================================
   FEATURED CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.category-tile {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.category-tile__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease-out);
}

.category-tile:hover .category-tile__image {
    transform: scale(1.08);
}

.category-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
    transition: background var(--transition-med);
}

.category-tile:hover .category-tile__overlay {
    background: linear-gradient(
        180deg,
        rgba(27, 58, 45, 0.2) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.category-tile__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform var(--transition-med);
}

.category-tile:hover .category-tile__content {
    transform: translateY(0);
}

.category-tile__label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lh-gold);
    margin-bottom: 0.5rem;
}

.category-tile__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.1em;
}

.category-tile__arrow {
    display: inline-block;
    margin-top: 1rem;
    width: 40px;
    height: 1px;
    background: var(--lh-gold);
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-med);
}

.category-tile:hover .category-tile__arrow {
    opacity: 1;
    transform: translateX(0);
}

.category-tile__arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--lh-gold);
    border-right: 1px solid var(--lh-gold);
    transform: rotate(45deg);
}

/* ============================================
   ABOUT / LIFESTYLE
   ============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 18rem);
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content__text .label-text {
    margin-bottom: 1.5rem;
    display: block;
}

.about-content__text h2 {
    margin-bottom: 2rem;
}

.about-content__text p {
    color: var(--lh-grey);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-content__text blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--lh-cream);
    padding-left: 2rem;
    border-left: 2px solid var(--lh-gold);
    margin: 2.5rem 0;
}

.about-content__image {
    position: relative;
}

.about-content__image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-content__image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201, 169, 98, 0.2);
    z-index: -1;
}

/* ============================================
   FEATURED PRODUCTS (MEMBERS ONLY)
   ============================================ */
.products-section {
    background: var(--lh-dark);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-header__left .label-text {
    display: block;
    margin-bottom: 0.5rem;
}

.section-header__right a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lh-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: var(--lh-charcoal);
    overflow: hidden;
    transition: transform var(--transition-med);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--lh-gold);
    color: var(--lh-black);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
}

.product-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--lh-graphite);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__info {
    padding: 1.2rem;
}

.product-card__category {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lh-green-accent);
    margin-bottom: 0.4rem;
}

.product-card__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 0.8rem;
    color: var(--lh-white);
    line-height: 1.4;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card__price .amount {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--lh-white);
}

.product-card__price .was {
    font-size: 0.8rem;
    color: var(--lh-grey);
    text-decoration: line-through;
}

/* Members only lock overlay */
.product-card--locked .product-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--lh-grey);
}

.product-card__lock svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    stroke: var(--lh-gold);
}

.product-card__lock span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ============================================
   DIVIDER
   ============================================ */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.3) 50%,
        transparent 100%
    );
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: var(--z-top);
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: opacity var(--transition-slow);
}

.age-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate__content {
    max-width: 480px;
    padding: var(--gap);
}

.age-gate__logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.age-gate__subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--lh-gold);
    margin-bottom: 3rem;
}

.age-gate h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-gate p {
    color: var(--lh-grey);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.age-gate__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate__deny {
    margin-top: 2rem;
}

.age-gate__deny a {
    font-size: 0.7rem;
    color: var(--lh-grey);
    letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--lh-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 5rem 0 3rem;
}

.footer-brand .site-logo {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--lh-grey);
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--lh-white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    font-size: 0.8rem;
    color: var(--lh-grey);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--lh-grey);
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--lh-grey);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce .products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--lh-charcoal);
    overflow: hidden;
    transition: transform var(--transition-med);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
    margin: 0 !important;
    aspect-ratio: 1;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--lh-white) !important;
    padding: 1rem 1.2rem 0.3rem !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
}

.woocommerce ul.products li.product .price {
    color: var(--lh-white) !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    padding: 0 1.2rem 1.2rem !important;
}

.woocommerce ul.products li.product .price del {
    color: var(--lh-grey) !important;
    opacity: 0.7;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--lh-white) !important;
    color: var(--lh-black) !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    padding: 0.8rem 1.5rem !important;
    transition: all var(--transition-fast) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--lh-gold) !important;
    color: var(--lh-black) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--lh-gold) !important;
    color: var(--lh-black) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--lh-white) !important;
}

.woocommerce .onsale {
    background: var(--lh-gold) !important;
    color: var(--lh-black) !important;
    border-radius: 0 !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 5px 10px !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: 1.5 !important;
}

/* Single product */
.woocommerce div.product div.summary {
    color: var(--lh-white);
}

.woocommerce div.product .product_title {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem !important;
    color: var(--lh-white) !important;
    letter-spacing: 0.08em !important;
}

.woocommerce div.product p.price {
    color: var(--lh-gold) !important;
    font-size: 1.5rem !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--lh-grey);
}

.woocommerce .quantity .qty {
    background: var(--lh-charcoal) !important;
    color: var(--lh-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
}

/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce table.shop_table {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
}

.woocommerce table.shop_table th {
    font-family: var(--font-body) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--lh-grey) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.woocommerce table.shop_table td {
    color: var(--lh-white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce-checkout #payment {
    background: var(--lh-charcoal) !important;
    border-radius: 0 !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--lh-charcoal) !important;
    color: var(--lh-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    padding: 0.8rem 1rem !important;
    font-family: var(--font-body) !important;
}

.woocommerce form .form-row label {
    color: var(--lh-grey) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Members Only badge on products */
.woocommerce span.members-only-badge {
    display: inline-block;
    background: var(--lh-green);
    color: var(--lh-gold);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 0.5rem;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--lh-charcoal);
    overflow: hidden;
    transition: transform var(--transition-med);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.06);
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lh-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--lh-white);
}

.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--lh-grey);
    line-height: 1.7;
}

/* ============================================
   MY ACCOUNT
   ============================================ */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lh-grey);
    transition: all var(--transition-fast);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: var(--lh-charcoal);
    color: var(--lh-gold);
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1024px) {
    .nav-primary {
        display: block;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 1023px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .woocommerce .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-tile {
        aspect-ratio: 3/4;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .product-card__info {
        padding: 0.8rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .woocommerce .products {
        grid-template-columns: 1fr 1fr !important;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile sticky bottom nav */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        justify-content: space-around;
        padding: 0.6rem 0;
        z-index: var(--z-sticky);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-size: 0.55rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--lh-grey);
        padding: 0.3rem 0.8rem;
    }

    .mobile-bottom-nav a.active {
        color: var(--lh-gold);
    }

    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
    padding-top: calc(100px + var(--section-padding));
    padding-bottom: var(--section-padding);
    text-align: center;
    background: var(--lh-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header .label-text {
    display: block;
    margin-bottom: 0.5rem;
}

.page-content {
    padding: var(--section-padding) 0;
}

.page-content p {
    color: var(--lh-grey);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Sidebar widget styling */
.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--lh-charcoal);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    font-size: 0.85rem;
    color: var(--lh-grey);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    background: var(--lh-green) !important;
    color: var(--lh-white) !important;
    border: none !important;
    border-left: 4px solid var(--lh-gold) !important;
    border-radius: 0 !important;
}

.woocommerce-error {
    background: var(--lh-red-subtle) !important;
    color: var(--lh-white) !important;
    border: none !important;
    border-left: 4px solid #CC4444 !important;
    border-radius: 0 !important;
}

/* ============================================
   FRONT-PAGE SECTIONS (BEM lh- prefix)
   ============================================ */

/* Hero */
.lh-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--lh-black);
}

.lh-hero__bg,
.lh-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-hero__bg {
    background-size: cover;
    background-position: center;
}

.lh-hero__bg--default {
    background: linear-gradient(135deg, var(--lh-green) 0%, var(--lh-black) 100%);
}

.lh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 1;
}

.lh-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--gap);
}

.lh-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--lh-white);
}

.lh-hero__subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: var(--lh-gold);
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.lh-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lh-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lh-hero__scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lh-grey);
}

.lh-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--lh-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Gate Section */
.lh-gate {
    padding: 5rem 0;
    text-align: center;
    background: var(--lh-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-gate__inner {
    max-width: 560px;
    margin: 0 auto;
}

.lh-gate__icon {
    display: inline-flex;
    color: var(--lh-gold);
    margin-bottom: 1.5rem;
}

.lh-gate__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.lh-gate__text {
    color: var(--lh-grey);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Section Headers */
.lh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.lh-section-header__tag {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lh-gold);
    margin-bottom: 0.5rem;
}

.lh-section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 0.1em;
}

.lh-section-header__link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lh-grey);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.lh-section-header__link:hover {
    color: var(--lh-gold);
}

/* Categories Section */
.lh-categories {
    padding: var(--section-padding) 0;
}

/* About Section */
.lh-about {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lh-about__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.lh-about__text {
    color: var(--lh-grey);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.lh-about__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--lh-gold);
    padding-left: 1.5rem;
    border-left: 2px solid var(--lh-gold);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.lh-about__image {
    position: relative;
}

.lh-about__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.lh-about__image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--lh-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.05);
}

.lh-about__image-border {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: 1.5rem;
    border: 1px solid var(--lh-gold);
    opacity: 0.3;
    z-index: -1;
}

/* Featured Section */
.lh-featured {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blog Section */
.lh-blog {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lh-blog-card {
    background: var(--lh-charcoal);
    overflow: hidden;
    transition: transform var(--transition-med);
}

.lh-blog-card:hover {
    transform: translateY(-4px);
}

.lh-blog-card__image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.lh-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.lh-blog-card:hover .lh-blog-card__image img {
    transform: scale(1.06);
}

.lh-blog-card__body {
    padding: 1.5rem;
}

.lh-blog-card__date {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lh-gold);
    margin-bottom: 0.5rem;
}

.lh-blog-card__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--lh-white);
}

.lh-blog-card__title a {
    color: inherit;
}

.lh-blog-card__title a:hover {
    color: var(--lh-gold);
}

.lh-blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--lh-grey);
    line-height: 1.7;
}

.lh-blog-card__read {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lh-gold);
}

/* CTA Section */
.lh-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--lh-green) 0%, var(--lh-black) 100%);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.lh-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.lh-cta__text {
    color: var(--lh-grey);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ============================================
   SINGLE POST
   ============================================ */
.lh-single__hero {
    position: relative;
    height: 60vh;
    min-height: 350px;
    overflow: hidden;
}

.lh-single__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-single__article {
    padding: 4rem 0 6rem;
}

.lh-container--narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 var(--gap);
}

.lh-single__header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.lh-single__meta {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lh-grey);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lh-single__meta a {
    color: var(--lh-gold);
}

.lh-single__sep {
    color: var(--lh-gold);
}

.lh-single__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.lh-single__excerpt {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--lh-grey);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1.5rem;
}

/* Content Prose */
.lh-content {
    color: var(--lh-grey);
    font-size: 1rem;
    line-height: 1.9;
}

.lh-content p {
    margin-bottom: 1.5rem;
}

.lh-content h2, .lh-content h3, .lh-content h4 {
    color: var(--lh-white);
    margin: 2.5rem 0 1rem;
}

.lh-content h2 { font-size: 1.6rem; }
.lh-content h3 { font-size: 1.3rem; }

.lh-content blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--lh-gold);
    border-left: 2px solid var(--lh-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.lh-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.lh-content a {
    color: var(--lh-gold);
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

/* Single Post Footer */
.lh-single__footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.lh-tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lh-grey);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.lh-tag:hover {
    border-color: var(--lh-gold);
    color: var(--lh-gold);
}

.lh-single__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lh-single__nav-link {
    padding: 1.5rem;
    background: var(--lh-charcoal);
    transition: background var(--transition-fast);
}

.lh-single__nav-link:hover {
    background: var(--lh-green);
}

.lh-single__nav-link span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lh-gold);
    margin-bottom: 0.5rem;
}

.lh-single__nav-link strong {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--lh-white);
}

.lh-single__nav-link--next {
    text-align: right;
}

/* ============================================
   PAGE HEADER (lh- prefix)
   ============================================ */
.lh-page-header {
    padding-top: calc(100px + 4rem);
    padding-bottom: 4rem;
    text-align: center;
    background: var(--lh-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-page-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.1em;
}

.lh-page-header__desc {
    color: var(--lh-grey);
    font-size: 0.9rem;
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* ============================================
   404 PAGE
   ============================================ */
.lh-main--404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.lh-404 {
    text-align: center;
    padding: 6rem 0;
    width: 100%;
}

.lh-404__code {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    letter-spacing: 0.2em;
    color: rgba(201, 169, 98, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.lh-404__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.lh-404__text {
    color: var(--lh-grey);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.lh-pagination {
    margin-top: 4rem;
    text-align: center;
}

.lh-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.lh-pagination a,
.lh-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lh-grey);
    transition: all var(--transition-fast);
}

.lh-pagination a:hover {
    border-color: var(--lh-gold);
    color: var(--lh-gold);
}

.lh-pagination span.current {
    background: var(--lh-gold);
    border-color: var(--lh-gold);
    color: var(--lh-black);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.lh-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--lh-grey);
}

.lh-empty h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lh-empty .search-form {
    max-width: 400px;
    margin: 2rem auto 0;
    display: flex;
    gap: 0.5rem;
}

.lh-empty .search-field {
    flex: 1;
    background: var(--lh-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lh-white);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
}

.lh-empty .search-submit {
    background: var(--lh-gold);
    color: var(--lh-black);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
}

/* ============================================
   DATA-REVEAL ANIMATION SYSTEM
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ADDITIONAL RESPONSIVE (lh- classes)
   ============================================ */
@media (max-width: 1023px) {
    .lh-about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lh-about__image-border {
        display: none;
    }

    .lh-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lh-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .lh-hero__title {
        letter-spacing: 0.1em;
    }

    .lh-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .lh-hero__actions .lh-btn {
        width: 100%;
        max-width: 280px;
    }

    .lh-blog__grid {
        grid-template-columns: 1fr;
    }

    .lh-single__nav {
        grid-template-columns: 1fr;
    }

    .lh-single__hero {
        height: 40vh;
    }
}

/* ============================================
   ELEMENTOR COMPATIBILITY
   ============================================ */

/* Full-width Elementor pages — no container constraints */
.lh-main--elementor {
    width: 100%;
}

.lh-main--full-width {
    padding: 0;
    margin: 0;
}

.lh-main--full-width .lh-container {
    max-width: 100%;
    padding: 0;
}

/* Elementor Canvas template */
.lh-canvas {
    background: var(--lh-black);
    color: var(--lh-white);
}

/* Ensure Elementor sections inherit theme colors */
.elementor-section {
    --e-global-color-primary: #C9A962;
    --e-global-color-secondary: #1B3A2D;
    --e-global-color-text: #F5F5F0;
    --e-global-color-accent: #C9A962;
}

/* Elementor dark background defaults */
.elementor {
    color: var(--lh-white);
}

.elementor h1,
.elementor h2,
.elementor h3,
.elementor h4,
.elementor h5,
.elementor h6 {
    color: var(--lh-white);
}

.elementor a {
    color: var(--lh-gold);
}

/* Elementor buttons inherit theme style */
.elementor .elementor-button {
    font-family: var(--font-body);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-radius: 0;
    font-weight: 400;
}

/* Elementor text editor inherits theme typography */
.elementor .elementor-widget-text-editor {
    font-family: var(--font-body);
    line-height: 1.8;
}

/* Ensure Elementor heading widgets use theme fonts */
.elementor .elementor-heading-title {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

/* Prevent Elementor from adding unwanted margins on theme pages */
.lh-main--page .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

/* Elementor column gap fix for dark theme */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px;
}

/* Elementor forms inherit dark theme */
.elementor-form .elementor-field {
    background: var(--lh-charcoal) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--lh-white) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
}

.elementor-form label {
    color: var(--lh-grey) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Make sure Elementor containers and sections don't fight the theme bg */
.elementor-section:not([data-settings*="background_color"]) {
    background-color: transparent;
}
