/* ==========================================================================
   LOCAL HONEY'S 'N' SUCH - A Handcrafted Design
   No templates. No shortcuts. Just pure liquid gold.
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Honey Palette - Rich, warm, alive */
    --honey: #D4A017;
    --honey-dark: #B8860B;
    --honey-light: #F0C75E;
    --honey-glow: rgba(212, 160, 23, 0.45);
    --amber: #FF8C00;
    --honeycomb: #E8A317;

    /* Earth Tones */
    --bark: #2C1B0E;
    --bark-deep: #1A0F06;
    --soil: #3D2B1F;
    --cream: #FFF8E7;
    --cream-dark: #F5E6C8;
    --parchment: #FEFCF3;

    /* Neutrals */
    --dark: #0D0906;
    --dark-warm: #1C1410;
    --gray-warm-900: #2D2420;
    --gray-warm-800: #3D332E;
    --gray-warm-700: #5C4F47;
    --gray-warm-600: #7A6E65;
    --gray-warm-500: #9C8E84;
    --gray-warm-400: #BEB1A6;
    --gray-warm-300: #D9CFC7;
    --gray-warm-200: #EDE7E1;
    --gray-warm-100: #F7F3EF;
    --white: #ffffff;

    /* Semantic */
    --star: #F0C75E;

    /* Typography - Playfair for drama, DM Sans for clean body */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;
    --font-size-6xl: 4rem;
    --font-size-7xl: 5rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    --line-height-tight: 1.05;
    --line-height-snug: 1.25;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --section-padding: 6rem;

    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(13, 9, 6, 0.08);
    --shadow-md: 0 4px 12px rgba(13, 9, 6, 0.12);
    --shadow-lg: 0 12px 24px rgba(13, 9, 6, 0.15);
    --shadow-xl: 0 20px 40px rgba(13, 9, 6, 0.2);
    --shadow-2xl: 0 30px 60px rgba(13, 9, 6, 0.3);
    --shadow-honey: 0 8px 32px rgba(212, 160, 23, 0.3);
    --shadow-honey-lg: 0 12px 48px rgba(212, 160, 23, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-smooth: 600ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 50;
    --z-sticky: 100;
    --z-fixed: 200;
    --z-modal: 300;
    --z-tooltip: 400;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--gray-warm-700);
    background-color: var(--parchment);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--honey);
    color: var(--dark);
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--dark {
    background-color: var(--dark);
    color: var(--white);
}

.section--dark .section__subtitle,
.section--dark p {
    color: var(--gray-warm-400);
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--honey-dark);
    margin-bottom: var(--space-md);
    position: relative;
    padding: var(--space-xs) var(--space-lg);
}

.section__label::before,
.section__label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--honey);
}

.section__label::before {
    right: 100%;
    margin-right: 4px;
}

.section__label::after {
    left: 100%;
    margin-left: 4px;
}

.section--dark .section__label {
    color: var(--honey-light);
}

.section--dark .section__label::before,
.section--dark .section__label::after {
    background: var(--honey-light);
    opacity: 0.5;
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--bark);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.section--dark .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-warm-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Honeycomb divider decoration */
.section__header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
    margin: var(--space-xl) auto 0;
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
}

.btn--primary {
    background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
    color: var(--dark);
    box-shadow: var(--shadow-honey);
    border: none;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-honey-lg);
    filter: brightness(1.1);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: var(--font-size-lg);
}

/* For light sections */
.section:not(.section--dark) .btn--outline {
    color: var(--bark);
    border-color: var(--gray-warm-300);
}

.section:not(.section--dark) .btn--outline:hover {
    background: var(--cream);
    border-color: var(--honey);
    color: var(--honey-dark);
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-lg) 0;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    background: rgba(13, 9, 6, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-md) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    font-style: italic;
}

.nav__menu {
    display: flex;
    gap: var(--space-2xl);
}

.nav__link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 4px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--honey-light);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.625rem 1.5rem;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-full);
}

/* Honeycomb Hamburger Button */
.nav__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 52px;
    padding: 0;
    z-index: var(--z-fixed);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

/* The hexagon shape */
.nav__toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--honey-light) 0%, var(--honey) 40%, var(--honey-dark) 100%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    transition: all var(--transition-base);
    filter: drop-shadow(0 3px 8px rgba(212, 160, 23, 0.5));
}

/* Subtle inner glow / highlight on the hex */
.nav__toggle::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    pointer-events: none;
    transition: all var(--transition-base);
}

.nav__toggle:hover::before {
    filter: drop-shadow(0 4px 12px rgba(212, 160, 23, 0.6)) brightness(1.1);
    transform: scale(1.06);
}

.nav__toggle:active::before {
    transform: scale(0.94);
    filter: drop-shadow(0 2px 6px rgba(212, 160, 23, 0.4)) brightness(0.95);
}

/* Hamburger lines centered inside the hex */
.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Middle line shorter for visual interest */
.nav__toggle span:nth-child(2) {
    width: 14px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: var(--parchment);
    padding: var(--space-3xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: var(--z-modal);
    box-shadow: var(--shadow-2xl);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-sm);
    color: var(--bark);
}

.mobile-menu__list {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--bark);
    font-style: italic;
    transition: all var(--transition-base);
    padding-left: var(--space-md);
    border-left: 3px solid transparent;
}

.mobile-menu__link:hover {
    color: var(--honey-dark);
    border-left-color: var(--honey);
    padding-left: var(--space-lg);
}

.mobile-menu__cta {
    margin-top: var(--space-2xl);
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 9, 6, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--bark-deep) 40%, var(--bark) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 9, 6, 0.6) 0%, rgba(26, 15, 6, 0.2) 40%, rgba(13, 9, 6, 0.7) 100%),
        url('../images/hero-bg-beekeeper.jpg') center/cover no-repeat;
    opacity: 1;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.shape--1 {
    width: 600px;
    height: 600px;
    background: var(--honey);
    top: -250px;
    right: -150px;
    animation: float 25s ease-in-out infinite;
}

.shape--2 {
    width: 500px;
    height: 500px;
    background: var(--amber);
    bottom: -200px;
    left: -150px;
    animation: float 30s ease-in-out infinite reverse;
}

.shape--3 {
    width: 350px;
    height: 350px;
    background: var(--honey-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) rotate(5deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 50px) rotate(3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

.hero__content {
    position: relative;
    z-index: var(--z-base);
    text-align: center;
    padding: var(--space-5xl) var(--container-padding);
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-xl);
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--honey-light);
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(10px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-7xl));
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
    color: var(--white);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

/* Golden highlight for key words */
.hero__title .text-honey {
    color: var(--honey-light);
    position: relative;
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    line-height: var(--line-height-relaxed);
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--honey);
    opacity: 0.6;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes drip {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about {
    background: var(--parchment);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.about__image-accent {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    right: calc(var(--space-xl) * -1);
    bottom: calc(var(--space-xl) * -1);
    background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.15;
}

.about__content .section__label {
    text-align: left;
}

.about__content .section__title {
    text-align: left;
}

.about__content .section__header::after {
    display: none;
}

.about__text {
    color: var(--gray-warm-600);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-lg);
}

.about__text:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--honey-dark);
    float: left;
    line-height: 1;
    margin-right: var(--space-sm);
    margin-top: 4px;
    font-style: italic;
}

.about__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-warm-200);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--honey-dark);
    line-height: 1;
    font-style: italic;
}

.stat__label {
    font-size: var(--font-size-sm);
    color: var(--gray-warm-500);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   SERVICES (Products)
   -------------------------------------------------------------------------- */
.services {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Subtle honeycomb pattern overlay */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 20V50L30 65L5 50V20L30 5Z' fill='none' stroke='rgba(212,160,23,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 70px;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl);
    background: rgba(255, 248, 231, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 23, 0.1);
}

.service-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    border-radius: 50%;
    margin: 0 auto var(--space-xl);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--cream);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.service-card__desc {
    font-size: var(--font-size-sm);
    color: var(--gray-warm-400);
    line-height: var(--line-height-relaxed);
}

/* --------------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------------- */
.gallery {
    background: var(--parchment);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.85) 0%, rgba(44, 27, 14, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--white);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(13, 9, 6, 0.97);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: var(--white);
    padding: var(--space-sm);
    transition: all var(--transition-fast);
}

.lightbox__close:hover {
    transform: scale(1.1);
    color: var(--honey);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    padding: var(--space-md);
    transition: all var(--transition-fast);
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--honey);
}

.lightbox__nav--prev {
    left: var(--space-xl);
}

.lightbox__nav--next {
    right: var(--space-xl);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: rgba(255, 248, 231, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    position: relative;
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(212, 160, 23, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(212, 160, 23, 0.06);
    border-color: rgba(212, 160, 23, 0.2);
}

.testimonial-card__stars {
    display: flex;
    gap: var(--space-xs);
    color: var(--star);
    margin-bottom: var(--space-lg);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-style: italic;
    color: var(--gray-warm-300);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-xl);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.testimonial-card__name {
    font-weight: var(--font-weight-semibold);
    color: var(--honey-light);
}

.testimonial-card__title {
    font-size: var(--font-size-sm);
    color: var(--gray-warm-500);
}

.testimonials__disclaimer {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--gray-warm-600);
    margin-top: var(--space-2xl);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact {
    background: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-warm-200);
}

.contact__card:hover {
    background: var(--parchment);
    transform: translateX(6px);
    border-color: var(--honey);
    box-shadow: var(--shadow-md);
}

.contact__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--honey) 0%, var(--amber) 100%);
    border-radius: 50%;
    color: var(--dark);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
}

.contact__details h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--bark);
    margin-bottom: var(--space-xs);
    font-style: italic;
}

.contact__details p,
.contact__details a {
    font-size: var(--font-size-sm);
    color: var(--gray-warm-600);
    line-height: var(--line-height-relaxed);
}

.contact__details a:hover {
    color: var(--honey-dark);
}

.contact__cta {
    display: flex;
    align-items: center;
}

.contact__cta-content {
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--bark) 0%, var(--dark) 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Honeycomb accent on CTA */
.contact__cta-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact__cta-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.contact__cta-content p {
    color: var(--gray-warm-400);
    margin-bottom: var(--space-xl);
}

.section .contact__cta-content .btn--outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.section .contact__cta-content .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.contact__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--dark);
    color: var(--gray-warm-400);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--honey), var(--amber), var(--honey), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    display: inline-block;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.footer__tagline {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    transition: all var(--transition-base);
    color: var(--gray-warm-400);
}

.social-link:hover {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer__links a:hover {
    color: var(--honey-light);
    padding-left: 6px;
}

.footer__contact p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
}

.footer__contact a:hover {
    color: var(--honey-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: var(--font-size-sm);
}

.footer__credit a {
    color: var(--honey);
    transition: color var(--transition-fast);
}

.footer__credit a:hover {
    color: var(--honey-light);
}

/* --------------------------------------------------------------------------
   ANIMATIONS & REVEALS
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for grids */
.services__grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.5s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.6s; }

.testimonials__grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.gallery__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.gallery__grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4.5rem;
    }

    .about__grid {
        gap: var(--space-3xl);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
        --container-padding: 1.25rem;
    }

    .nav__menu,
    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    /* Mobile logo scaling */
    .logo-text {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        white-space: nowrap;
    }

    /* Mobile Menu Header Branding */
    .mobile-menu__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: var(--space-lg);
        border-bottom: 1px solid var(--gray-warm-200);
        margin-bottom: var(--space-lg);
    }

    .mobile-menu__logo-img {
        width: 45px;
        height: 45px;
        border-radius: var(--radius-full);
        object-fit: cover;
        border: 2px solid var(--honey);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__image {
        order: -1;
    }

    .about__content .section__label,
    .about__content .section__title {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__text:first-of-type::first-letter {
        float: none;
        font-size: inherit;
        margin-right: 0;
    }

    .about__stats {
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__buttons {
        flex-direction: column;
    }

    .contact__buttons .btn {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .lightbox__nav--prev {
        left: var(--space-md);
    }

    .lightbox__nav--next {
        right: var(--space-md);
    }

    .section__label::before,
    .section__label::after {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .section__title {
        font-size: var(--font-size-3xl);
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .btn--lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-base);
    }

    .hero__badge {
        font-size: var(--font-size-xs);
    }
}
