/**
 * ESSENTIALS CREATIVE - UNIFIED STYLESHEET
 * Single source of truth for all site styles
 * Mobile-first, performance-optimized, accessible
 * Version 2.0 | 2025
 */

/* =====================================================
   TABLE OF CONTENTS
   =====================================================
   1. Design System (Variables)
   2. Font Declarations
   3. Reset & Base Styles
   4. Typography
   5. Layout & Grid
   6. Header & Navigation
   7. Hero Sections
   8. Sections & Components
   9. Gallery & Portfolio
   10. Lightbox
   11. Forms & Contact
   12. Buttons & CTAs
   13. Utilities
   14. Mobile Responsive
   ===================================================== */


/* =====================================================
   1. DESIGN SYSTEM - CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    /* Brand Colors - Enhanced palette with semantic tokens */
    --primary: #2c5f2d;
    --primary-50: #f0f7f0;
    --primary-100: #d9e8d9;
    --primary-200: #b3d1b3;
    --primary-300: #8dba8d;
    --primary-400: #67a367;
    --primary-500: #2c5f2d;
    --primary-600: #244f24;
    --primary-700: #1a4d1a;
    --primary-800: #0d3d0d;
    --primary-900: #062d06;
    --primary-light: #3d7a3e;
    --primary-dark: #1a4d1a;
    --primary-darker: #0d3d0d;
    
    --accent: #97bf0d;
    --accent-light: #b4d645;
    --accent-dark: #7a9a0a;

    /* Earth Tone Accents - Inspired by Tapestry Palette */
    --accent-terracotta: #d4705d;
    --accent-ochre: #e8a756;
    --accent-sage: #8b9d7c;
    --accent-rust: #b8665d;
    --accent-clay: #c19277;

    --secondary: #6b7280;
    --secondary-light: #9ca3af;
    --secondary-dark: #374151;

    /* Text Colors - Enhanced contrast and accessibility */
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --text-white: #ffffff;
    --text-muted: #d1d5db;

    /* Background Colors - Refined system */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-lighter: #fafbfc;
    --bg-gray: #f3f4f6;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --bg-cream: #fefefe;
    --bg-dark: #1a1a1a;
    --border: #e5e7eb;
    --border-light: #f0f0f0;

    /* Spacing Scale (8px base unit) - Granular with fluid values */
    --space-2xs: 0.25rem;  /* 4px */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 5rem;     /* 80px */
    --space-5xl: 6rem;     /* 96px */

    /* Fluid Spacing - Responsive section padding */
    --space-section-mobile: 2.5rem;   /* 40px */
    --space-section-tablet: 4rem;     /* 64px */
    --space-section-desktop: 6rem;    /* 96px */
    --space-section: clamp(2.5rem, 8vw, 6rem);  /* Fluid 40-96px */

    /* Typography Scale - Apercu Font System */
    --font-body: 'Apercu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Apercu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Font Sizes - Fluid responsive typography with clamp() */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-md: 1.125rem;     /* 18px */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: clamp(1.125rem, 1.75vw, 1.35rem);       /* 18-21px */
    --font-size-2xl: clamp(1.125rem, 2vw, 1.35rem);   /* 18-21px */
    --font-size-3xl: clamp(1.375rem, 2.5vw, 1.625rem);    /* 22-26px */
    --font-size-4xl: clamp(1.625rem, 3vw, 2rem);        /* 26-32px */
    --font-size-5xl: clamp(2rem, 4vw, 2.5rem);     /* 32-40px */
    --font-size-6xl: clamp(2.5rem, 5vw, 3rem);      /* 40-48px */
    
    /* Font Weights - Enhanced range */
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Line Heights - Better readability */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Border Radius - Modern scale */
    --radius-none: 0;
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;

    /* Enhanced Shadow System */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 20px rgba(44, 95, 45, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(44, 95, 45, 0.4);

    /* Enhanced Transition System */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-ease-out: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    --transition-ease-in: all 0.3s cubic-bezier(0.4, 0, 1, 1);

    /* Gradient Definitions - Earth Tone Accents */
    --gradient-warm: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--accent-ochre) 100%);
    --gradient-earth: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--accent-rust) 0%, var(--accent-clay) 100%);
    --gradient-subtle: linear-gradient(to bottom, var(--bg-lighter) 0%, white 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);

    /* Layout */
    --container-max: 1440px;
    --content-max: 1200px;
    --content-narrow: 800px;
    --header-height: 80px;
    --header-height-mobile: 64px;

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-overlay: 5000;
    --z-modal: 9000;
    --z-toast: 10000;
}


/* =====================================================
   2. FONT DECLARATIONS
   ===================================================== */
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/apercu/apercu_regular_pro.woff2') format('woff2'),
         url('../fonts/apercu/apercu_regular_pro.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/apercu/apercu_regular_italic_pro.woff2') format('woff2'),
         url('../fonts/apercu/apercu_regular_italic_pro.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/apercu/apercu_medium_pro.woff2') format('woff2'),
         url('../fonts/apercu/apercu_medium_pro.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/apercu/apercu_medium_italic_pro.woff2') format('woff2'),
         url('../fonts/apercu/apercu_medium_italic_pro.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/apercu/apercu_bold_pro.woff2') format('woff2'),
         url('../fonts/apercu/apercu_bold_pro.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =====================================================
   3. RESET & BASE STYLES (MOBILE-FIRST)
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--leading-normal);
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-variant-ligatures: common-ligatures;
    overflow-x: hidden;
    font-display: swap;
}

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

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
}

ul, ol {
    list-style: none;
}


/* =====================================================
   4. TYPOGRAPHY - REFINED HIERARCHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-tight);
    margin: 0 0 var(--space-md) 0;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.04em;
    line-height: var(--leading-none);
}

h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.02em;
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin: 0;
    line-height: var(--leading-relaxed);
    color: var(--text-light);
}

/* Enhanced Apercu Typography Utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-md { font-size: var(--font-size-md); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }

/* Font Weight Utilities */
.font-thin { font-weight: var(--font-weight-thin); }
.font-extralight { font-weight: var(--font-weight-extralight); }
.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }
.font-black { font-weight: var(--font-weight-black); }

/* Line Height Utilities */
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

/* Apercu-specific font classes */
.font-apercu {
    font-family: var(--font-body);
}

.font-apercu-heading {
    font-family: var(--font-heading);
}

/* Font Weight */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Line Height */
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

/* Text Colors */
.text-dark { color: var(--text-dark); }
.text-medium { color: var(--text-medium); }
.text-light { color: var(--text-light); }
.text-lighter { color: var(--text-lighter); }
.text-white { color: var(--text-white); }
.text-primary { color: var(--primary); }


/* =====================================================
   5. LAYOUT & GRID - REFINED SPACING
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.content-width {
    max-width: var(--content-max);
    margin: 0 auto;
}

.content-narrow {
    max-width: var(--content-narrow);
    margin: 0 auto;
}

section {
    padding: var(--space-3xl) 0;
    position: relative;
}

section:first-of-type {
    padding-top: var(--space-4xl);
}

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

.section-title {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--text-medium);
    line-height: var(--leading-relaxed);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Section Backgrounds */
.section-light {
    background: var(--bg-white);
}

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

.section-accent {
    background: var(--bg-lighter);
}


/* =====================================================
   6. HEADER & NAVIGATION - REFINED
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: var(--header-height-mobile);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    height: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
    z-index: calc(var(--z-header) + 1);
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: var(--transition);
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-medium);
    padding: var(--space-sm) 0;
    position: relative;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu - Enhanced */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-medium);
    transition: all var(--transition-fast);
}

.nav-dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(4px);
}

.nav-dropdown-content a:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* Mobile Hamburger Menu */
.hamburger-nav {
    display: block;
}

.hamburger-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger-menu {
    position: fixed;
    top: var(--header-height-mobile);
    right: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - var(--header-height-mobile));
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-xl) var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
}

.hamburger-menu.active {
    transform: translateX(0);
}

.hamburger-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.hamburger-link:hover,
.hamburger-link.active {
    color: var(--primary);
    padding-left: var(--space-xs);
}


/* =====================================================
   7. HERO SECTIONS
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    margin-top: var(--header-height-mobile);
    width: 100%;
}

/* Enhanced hero image positioning */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Improved image positioning for better visibility */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.9) saturate(1.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.hero-slide.active img {
    filter: brightness(0.95) saturate(1.3) contrast(1.15);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        margin-top: var(--header-height-mobile);
    }
    
    .hero-slide img {
        object-position: center center;
        filter: brightness(0.85) saturate(1.1) contrast(1.05);
    }
    
    .hero-slide.active img {
        filter: brightness(0.9) saturate(1.2) contrast(1.1);
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .hero-slide img {
        object-position: center center;
        filter: brightness(0.95) saturate(1.3) contrast(1.2);
    }
    
    .hero-slide.active img {
        filter: brightness(1) saturate(1.4) contrast(1.25);
    }
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

/* Hero Title Specific Styling */
.hero h1 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 300px;
    width: 80%;
    margin: 0 auto var(--space-lg);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

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

.hero-tagline {
    font-size: var(--font-size-md);
    font-weight: 300;
    color: white;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-cta {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    background: var(--primary);
    color: white;
    font-size: var(--font-size-md);
    font-weight: 600;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 2px solid transparent;
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-cta:active {
    transform: translateY(-1px) scale(0.99);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: var(--font-size-sm);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: var(--space-xs) auto 0;
}

/* Hero Slideshow Navigation */
.hero-dots {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    border-color: white;
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

/* Mobile responsive adjustments for hero dots */
@media (max-width: 768px) {
    .hero-dots {
        bottom: 5rem;
        gap: 0.5rem;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }
    
    .hero-dot.active {
        transform: scale(1.3);
    }
    
    .hero-dot:hover {
        transform: scale(1.2);
    }
}


/* =====================================================
   8. TAPESTRY DESIGNS PAGE
   ===================================================== */
.tapestry-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.tapestry-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.tapestry-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.tapestry-gallery {
    padding: 4rem 0;
    background: var(--bg-white);
}

.tapestry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tapestry-item {
    text-align: center;
    cursor: pointer;
}

.tapestry-card {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.tapestry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.tapestry-front,
.tapestry-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tapestry-back {
    transform: rotateY(180deg);
}

.tapestry-card:hover .tapestry-front {
    transform: rotateY(-180deg);
}

.tapestry-card:hover .tapestry-back {
    transform: rotateY(0deg);
}

.tapestry-front img,
.tapestry-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tapestry-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.flip-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tapestry-card:hover .flip-indicator {
    opacity: 1;
}

.flip-arrow {
    font-size: 1.2rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tapestry-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tapestry-plant {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Sales Section */
.tapestry-sales {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.sales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.sales-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0.25rem;
}

.period {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-icon {
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tapestry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select[multiple] {
    height: 120px;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
}

.contact-method strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tapestry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tapestry-card {
        height: 300px;
    }
    
    .sales-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .tapestry-hero {
        padding: 4rem 0 3rem;
    }
}

/* =====================================================
   9. SECTIONS & COMPONENTS
   ===================================================== */
.about-section,
.project-intro {
    background: var(--bg-white);
    padding: var(--space-4xl) var(--space-md);
}

.about-section h1,
.project-intro h1 {
    font-size: var(--font-size-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.about-content,
.project-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p,
.project-intro-content p {
    font-size: var(--font-size-md);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    text-align: center;
}

.core-themes,
.featured-plants {
    background: var(--bg-lighter);
    padding: var(--space-4xl) var(--space-md);
}

.themes-grid,
.plants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.theme-item,
.plant-item {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.theme-item:hover,
.plant-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.theme-item h3,
.plant-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.plant-item h4 {
    font-size: var(--font-size-sm);
    font-style: italic;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.theme-item p,
.plant-item p {
    font-size: var(--font-size-base);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    text-align: left;
}


/* =====================================================
   9. GALLERY & PORTFOLIO - TIGHTENED
   ===================================================== */
.portfolio-grid,
.tapestries-grid,
.exhibition-gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.375rem !important;
    margin-top: var(--space-xl);
    align-items: flex-start !important;
    justify-content: center !important;
}

.portfolio-item,
.tapestry-item,
.exhibition-gallery-item {
    position: relative;
    width: 140px !important;
    height: 140px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bg-light);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.portfolio-item::before,
.tapestry-item::before,
.exhibition-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

.portfolio-item:hover,
.tapestry-item:hover,
.exhibition-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item:hover::before,
.tapestry-item:hover::before,
.exhibition-gallery-item:hover::before {
    opacity: 1;
}

.portfolio-item img,
.tapestry-item img,
.exhibition-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover img,
.tapestry-item:hover img,
.exhibition-gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery Loading States */
.portfolio-item img[loading="lazy"],
.tapestry-item img[loading="lazy"],
.exhibition-gallery-item img[loading="lazy"] {
    background: var(--bg-light);
}


/* =====================================================
   10. LIGHTBOX
   ===================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

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

.lightbox-prev {
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}


/* =====================================================
   11. FORMS & CONTACT
   ===================================================== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e5e7eb" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e5e7eb" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e5e7eb" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 0;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--text-medium);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-lighter);
    font-weight: var(--font-weight-normal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.15);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.form-input:hover,
.form-textarea:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.95);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: var(--leading-relaxed);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Enhanced Contact Info Styling */
.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(44, 95, 45, 0.05);
    border: 1px solid rgba(44, 95, 45, 0.1);
}

.contact-info a:hover {
    color: var(--primary-dark);
    background: rgba(44, 95, 45, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info svg {
    transition: transform 0.3s ease;
}

.contact-info a:hover svg {
    transform: scale(1.1);
}

/* Social Media Icons */
.contact-info .social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-info .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-medium);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info .social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
    }
}
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* =====================================================
   12. BUTTONS & CTAs
   ===================================================== */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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


/* =====================================================
   SERVICE CARDS - MINIMAL DESIGN
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    padding: 2rem 1rem;
    text-align: left;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.service-card:hover {
    border-bottom-color: var(--text-dark);
}

.service-icon {
    display: none;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-card {
        padding: 2rem;
    }
}


/* Service Grid Utilities */
.services-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .services-simple-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   ABOUT SECTION - MINIMAL LAYOUT
   ===================================================== */
.mission-highlight {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 4rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-col {
    background: transparent;
    padding: 0;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.featured-projects-highlight {
    text-align: center;
    margin: 4rem 0;
}

.project-tags {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.project-tag {
    background: transparent;
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-light);
    border: none;
    transition: color var(--transition);
}

.project-tag:hover {
    color: var(--text-dark);
}

.services-section-wrapper {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .mission-highlight {
        padding: 2rem;
    }

    .mission-text {
        font-size: 1.25rem;
    }

    .about-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-col {
        padding: 1.5rem;
    }
}


/* =====================================================
   HERO ENHANCEMENTS - MINIMAL
   ===================================================== */
.hero-content-main {
    max-width: 900px;
    text-align: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--text-dark);
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

.btn-hero-primary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/* =====================================================
   VISUAL ENHANCEMENTS - MINIMAL
   ===================================================== */
/* Section Title Decoration - Removed */
.section-title::after {
    display: none;
}

/* Alternating Section Backgrounds - Subtle */
.section-alternate {
    background: transparent;
}

/* Drop Cap - Removed */
.drop-cap::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    color: inherit;
    font-weight: inherit;
}


/* =====================================================
   ANIMATIONS - DISABLED FOR MINIMAL DESIGN
   ===================================================== */
.fade-in-up {
    animation: none;
    opacity: 1;
}

/* Stagger animation - Disabled */
.stagger-children > * {
    opacity: 1;
    animation: none;
}


/* =====================================================
   13. UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }


/* =====================================================
   14. MOBILE RESPONSIVE
   ===================================================== */

/* Small Mobile (375px+) */
@media (min-width: 375px) {
    :root {
        --font-size-3xl: 2.25rem;
        --font-size-4xl: 2.75rem;
    }

    .hero-logo {
        max-width: 350px;
    }
}

/* Mobile Landscape (480px+) */
@media (min-width: 480px) {
    /* Flexbox galleries - no grid-template-columns needed */

    .logo img {
        height: 70px;
        max-width: 280px;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    :root {
        --header-height-mobile: 80px;
        --font-size-3xl: 2.5rem;
        --font-size-4xl: 3rem;
    }

    .header {
        height: var(--header-height);
    }

    .logo img {
        height: 85px;
        max-width: 320px;
    }

    .hero {
        margin-top: var(--header-height);
    }

    .hero-logo {
        max-width: 450px;
    }

    .hero-tagline {
        font-size: var(--font-size-lg);
    }

    .nav-menu {
        display: flex;
    }

    .hamburger-nav {
        display: none;
    }

    /* Flexbox galleries - no grid-template-columns needed */

    .themes-grid,
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    :root {
        --font-size-3xl: 3rem;
        --font-size-4xl: 3.5rem;
    }

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

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

    .hero-logo {
        max-width: 560px;
    }

    /* Flexbox galleries - no grid-template-columns needed */

    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    :root {
        --font-size-4xl: 4rem;
    }

    /* Flexbox galleries - no grid-template-columns needed */
}


/* =====================================================
   LOADING STATE
   ===================================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow);
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* =====================================================
   ACCESSIBILITY
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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