/* ============================================
   HAMILTON HONEY FARM — Premium Design System
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Warm Amber / Honey Palette */
    --gold-50: #FFF8E7;
    --gold-100: #FFEDBA;
    --gold-200: #FFE08D;
    --gold-300: #FFD25F;
    --gold-400: #F5A623;
    --gold-500: #D4860B;
    --gold-600: #A96600;
    --gold-700: #7D4C00;

    /* Earthy Darks */
    --brown-900: #1A0E08;
    --brown-800: #2C1810;
    --brown-700: #3D2518;
    --brown-600: #4E3220;

    /* Neutral Warm */
    --warm-50: #FDFAF6;
    --warm-100: #F8F2E8;
    --warm-200: #EDE4D4;
    --warm-300: #D6C9B6;
    --warm-400: #B5A790;

    /* Text Colors */
    --text-primary: #2C1810;
    --text-secondary: #5A4A3C;
    --text-muted: #8B7B6B;
    --text-light: #FDFAF6;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F5A623, #FFD25F, #D4860B);
    --gradient-dark: linear-gradient(180deg, #1A0E08, #2C1810);
    --gradient-warm: linear-gradient(135deg, #FDFAF6, #F8F2E8);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.10);
    --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.14);
    --shadow-gold: 0 4px 30px rgba(245, 166, 35, 0.25);

    /* Layout */
    --container-max: 1280px;
    --section-pad: 100px;
    --border-radius: 16px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--text-primary);
    background-color: var(--warm-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Accessibility ---------- */

/* Skip-to-content link (hidden until focused) */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold-500);
    color: var(--brown-900);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--brown-900);
    outline-offset: 2px;
}

/* Visible focus indicators for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero-particle {
        display: none;
    }
}

/* Print styles */
@media print {

    #navbar,
    .hero-particles,
    .hero-scroll-indicator,
    .lightbox,
    .gallery-filters,
    .photo-break,
    .hamburger {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ========== Photo Enhancement System ==========
   Composable classes applied per-image for targeted corrections.
   CSS filters stack when multiple classes are combined.
   ================================================ */

/* Brighten dark / underexposed photos */
.enhance-brighten {
    filter: brightness(1.15) contrast(1.05);
}

/* Boost color vibrancy on desaturated / overcast shots */
.enhance-vivid {
    filter: saturate(1.25) contrast(1.08);
}

/* Perceived sharpening via contrast + slight brightness for hazy/soft photos */
.enhance-sharpen {
    filter: contrast(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
}

/* Warm up golden-hour photos for richer tones */
.enhance-warm {
    filter: saturate(1.15) contrast(1.06) brightness(1.04) sepia(0.08);
}

/* Combined enhancement overrides (CSS filter doesn't stack across classes,
   so we define common combos explicitly) */
.enhance-brighten.enhance-vivid {
    filter: brightness(1.15) saturate(1.25) contrast(1.1);
}

.enhance-vivid.enhance-sharpen {
    filter: saturate(1.2) contrast(1.15) brightness(1.05);
    image-rendering: -webkit-optimize-contrast;
}

.enhance-brighten.enhance-vivid.enhance-sharpen {
    filter: brightness(1.18) saturate(1.25) contrast(1.15);
    image-rendering: -webkit-optimize-contrast;
}

.enhance-sharpen.enhance-vivid.enhance-crop-center {
    filter: saturate(1.2) contrast(1.15) brightness(1.05);
    image-rendering: -webkit-optimize-contrast;
}

.enhance-warm.enhance-sharpen {
    filter: saturate(1.18) contrast(1.12) brightness(1.06) sepia(0.08);
    image-rendering: -webkit-optimize-contrast;
}

.enhance-sharpen.enhance-crop-center {
    filter: contrast(1.12) brightness(1.03);
    image-rendering: -webkit-optimize-contrast;
}

.enhance-vivid.enhance-crop-top {
    filter: saturate(1.25) contrast(1.08);
}

/* Smart cropping — adjust which part of the image is shown */
.enhance-crop-center {
    object-position: center 40%;
}

.enhance-crop-top {
    object-position: center 25%;
}

a {
    color: var(--gold-500);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

a:hover {
    color: var(--gold-400);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--brown-800);
}

/* ---------- Utility Classes ---------- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold-400);
}

.gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--brown-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(245, 166, 35, 0.4);
    color: var(--brown-900);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s var(--ease-spring);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    background: rgba(26, 14, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: #1A0E08 !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
    border: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26, 14, 8, 0.70) 0%,
            rgba(26, 14, 8, 0.50) 40%,
            rgba(26, 14, 8, 0.75) 100%),
        linear-gradient(135deg,
            rgba(245, 166, 35, 0.15) 0%,
            transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 166, 35, 0.5);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 0;
    max-width: 900px;
}

.hero-logo-img {
    max-width: 550px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    background: rgba(245, 166, 35, 0.08);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-400);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: relative;
    margin-top: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 8px auto 0;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    padding: var(--section-pad) 0;
    background: var(--warm-50);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-50);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-year-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.year-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brown-900);
    line-height: 1;
}

.year-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--brown-700);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 20px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--warm-100);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}

.highlight:hover {
    background: var(--gold-50);
    transform: translateX(4px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    border-radius: 10px;
}

.highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.highlight span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    padding: var(--section-pad) 0;
    background: var(--gradient-warm);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 166, 35, 0.12);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-50);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold-100);
    transform: scale(1.1);
}

.service-icon {
    font-size: 2.2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--brown-800);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 16px;
    background: var(--gold-50);
    color: var(--gold-600);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid var(--gold-200);
}

/* ============================================
   PHOTO BREAK / PARALLAX
   ============================================ */
.photo-break {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/Truck1.jpg') center/cover no-repeat fixed;
    text-align: center;
}

.photo-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 14, 8, 0.75);
}

.photo-break-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.photo-break-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 12px;
}

.photo-break-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
    padding: var(--section-pad) 0;
    background: var(--warm-50);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--warm-300);
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--gold-400);
    color: var(--gold-500);
}

.filter-btn.active {
    background: var(--gradient-gold);
    border-color: var(--gold-400);
    color: var(--brown-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.4s var(--ease-out);
}

.gallery-item.featured {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 14, 8, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item.hidden {
    display: none;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-spring);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: rgba(245, 166, 35, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    padding: var(--section-pad) 0;
    background: var(--gradient-warm);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(245, 166, 35, 0.1);
    transition: all 0.3s var(--ease-out);
}

.contact-card:hover {
    transform: translateX(6px);
    border-color: var(--gold-400);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-50);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-card a,
.contact-card address {
    font-style: normal;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-map {
    margin-top: 8px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 166, 35, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--brown-800);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--warm-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--warm-50);
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7B6B' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Form success state */
.contact-form.submitted .btn-primary {
    background: #28a745;
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: var(--brown-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-honeycomb {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.4rem;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links-group h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links-group a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Testimonials ---------- */
#testimonials {
    padding: var(--section-pad) 0;
    background: var(--warm-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--gold-100);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: var(--brown-800);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
#faq {
    padding: var(--section-pad) 0;
    background: var(--warm-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown-800);
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gold-50);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-500);
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}

.faq-icon::after {
    height: 100%;
    width: 2px;
    left: 50%;
    margin-left: -1px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 36px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(26, 14, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        transition: right 0.4s var(--ease-out);
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    /* Hero */
    .hero-stats {
        gap: 20px;
    }

    .stat-number,
    .stat-plus {
        font-size: 2rem;
    }

    .stat-divider {
        height: 30px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-accent {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -10px;
    }

    .about-content {
        padding-left: 0;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Lightbox */
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-year-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }

    .year-number {
        font-size: 1.3rem;
    }
}