/* ============================================
   KRITSA ROOTS - Premium Stylesheet
   Brand Colors: Olive, Earth, Terracotta, Sage
   Typography: Cormorant Garamond + Lora
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --olive-dark: #4a5a2f;
    --olive: #6b7d4a;
    --olive-light: #8fa05f;
    --sage: #7fb3a0;
    --sage-light: #a8d4c6;
    --terracotta: #c05a4a;
    --terracotta-dark: #a04a3a;
    --earth-dark: #3e2723;
    --earth: #5d4037;
    --earth-medium: #8d6e63;
    --earth-light: #bcaaa4;
    --cream: #f5f1e8;
    --cream-dark: #eae5d9;
    --white: #ffffff;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.08);
    --shadow-md: 0 4px 16px rgba(62, 39, 35, 0.12);
    --shadow-lg: 0 8px 32px rgba(62, 39, 35, 0.16);
    --shadow-xl: 0 16px 48px rgba(62, 39, 35, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--earth-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

em {
    font-style: italic;
    color: var(--terracotta);
}

strong {
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.olive-branch-loader {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-sm);
}

.olive-branch-loader .leaf {
    animation: leafSway 2s ease-in-out infinite;
    transform-origin: center;
}

.olive-branch-loader .leaf-1 { animation-delay: 0s; }
.olive-branch-loader .leaf-2 { animation-delay: 0.3s; }
.olive-branch-loader .leaf-3 { animation-delay: 0.6s; }

.olive-branch-loader .olive {
    animation: olivePulse 1.5s ease-in-out infinite;
}

.olive-branch-loader .olive-2 { animation-delay: 0.5s; }

@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes olivePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--earth);
    letter-spacing: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--sage);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-icon {
    transition: var(--transition-base);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--earth-dark);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--olive);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--earth-dark);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition-base);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--olive);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--earth-dark);
    transition: var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--earth-dark);
    border-color: var(--earth);
}

.btn-outline:hover {
    background: var(--earth-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(93, 64, 55, 0.75) 50%, rgba(107, 125, 74, 0.7) 100%),
        url('https://images.unsplash.com/photo-1584949091033-5074e7daf4b8?w=1920&h=1080&fit=crop') center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(127, 179, 160, 0.2) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xxl) var(--space-md);
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    color: var(--sage-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.9;
    opacity: 0.95;
    animation: fadeIn 1s ease 0.8s both;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: fadeIn 1s ease 1s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1.2s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage-light);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

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

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

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--space-xxl) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
}

.section-label-light {
    color: var(--sage-light);
}

.section-title {
    color: var(--earth-dark);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--earth);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    background: var(--white);
}

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

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

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

.story-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
    transition: var(--transition-base);
}

.story-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.story-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
    color: var(--olive);
}

.story-card-icon svg {
    width: 100%;
    height: 100%;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--earth-dark);
}

.story-card p {
    color: var(--earth);
    margin-bottom: var(--space-sm);
}

.story-card p:last-child {
    margin-bottom: 0;
}

.story-visual {
    position: relative;
    overflow: hidden;
}

.story-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.story-icon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    overflow: hidden;
}

.story-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.story-svg-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-xs);
}

.story-icon-card span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--earth-dark);
    font-weight: 500;
}

.story-quote {
    background: var(--earth-dark);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 10;
}

.story-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   NAME SECTION
   ============================================ */
.name-section {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    text-align: center;
    padding: var(--space-xl) 0;
}

.name-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.name-part {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
}

.name-kritsa {
    color: var(--earth-dark);
}

.name-plus {
    font-size: 2rem;
    color: var(--earth-medium);
}

.name-roots {
    color: var(--olive);
}

.name-meanings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: left;
}

.meaning h4 {
    font-size: 1.3rem;
    color: var(--terracotta);
    margin-bottom: var(--space-xs);
}

.meaning p {
    color: var(--earth);
}

.name-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--earth-dark);
}

.name-tagline strong {
    color: var(--terracotta);
}

/* ============================================
   ROOTS SECTION
   ============================================ */
.roots-section {
    background: var(--white);
}

.roots-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.roots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.root-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.root-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--olive) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.root-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.root-card:hover::before {
    transform: scaleX(1);
}

.root-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream-dark);
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    line-height: 1;
}

.root-icon {
    width: 60px;
    height: 60px;
    color: var(--olive);
    margin-bottom: var(--space-md);
}

.root-icon svg {
    width: 100%;
    height: 100%;
}

.root-card h3 {
    font-size: 1.5rem;
    color: var(--earth-dark);
    margin-bottom: var(--space-sm);
}

.root-card p {
    color: var(--earth);
    margin-bottom: var(--space-md);
}

.root-message {
    background: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--earth-dark);
    border-left: 3px solid var(--terracotta);
}

.root-message strong {
    color: var(--terracotta);
}

/* ============================================
   PROMISE SECTION
   ============================================ */
.promise-section {
    position: relative;
    color: var(--white);
    padding: var(--space-xxl) 0;
}

.promise-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--earth-dark) 0%, var(--earth) 50%, var(--olive-dark) 100%);
}

.promise-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promise-title {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.promise-item {
    text-align: center;
    padding: var(--space-md);
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

.promise-item h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--sage-light);
}

.promise-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    background: var(--cream);
}

.packages-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-featured {
    border-color: var(--olive);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.3rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.package-header {
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
}

.package-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: var(--space-xs);
}

.package-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--earth-dark);
    margin-bottom: var(--space-xs);
}

.package-tagline {
    color: var(--earth-medium);
    font-size: 0.95rem;
}

.package-price {
    text-align: center;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--terracotta);
    font-weight: 700;
    line-height: 1;
}

.price-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--earth-medium);
    font-weight: 400;
}

.package-features {
    flex: 1;
    margin-bottom: var(--space-md);
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream);
    color: var(--earth);
    font-size: 0.95rem;
}

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

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-card .btn {
    margin-top: auto;
}

/* ============================================
   GIFTS SECTION
   ============================================ */
.gifts-section {
    background: var(--white);
}

.gifts-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gift-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.gift-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-bottom: 1px solid rgba(107, 125, 74, 0.1);
}

.gift-icon svg {
    width: 60px;
    height: 60px;
    transition: var(--transition-slow);
}

.gift-card:hover .gift-icon svg {
    transform: scale(1.1);
}

.gift-content {
    padding: var(--space-md);
}

.gift-content h4 {
    font-size: 1.1rem;
    color: var(--earth-dark);
    margin-bottom: var(--space-xs);
}

.gift-content p {
    font-size: 0.9rem;
    color: var(--earth);
    margin-bottom: 0;
}

/* ============================================
   GROWERS SECTION
   ============================================ */
.growers-section {
    background: var(--cream);
}

.growers-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.growers-banner {
    background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth) 100%);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.growers-banner h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--sage-light);
}

.growers-banner p {
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 800px;
}

.growers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.grower-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.grower-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.grower-image {
    height: 200px;
    overflow: hidden;
}

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

.grower-card:hover .grower-image img {
    transform: scale(1.05);
}

/* Grower Initial Circle (for privacy - no photos) */
.grower-initial {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.grower-initial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(30deg);
}

.grower-initial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta), var(--sage));
}

.grower-card:hover .grower-initial {
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--earth) 100%);
}

.grower-content {
    padding: var(--space-md);
}

.grower-content h4 {
    font-size: 1.2rem;
    color: var(--earth-dark);
    margin-bottom: var(--space-xs);
}

.grower-meta {
    font-size: 0.85rem;
    color: var(--sage);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.grower-content p:last-child {
    color: var(--earth);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
    position: relative;
    padding: var(--space-xxl) 0;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(107, 125, 74, 0.9) 0%, rgba(127, 179, 160, 0.9) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop') center/cover;
}

.vision-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.vision-list {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.vision-list li {
    font-size: 1.1rem;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-list li::before {
    content: '🫒';
    position: absolute;
    left: 0;
    top: var(--space-sm);
}

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

.vision-closing {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
}

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

.contact-intro {
    font-size: 1.1rem;
    color: var(--earth);
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

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

.contact-item strong {
    display: block;
    color: var(--earth-dark);
    margin-bottom: 2px;
}

.contact-item a:hover {
    color: var(--terracotta);
}

.contact-quote {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
}

.contact-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--earth);
    line-height: 1.7;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--earth-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--earth-dark);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(127, 179, 160, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235d4037' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--earth-medium);
    margin-top: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--earth-dark);
    color: var(--white);
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-content {
    padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0;
}

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

.footer-col h4 {
    font-size: 1rem;
    color: var(--sage-light);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--sage);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .package-featured {
        transform: none;
    }
    
    .package-featured:hover {
        transform: translateY(-8px);
    }
    
    .gifts-grid,
    .growers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xxl) var(--space-md);
        gap: var(--space-md);
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .story-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .story-quote {
        margin-top: var(--space-md);
    }
    
    .name-meanings {
        grid-template-columns: 1fr;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
    
    .gifts-grid,
    .growers-grid {
        grid-template-columns: 1fr;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-xxl: 5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .name-title {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .name-plus {
        display: none;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background: var(--sage);
    color: var(--white);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid var(--sage);
    outline-offset: 2px;
}
