/* ========================================
   AGALA PIZZA - Landing Page Styles
   "Hearth & Craft" Design System
   ======================================== */

/* ========================================
   DESIGN TOKENS
   ======================================== */

:root {
    /* Brand Colors - Hearth & Craft Palette */
    --primary: #556B2F;
    --primary-dark: #3A4A22;
    --primary-light: #6D8F5B;
    --primary-pale: rgba(85, 107, 47, 0.08);
    --secondary: #1C1510;
    --accent: #D4A24C;
    --accent-light: #E0BA70;
    --accent-pale: rgba(212, 162, 76, 0.12);
    --ember: #C4572A;
    --ember-light: #D4734A;
    --warm: #A85835;

    /* Dark Section Colors */
    --dark-bg: #1A1714;
    --dark-card: rgba(255, 255, 255, 0.04);
    --dark-card-border: rgba(255, 255, 255, 0.08);
    --dark-text: rgba(255, 255, 255, 0.85);
    --dark-text-muted: rgba(255, 255, 255, 0.55);

    /* Neutral Colors */
    --text-primary: #1C1510;
    --text-secondary: #4A4039;
    --text-muted: #8B7E74;
    --bg-cream: #F6F1E9;
    --bg-white: #FDFCF9;
    --bg-light: #EDE8DE;
    --bg-warm: #F0E9DD;
    --border-light: #DDD6C8;

    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #D94234;

    /* Spacing Scale */
    --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;

    /* Typography */
    --font-primary: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Suez One', 'Frank Ruhl Libre', Georgia, serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(28, 21, 16, 0.06), 0 1px 2px rgba(28, 21, 16, 0.04);
    --shadow-md: 0 4px 12px rgba(28, 21, 16, 0.07);
    --shadow-lg: 0 8px 30px rgba(28, 21, 16, 0.1);
    --shadow-xl: 0 20px 60px rgba(28, 21, 16, 0.14);
    --shadow-gold: 0 4px 20px rgba(212, 162, 76, 0.3);
    --shadow-ember: 0 4px 20px rgba(196, 87, 42, 0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms 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: var(--font-primary);
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-family: var(--font-primary);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: var(--space-lg) auto;
    max-width: 200px;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, left), var(--accent), transparent);
}

.ornament::after {
    --dir: right;
}

.ornament-icon {
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: var(--space-md) auto var(--space-xl);
    border-radius: 1px;
}

/* Pull-quote style for editorial accent */
.pull-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--accent);
    line-height: 1.4;
    max-width: 600px;
    margin: var(--space-2xl) auto;
    text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.9rem 2.25rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.25);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: right 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.35);
    background: var(--primary-dark);
}

.btn-primary:hover::before {
    right: 100%;
}

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

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: right 0.6s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    right: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-service::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: var(--transition-slow);
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-service:hover::after {
    right: 100%;
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: white !important;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-primary-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary-sm::after {
    display: none !important;
}

/* Firelight glow animation for hero CTA */
.firelight-glow {
    animation: fireGlow 4s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% {
        box-shadow: 0 2px 12px rgba(212, 162, 76, 0.3), 0 0 0 0 rgba(212, 162, 76, 0);
    }
    25% {
        box-shadow: 0 4px 24px rgba(212, 162, 76, 0.5), 0 0 0 6px rgba(212, 162, 76, 0.06);
    }
    50% {
        box-shadow: 0 3px 16px rgba(196, 87, 42, 0.35), 0 0 0 4px rgba(196, 87, 42, 0.04);
    }
    75% {
        box-shadow: 0 5px 28px rgba(212, 162, 76, 0.45), 0 0 0 8px rgba(212, 162, 76, 0.08);
    }
}

/* Legacy pulse class redirect */
.pulse {
    animation: fireGlow 4s ease-in-out infinite;
}

/* ========================================
   NAVIGATION
   ======================================== */

/* Gold accent strip at top */
.nav-accent-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--ember), var(--accent));
    z-index: 1001;
}

.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(221, 214, 200, 0.4);
    box-shadow: 0 1px 0 rgba(28, 21, 16, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(28, 21, 16, 0.08);
}

/* Compact navbar on scroll */
.navbar.compact .nav-container {
    height: 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo on LEFT side (appears right in RTL) */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 2;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Nav Links on RIGHT side (appears left in RTL) */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    order: 1;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
    border-radius: 1px;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--secondary);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--text-primary);
    order: 0;
}

.hamburger .material-symbols-outlined {
    font-size: 28px;
}

/* Mobile Menu - Full Screen Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 23, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
    animation: mobileMenuIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mobileMenuIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-md) var(--space-2xl);
    font-weight: 500;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    text-align: center;
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

.mobile-nav-links .btn-primary {
    margin-top: var(--space-lg);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://res.cloudinary.com/dpmeig3hn/image/upload/f_auto,q_auto/v1774785794/Hero_Image_agmlqm.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: var(--space-4xl) var(--space-lg);
    text-align: center;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(26, 23, 20, 0.45) 0%,
        rgba(26, 23, 20, 0.25) 40%,
        rgba(26, 23, 20, 0.55) 100%
    );
}

/* Warm vignette on hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(26, 23, 20, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
}

.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    color: white;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    color: var(--accent-light);
}

/* Thin gold line divider replacing fire icon ornament */
.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto var(--space-lg);
    border-radius: 1px;
}

/* Legacy hero-ornament hidden */
.hero-ornament {
    display: none;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    line-height: 1.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.hero .btn-primary {
    background: var(--accent);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.15rem 2.75rem;
    box-shadow: var(--shadow-gold);
}

.hero .btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 8px 32px rgba(212, 162, 76, 0.5);
}

.cta-subtext {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.45);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.trust-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

section {
    padding: var(--space-5xl) 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: var(--space-sm);
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* Stagger animation utilities */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-reveal.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-reveal.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-reveal.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-reveal.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-reveal.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-reveal.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-reveal.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ABOUT SECTION (Light)
   ======================================== */

.about-section {
    background: var(--bg-cream);
}

.story-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.story-header .section-tag {
    margin-bottom: var(--space-md);
}

.story-header h2 {
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: var(--space-sm);
}

/* Problem/Solution Cards */
.problem-solution {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.problem-card,
.solution-card {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.solution-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(85, 107, 47, 0.3);
}

.solution-card h3,
.solution-card p {
    color: white;
}

.section-icon {
    font-size: 2.75rem;
    margin-bottom: var(--space-md);
    display: block;
}

.problem-card .section-icon {
    color: var(--text-muted);
}

.solution-card .section-icon {
    color: var(--accent-light);
}

.arrow-connector {
    display: flex;
    align-items: center;
    color: var(--accent);
}

.arrow-connector .material-symbols-outlined {
    font-size: 2.5rem;
}

/* About Feature */
.about-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* Subtle warm wash on about image instead of corner accent */
.about-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.15) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(var(--space-lg) * -0.5);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.image-badge .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.25rem;
}

.about-text .section-tag {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text > p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-xl);
    line-height: 1.9;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.feature-list .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ========================================
   PHILOSOPHY SECTION (Dark)
   ======================================== */

.philosophy {
    background: var(--bg-white);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.philosophy h2 {
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.philosophy-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid transparent;
    position: relative;
}

.philosophy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transition: var(--transition-base);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.philosophy-card:hover::after {
    width: 60px;
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition-base);
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(85, 107, 47, 0.25);
}

.philosophy-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: white;
}

.philosophy-card h3 {
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.philosophy-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.85;
}

.philosophy-cta {
    text-align: center;
}

.philosophy-cta .btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.philosophy-cta .btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */

.founder-section {
    background: var(--bg-cream);
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.founder-text .section-tag {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.founder-text h2 {
    margin-bottom: var(--space-lg);
}

.founder-text p {
    font-size: 1.0625rem;
    line-height: 1.95;
    color: var(--text-secondary);
}

.founder-closing {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--primary) !important;
    font-size: 1.125rem !important;
    line-height: 1.85 !important;
    margin-top: var(--space-md);
}

@media (max-width: 1024px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-image::after {
        display: none;
    }

    .founder-text .section-tag {
        display: block;
        text-align: center;
    }

    .founder-text h2 {
        text-align: center;
    }
}

/* ========================================
   SERVICES SECTION (Light)
   ======================================== */

.services-section {
    background: var(--bg-light);
}

.services-section h2 {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.1);
}

/* Warm overlay on service image hover */
.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 21, 16, 0.3) 0%, rgba(196, 87, 42, 0) 50%, transparent 100%);
    pointer-events: none;
    transition: var(--transition-base);
}

.service-card:hover .service-image::after {
    background: linear-gradient(to top, rgba(28, 21, 16, 0.25) 0%, rgba(196, 87, 42, 0.08) 50%, transparent 100%);
}

/* Ribbon badge for "most popular" */
.service-badge {
    position: absolute;
    top: var(--space-md);
    right: 0;
    padding: 0.4rem var(--space-lg) 0.4rem var(--space-md);
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(212, 162, 76, 0.3);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.service-badge::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent;
    border-right-color: #9A7530;
}

.service-content {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content .btn-service {
    margin-top: auto;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon .material-symbols-outlined {
    color: white;
}

.service-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.service-content h3 {
    margin-bottom: var(--space-sm);
}

.service-content > p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    line-height: 1.85;
}

/* Editorial gold dots instead of checkmarks */
.service-features {
    margin-bottom: var(--space-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.service-features .material-symbols-outlined {
    font-size: 0.5rem;
    color: var(--accent);
}

/* Service Special */
.service-special {
    background: var(--secondary);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--accent-light), var(--accent));
}

.service-special .special-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.service-special h3 {
    color: white;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.service-special p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.service-special .btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.service-special .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 162, 76, 0.08);
}

/* Center text variant for service cards */
.service-card.center-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card.center-text .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card.center-text .service-icon .material-symbols-outlined {
    font-size: 28px;
}

/* ========================================
   TESTIMONIALS SECTION (Light) - Carousel
   ======================================== */

.testimonials-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.testimonials-section h2 {
    text-align: center;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-sm) var(--space-sm) var(--space-xl);
    scroll-behavior: smooth;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    min-width: 300px;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Larger decorative quotation mark */
.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    font-family: var(--font-accent);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-pale);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

/* Gold star SVGs */
.testimonial-rating .star-icon {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

/* Fallback for material icons */
.testimonial-rating .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    font-style: normal;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--ember));
    color: white;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.125rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Carousel navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   GALLERY SECTION (Light) - Masonry
   ======================================== */

.gallery-section {
    background: var(--bg-cream);
}

.gallery-section h2 {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: var(--space-md);
}

/* Gallery stage: positioning context for the prev/next paging arrows */
.gallery-stage {
    position: relative;
}

.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 23, 20, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.gallery-nav-arrow:hover {
    background: rgba(26, 23, 20, 0.82);
    transform: translateY(-50%) scale(1.08);
}

.gallery-nav-arrow .material-symbols-outlined {
    font-size: 1.8rem;
}

.gallery-nav-prev { right: 10px; }
.gallery-nav-next { left: 10px; }

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

/* Gallery hover overlay with icon */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    background: rgba(26, 23, 20, 0.35);
}

/* Expand icon on hover */
.gallery-item .gallery-expand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    opacity: 0;
    transition: var(--transition-base);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* Rotating media: each slot holds a media layer; new media fades in over the old one */
.gallery-media {
    position: absolute;
    inset: 0;
}

.gallery-media-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-media-el.is-fading {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-media-el.is-fading.shown {
    opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.05);
}

/* Show the right affordance per media type */
.gallery-item:not(.video) .video-badge { display: none; }
.gallery-item.video .gallery-expand { display: none; }

/* 4 big uniform tiles in a 2x2 grid — every slot is one full cell (always gap-free) */

.gallery-item.video .video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.7;
    transition: var(--transition-base);
    z-index: 2;
}

.gallery-item.video:hover .video-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.video-badge .material-symbols-outlined {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.gallery-lightbox.active {
    display: flex;
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: fixed;
    top: var(--space-xl);
    left: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-base);
    z-index: 3001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-base);
    z-index: 3001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    right: var(--space-xl);
}

.lightbox-next {
    left: var(--space-xl);
}

/* ========================================
   FAQ SECTION (Light)
   ======================================== */

.faq-section {
    background: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.04) 0%, rgba(196, 87, 42, 0.03) 100%);
    border-color: rgba(212, 162, 76, 0.15);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(85, 107, 47, 0.03);
}

.faq-question h3 {
    font-size: 1.0625rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

/* Custom chevron SVG */
.faq-question .faq-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--accent);
    flex-shrink: 0;
}

.faq-question .material-symbols-outlined {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--accent);
    font-size: 1.5rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.85;
}

.faq-item.active .faq-question .material-symbols-outlined,
.faq-item.active .faq-question .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========================================
   CONTACT SECTION (Light)
   ======================================== */

.contact-section {
    background: var(--bg-cream);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-info h2 {
    text-align: right;
    margin-bottom: var(--space-md);
}

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-2xl);
    line-height: 1.85;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.benefit-item:hover {
    border-color: var(--accent-pale);
    box-shadow: var(--shadow-sm);
    transform: translateX(-4px);
}

.benefit-item .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.375rem;
}

.benefit-item span:last-child {
    font-weight: 500;
    font-size: 0.9375rem;
}

.contact-direct {
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.contact-direct p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    direction: ltr;
}

.phone-link:hover {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem var(--space-md);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

/* Warm focus state - gold/amber */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--bg-white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

/* Custom dropdown chevron (RTL: sits on the left) so the select matches the flat fields */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: var(--space-2xl);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B7E74' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left var(--space-md) center;
    background-size: 16px;
}

/* Free-text event details */
.form-group textarea {
    min-height: 120px;
    line-height: 1.6;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: var(--space-md) 0 var(--space-xs);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-consent label {
    cursor: pointer;
}

.form-consent a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

/* Ember-colored submit button */
.btn-submit {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    background: var(--ember);
    box-shadow: var(--shadow-ember);
}

.btn-submit:hover {
    background: var(--ember-light);
    box-shadow: 0 6px 24px rgba(196, 87, 42, 0.35);
}

.btn-submit .material-symbols-outlined {
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.btn-submit:hover .material-symbols-outlined {
    transform: translateX(-4px);
}

/* Submit loading state */
.btn-submit.loading span {
    transition: opacity 0.3s ease;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-footer .material-symbols-outlined {
    font-size: 0.875rem;
}

/* ========================================
   FOOTER (Dark & Warm)
   ======================================== */

footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1E1B17 100%);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
}

/* Gold accent line at top of footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--ember), var(--accent));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin-bottom: 0;
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social icons with actual SVGs */
.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ========================================
   FLOATING CTA (Mobile - Pill style)
   ======================================== */

.floating-cta {
    display: none;
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
}

.btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--ember), var(--ember-light));
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 24px rgba(196, 87, 42, 0.4);
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(196, 87, 42, 0.4); }
    50% { box-shadow: 0 6px 32px rgba(196, 87, 42, 0.55); }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition-base);
    animation: whatsappBreathe 3s ease-in-out infinite;
}

@keyframes whatsappBreathe {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: var(--space-lg);
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 21, 16, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.modal-content h3 {
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.modal-content p {
    margin-bottom: var(--space-xl);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS - Varied
   ======================================== */

.reveal-on-scroll {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.reveal-up {
    transform: translateY(30px);
}

.reveal-on-scroll.reveal-right {
    transform: translateX(-30px);
}

.reveal-on-scroll.reveal-left {
    transform: translateX(30px);
}

.reveal-on-scroll.reveal-scale {
    transform: scale(0.95);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Delay utilities for staggered reveals */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .services-grid,
    .about-feature,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-feature {
        gap: var(--space-2xl);
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }

    .image-badge {
        right: var(--space-lg);
    }

    /* Tablet: keep the big 2x2 tiles, a touch shorter */
    .gallery-grid {
        grid-auto-rows: 340px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-3xl) 0;
    }

    .nav-accent-strip {
        height: 2px;
    }

    .navbar {
        top: 2px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo {
        order: 1;
    }

    .hero {
        min-height: 92vh;
        padding-top: calc(72px + var(--space-2xl));
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero p {
        max-width: 100%;
    }

    .trust-items {
        gap: var(--space-xl);
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        min-width: 100px;
    }

    .problem-solution {
        flex-direction: column;
    }

    .arrow-connector {
        transform: rotate(90deg);
    }

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

    /* Mobile testimonials */
    .testimonial-card {
        min-width: 280px;
        max-width: 300px;
        aspect-ratio: 1 / 1;
    }

    /* Phones: one big full-width photo per row */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        text-align: center;
    }

    .floating-cta {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .scroll-indicator {
        display: none;
    }

    /* Lightbox mobile adjustments */
    .lightbox-close {
        top: var(--space-md);
        left: var(--space-md);
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        right: var(--space-md);
    }

    .lightbox-next {
        left: var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }

    .trust-bar {
        padding: var(--space-md) 0;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .trust-label {
        font-size: 0.6875rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .contact-form {
        padding: var(--space-lg);
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-content > * {
        opacity: 1;
        transform: none;
    }

    .stagger-reveal > * {
        opacity: 1;
        transform: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Screen reader only */
.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;
}

/* ========================================
   MENU / WORKSHOP STYLES
   ======================================== */

.menu-cta-container {
    text-align: center;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 162, 76, 0.2);
}

.small-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.menu-breakdown {
    padding: var(--space-xl) 0;
}

.menu-category {
    background: var(--bg-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.menu-category:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.375rem;
    font-family: var(--font-display);
}

.category-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--accent-light);
    display: inline-block;
    padding-bottom: 4px;
}

.menu-items-grid {
    display: grid;
    gap: var(--space-md);
}

.menu-list-styled li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--text-secondary);
}

.menu-list-styled li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.menu-list-styled strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Service grid override for auto-fit on subpages (events/workshops) */
.services-section .services-grid.services-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* Service card base for events/workshops pages */
.service-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Menu Modal */
.menu-modal-content {
    max-width: 800px;
    width: 90%;
    text-align: right;
}

.menu-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: right;
}

.menu-preview img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-details h4 {
    color: var(--primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    font-family: var(--font-display);
}

.menu-details ul {
    list-style: disc;
    padding-right: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.menu-details li {
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.close-modal {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--error);
}

@media (max-width: 768px) {
    .menu-preview {
        grid-template-columns: 1fr;
    }

    .menu-preview img {
        height: 200px;
    }
}

/* ========================================
   MOBILE TOUCH FEEDBACK
   ======================================== */

@media (hover: none) {
    .btn-primary:active,
    .btn-secondary:active,
    .btn-outline:active,
    .btn-service:active,
    .btn-floating:active {
        transform: scale(0.97);
    }

    .service-card:active,
    .philosophy-card:active,
    .testimonial-card:active,
    .gallery-item:active {
        transform: scale(0.98);
    }
}

/* ========================================
   "NEW" BADGE VARIANT
   ======================================== */

.service-badge.badge-new {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

.service-badge.badge-new::after {
    border-right-color: var(--primary-dark);
}

/* ========================================
   GARDEN HOSTING PAGE
   ======================================== */

/* Shuk Table Section */
.garden-shuk-section {
    background: var(--bg-cream);
    padding: var(--space-5xl) 0;
}

.garden-shuk-section h2 {
    text-align: center;
}

.shuk-intro {
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.shuk-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.shuk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

/* Two-column layout: photo left, menu cards right */
.shuk-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.shuk-photo {
    position: sticky;
    top: 100px;
}

.shuk-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    max-height: 700px;
}

.shuk-photo img + img {
    margin-top: var(--space-lg);
}

.shuk-menu-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.shuk-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.shuk-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition-base);
}

.shuk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.shuk-card:hover::before {
    opacity: 1;
}

.shuk-card .card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-size: 1.5rem;
}

.shuk-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.shuk-card ul {
    list-style: none;
    padding: 0;
}

.shuk-card ul li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shuk-card ul li .material-symbols-outlined {
    font-size: 0.85rem;
    color: var(--primary-light);
}

/* Audience Section */
.garden-audience-section {
    background: #556B2F;
    padding: var(--space-5xl) 0;
    color: var(--dark-text);
    text-align: center;
}

.garden-audience-section h2 {
    text-align: center;
}

.garden-audience-section .section-intro {
    color: var(--dark-text-muted);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.audience-card {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-base);
}

.audience-card:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.audience-card .card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(85, 107, 47, 0.15);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    color: var(--primary-light);
    font-size: 1.8rem;
}

.audience-card h3 {
    font-family: var(--font-display);
    color: var(--dark-text);
    margin-bottom: var(--space-sm);
}

.audience-card p {
    color: var(--dark-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Add-Ons Section */
.garden-addons-section {
    background: var(--bg-white);
    padding: var(--space-5xl) 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: var(--space-2xl) auto 0;
}

.addon-card {
    position: relative;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    overflow: hidden;
}

.addon-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.addon-card:hover::after {
    transform: scaleX(1);
}

.addon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.addon-card .addon-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--primary);
}

.addon-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.addon-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.addon-tag {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--accent-pale);
    color: var(--warm);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Garden CTA banner */
.garden-cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: var(--space-3xl) 0;
    text-align: center;
    color: #fff;
}

.garden-cta-banner h2 {
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: var(--space-sm);
}

.garden-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
}

.garden-cta-banner .btn-secondary {
    border-color: var(--accent);
    color: var(--accent);
}

.garden-cta-banner .btn-secondary:hover {
    background: var(--accent);
    color: var(--secondary);
}

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

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

    .shuk-layout {
        grid-template-columns: 1fr;
    }

    .shuk-photo {
        position: static;
    }

    .shuk-photo img {
        max-height: 400px;
    }
}
