/* ==========================================================================
   omâmâwaw herbal - Slow Herbalism Crafted in Ceremony
   A sacred digital space honoring Indigenous plant medicine traditions
   ========================================================================== */

/* CSS Custom Properties - Earth Tones & Sacred Palette */
:root {
    /* Primary Colors - Earthy Sage/Olive */
    --sage-deep: #5A5F44;
    --sage-primary: #7A7F5E;
    --sage-light: #8B8F6E;
    --sage-muted: #9DA18A;
    
    /* Secondary Colors - Soft Blush/Rose */
    --blush-light: #F5EBE4;
    --blush-primary: #E8D5C4;
    --blush-warm: #DCC8B6;
    --blush-deep: #C9B5A3;
    
    /* Neutral Tones */
    --cream: #FAF7F4;
    --cream-warm: #F7F2ED;
    --earth-brown: #8B7355;
    --earth-dark: #5C4A36;
    --charcoal: #3D3D3D;
    --charcoal-light: #5A5A5A;
    
    /* Text Colors */
    --text-dark: #3D3D3D;
    --text-medium: #5A5A5A;
    --text-light: #F5EBE4;
    --text-muted: #8B8B8B;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing - Harmonious scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.75rem;   /* 28px */
    --space-lg: 3rem;      /* 48px */
    --space-xl: 5rem;      /* 80px */
    --space-xxl: 7rem;     /* 112px */
    --space-section: 6rem; /* 96px - between sections */
    
    /* Transitions */
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.25s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(93, 74, 54, 0.08);
    --shadow-medium: 0 8px 40px rgba(93, 74, 54, 0.12);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: 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-serif);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

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

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--sage-deep);
    letter-spacing: 0.05em;
}

.section-title.light {
    color: var(--text-light);
}

.section-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto var(--space-lg);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: transparent;
    /* Use transform instead of background transition for better mobile performance */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    will-change: background-color;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav.scrolled {
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
    pointer-events: none;
}

/* Hide close button and menu footer on desktop */
.nav-close,
.nav-menu-footer {
    display: none;
}

/* Desktop nav-links styling */
.nav-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(122, 127, 94, 0.4) 0%, rgba(90, 95, 68, 0.7) 100%),
        url('https://sspark.genspark.ai/cfimages?u1=MHFUXZFEk8d6NqzXuJ31xj41P4yxc840MNLe7whkE6SAtD6W0MuoNqZByzkoUc0o%2F%2BZ4WwiUJj3y4fPrWXVLuyxgmHyJydOE15btPgN7LGmn695P1zxO11uGsbDAbc%2B5pBBvQEHm60O8TQXcLudPahh2NmV7Uax0WUBd87Jz5gQT6Q%3D%3D&u2=Mjj75A46IR6YYdj4&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(90, 95, 68, 0.2) 0%, 
        rgba(90, 95, 68, 0.4) 50%, 
        rgba(90, 95, 68, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: var(--space-md);
    padding-top: 80px;
    max-width: 800px;
}

.hero-logo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-divider {
    margin: var(--space-sm) 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-botanical {
    color: var(--text-light);
    opacity: 0.8;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    opacity: 0.9;
    max-width: 480px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--transition-fast);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateY(5px);
}

.hero-scroll i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   Welcome Section
   ========================================================================== */

.welcome {
    padding: var(--space-section) 0;
    background: var(--cream);
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-intro {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--sage-deep);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.welcome-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.85;
}

.welcome-text p {
    margin-bottom: var(--space-md);
}

.welcome-blessing {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--sage-primary);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--blush-primary);
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */

.philosophy {
    position: relative;
    padding: var(--space-section) 0;
    background: var(--sage-primary);
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(122, 127, 94, 0.9) 0%, rgba(90, 95, 68, 0.95) 100%),
        url('https://sspark.genspark.ai/cfimages?u1=TwHaGOO4h9iMwHK21CPTTujXemSjmc%2FCplNL40W%2FgVDUov%2BgR1rZ5vpP5AD6r05J%2FRmt%2FvPfpb7fNeLt8pt%2BVvveS1Jfc6297pTklzDnJ2QkRH5cI98RhS%2FJYARDLJGL5KQ4%2BEqirP5cecUJI3OUpdTCMxlY0ErD8N2rh8IB%2F5ypqw2CX0KhxYJr%2BKKyQpc%3D&u2=XQrpe%2BOC0gx84JJp&width=2560');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

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

.philosophy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition-medium);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.philosophy-icon {
    margin-bottom: var(--space-xs);
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-icon svg {
    color: var(--text-light);
    opacity: 0.9;
    width: 38px;
    height: 38px;
}

.philosophy-card h3 {
    font-family: var(--font-serif);
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    font-weight: 400;
    font-size: 1.35rem;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    max-width: 680px;
    margin: var(--space-md) auto 0;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

/* ==========================================================================
   Offerings Section
   ========================================================================== */

.offerings {
    padding: var(--space-section) 0;
    background: var(--cream-warm);
    position: relative;
    overflow: hidden;
}

/* Large botanical illustration - right side */
.offerings::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 5%;
    width: 900px;
    height: 900px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none'%3E%3C!-- Large rose flower --%3E%3Ccircle cx='200' cy='120' r='45' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='120' r='35' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='120' r='25' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='120' r='15' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='120' r='6' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3C!-- Petals around flower --%3E%3Cpath d='M200 75 Q185 50 200 30 Q215 50 200 75' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M245 105 Q270 90 285 105 Q270 120 245 105' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M155 105 Q130 90 115 105 Q130 120 155 105' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M230 80 Q255 60 270 75 Q250 90 230 80' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M170 80 Q145 60 130 75 Q150 90 170 80' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3C!-- Main stem --%3E%3Cpath d='M200 165 L200 380' stroke='%237A7F5E' stroke-width='1.5'/%3E%3C!-- Large leaves --%3E%3Cpath d='M200 200 Q140 170 100 200 Q140 210 180 200 Q190 200 200 200' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 200 Q260 170 300 200 Q260 210 220 200 Q210 200 200 200' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3C!-- Leaf veins --%3E%3Cpath d='M200 200 Q150 190 110 200' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3Cpath d='M200 200 Q250 190 290 200' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3C!-- Middle leaves --%3E%3Cpath d='M200 260 Q130 220 80 260 Q130 280 180 260 Q190 260 200 260' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 260 Q270 220 320 260 Q270 280 220 260 Q210 260 200 260' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 260 Q140 240 95 260' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3Cpath d='M200 260 Q260 240 305 260' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3C!-- Lower leaves --%3E%3Cpath d='M200 320 Q120 275 60 320 Q120 345 180 320 Q190 320 200 320' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 320 Q280 275 340 320 Q280 345 220 320 Q210 320 200 320' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 320 Q130 300 75 320' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3Cpath d='M200 320 Q270 300 325 320' stroke='%237A7F5E' stroke-width='0.5' fill='none'/%3E%3C!-- Small buds on stem --%3E%3Ccircle cx='195' cy='185' r='4' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3Ccircle cx='205' cy='240' r='4' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3Ccircle cx='195' cy='295' r='4' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Secondary botanical element - left side */
.offerings::after {
    content: '';
    position: absolute;
    left: -15%;
    bottom: 0%;
    width: 700px;
    height: 700px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'%3E%3C!-- Flowing branch --%3E%3Cpath d='M50 280 Q100 250 120 200 Q140 150 180 120 Q220 90 280 50' stroke='%237A7F5E' stroke-width='1.5' fill='none'/%3E%3C!-- Leaves along branch --%3E%3Cpath d='M80 260 Q60 240 70 220 Q85 240 80 260' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M85 255 Q105 235 100 215 Q80 235 85 255' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M110 215 Q85 200 90 175 Q110 195 110 215' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M115 205 Q140 185 130 160 Q110 180 115 205' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M145 165 Q120 155 125 130 Q145 145 145 165' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M155 155 Q180 135 170 110 Q150 130 155 155' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M190 125 Q165 120 170 95 Q190 105 190 125' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M200 115 Q225 95 215 70 Q195 90 200 115' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M240 85 Q220 85 225 60 Q245 70 240 85' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3Cpath d='M250 75 Q270 55 260 35 Q245 55 250 75' stroke='%237A7F5E' stroke-width='1' fill='none'/%3E%3C!-- Small flower buds --%3E%3Ccircle cx='70' cy='220' r='5' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3Ccircle cx='130' cy='135' r='6' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3Ccircle cx='265' cy='40' r='8' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3Ccircle cx='265' cy='40' r='4' stroke='%237A7F5E' stroke-width='0.75' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.offerings .container {
    position: relative;
    z-index: 1;
}

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

.offering-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(93, 74, 54, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.offering-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(122, 127, 94, 0.1) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offering-card:hover {
    box-shadow: 0 20px 60px rgba(93, 74, 54, 0.15);
    transform: translateY(-8px);
}

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

/* Removed featured border style */

.offering-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Image loading placeholder with shimmer effect */
.offering-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--blush-light) 0%,
        var(--blush-primary) 20%,
        var(--cream-warm) 40%,
        var(--blush-primary) 60%,
        var(--blush-light) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.offering-image.loaded::before {
    opacity: 0;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.offering-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.offering-card:hover .offering-image::after {
    opacity: 0;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease, opacity 0.6s ease;
    filter: saturate(0.95);
    opacity: 0;
    z-index: 2;
    position: relative;
}

.offering-image img.loaded {
    opacity: 1;
}

.offering-card:hover .offering-image img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.offering-icon {
    width: 55px;
    height: 55px;
    color: var(--sage-primary);
    opacity: 0.6;
    transition: var(--transition-medium);
}

.offering-card:hover .offering-icon {
    opacity: 1;
    transform: scale(1.1);
}

.offering-content {
    padding: var(--space-lg) var(--space-md);
    transition: background 0.5s ease;
}

.offering-card:hover .offering-content {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(247, 242, 237, 0.5) 100%);
}

.offering-content h3 {
    font-family: var(--font-serif);
    color: var(--sage-deep);
    margin-bottom: 0.35rem;
    font-size: 1.5rem;
    transition: color 0.4s ease;
}

.offering-card:hover .offering-content h3 {
    color: var(--sage-primary);
}

.offering-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--sage-primary);
    margin-bottom: var(--space-sm);
    transition: color 0.4s ease;
}

.offering-card:hover .offering-subtitle {
    color: var(--sage-light);
}

.offering-content p:last-child {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.75;
    transition: color 0.4s ease;
}

.offering-card:hover .offering-content p:last-child {
    color: var(--text-dark);
}

.offerings-note {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: 8px;
    border: 1px dashed var(--blush-deep);
}

.offerings-note p {
    font-family: var(--font-serif);
    color: var(--sage-deep);
    font-size: 1rem;
}

/* ==========================================================================
   Plant Kin Section
   ========================================================================== */

.plants {
    padding: var(--space-section) 0;
    background: var(--cream);
}

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

.plant-card {
    text-align: center;
    padding: var(--space-md);
    background: rgba(247, 242, 237, 0.7);
    border-radius: 8px;
    transition: var(--transition-medium);
}

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

.plant-icon {
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.plant-icon svg {
    width: 52px;
    height: 52px;
    color: var(--sage-primary);
    transition: var(--transition-medium);
}

.plant-card:hover .plant-icon svg {
    color: var(--sage-deep);
    transform: scale(1.05);
}

.plant-card h3 {
    font-family: var(--font-serif);
    color: var(--sage-deep);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.plant-cree {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--sage-primary);
    margin-bottom: var(--space-xs);
}

.plant-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================================================================
   Founder Section
   ========================================================================== */

.founder {
    position: relative;
    padding: var(--space-section) 0;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(122, 127, 94, 0.92) 0%, rgba(90, 95, 68, 0.95) 100%),
        url('https://sspark.genspark.ai/cfimages?u1=aJgNDGckJw9VQ7ftTuX68sabsk2bhkQlnWzRReNajtw3dlZFgfrQy0BWTqf90RWk91mSHkgtPAtPmwfLoTA7mfXtM1ujgylOpsus5WNT%2BSNLEsG%2F58Yd4w76eUoM29HfHUYEPSPbBY8SOJH2jdKYk4rP%2Bq%2ByM4gF80YGY1lYNYUT05jYMFIt&u2=oX3CnCDIKzw8dSBO&width=2560');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

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

.founder-image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-medium);
    /* Improve image rendering when scaled down */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.02) brightness(1.01);
}

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

.founder-text {
    color: var(--text-light);
}

.founder-text-inner {
    max-width: 700px;
    margin: 0 auto;
}

.founder .section-title {
    color: var(--text-light);
}

.founder-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}

.founder-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25em;
}

.founder-closing {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    padding: var(--space-section) 0;
    background: var(--blush-light);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.contact-item h3 {
    font-family: var(--font-serif);
    color: var(--sage-deep);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.contact-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.85;
}

.contact-social {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--blush-deep);
}

.contact-social h3 {
    font-family: var(--font-serif);
    color: var(--sage-deep);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--sage-deep);
    font-size: 1.05rem;
    padding: var(--space-sm) var(--space-lg);
    background: var(--cream);
    border-radius: 30px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--sage-primary);
    color: var(--text-light);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--sage-deep);
    color: var(--text-light);
}

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

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    opacity: 0.9;
}

.footer-blessing {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.footer-divider {
    opacity: 0.5;
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-divider svg {
    color: var(--text-light);
}

.footer-location {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: var(--space-sm);
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-xl) var(--space-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(90, 95, 68, 0.25);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: -1;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-close {
        position: absolute;
        top: var(--space-md);
        right: var(--space-md);
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1.5px solid var(--sage-deep);
        border-radius: 50%;
        cursor: pointer;
        color: var(--sage-deep);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-close svg {
        width: 20px;
        height: 20px;
        stroke: var(--sage-deep);
        stroke-width: 2;
    }
    
    .nav-close:hover,
    .nav-close:active {
        background: var(--sage-deep);
        border-color: var(--sage-deep);
        color: var(--text-light);
        transform: rotate(90deg);
    }
    
    .nav-close:hover svg,
    .nav-close:active svg {
        stroke: var(--text-light);
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
        font-family: var(--font-serif);
        letter-spacing: 0.05em;
        padding: var(--space-sm) var(--space-md);
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--blush-light);
        color: var(--sage-deep);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-menu-footer {
        position: absolute;
        bottom: var(--space-lg);
        text-align: center;
    }
    
    .nav-menu-footer p {
        font-family: var(--font-serif);
        font-style: italic;
        font-size: 0.9rem;
        color: var(--sage-muted);
        margin: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .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);
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hide botanical backgrounds on smaller screens */
    .offerings::before,
    .offerings::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    :root {
        --space-lg: 2.5rem;
        --space-xl: 3.5rem;
        --space-xxl: 5rem;
        --space-section: 4.5rem;
    }
    
    .hero-logo img {
        width: 120px;
        height: 120px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .offering-content h3 {
        font-size: 1.3rem;
    }
    
    .offering-content p:last-child {
        font-size: 1rem;
    }
    
    .offering-image {
        aspect-ratio: 3/2;
    }
    
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .plant-card {
        padding: var(--space-sm);
    }
    
    .plant-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .plant-card h3 {
        font-size: 1.15rem;
    }
    
    .plant-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    
    .welcome-content {
        max-width: 100%;
    }
    
    .founder-text-inner {
        max-width: 100%;
    }
}

/* Removed 680px breakpoint - handled in 768px now */

@media (max-width: 480px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
        --space-section: 3.5rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .welcome-intro {
        font-size: 1.15rem;
    }
    
    .philosophy-card {
        padding: var(--space-md) var(--space-sm);
    }
    
    .philosophy-card h3 {
        font-size: 1.15rem;
    }
    
    .philosophy-card p {
        font-size: 0.85rem;
    }
    
    .philosophy-quote {
        font-size: 1rem;
        padding: var(--space-sm);
    }
    
    .offering-content {
        padding: var(--space-md) var(--space-sm);
    }
    
    .offering-content h3 {
        font-size: 1.2rem;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .plant-card {
        padding: var(--space-sm);
    }
    
    .plant-card h3 {
        font-size: 1.1rem;
    }
    
    .social-links {
        width: 100%;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .founder-image {
        width: 130px;
        height: 130px;
    }
    
    .founder-intro {
        font-size: 1.05rem;
    }
    
    .founder-text p {
        font-size: 0.95rem;
    }
    
    .founder-closing {
        font-size: 1rem;
    }
    
    .hero-logo img {
        width: 110px;
        height: 110px;
    }
    
    .footer-logo img {
        width: 70px;
        height: 70px;
    }
    
    .footer-blessing {
        font-size: 1.15rem;
    }
    
    .contact-item h3 {
        font-size: 1.15rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .philosophy-card {
        padding: var(--space-md) var(--space-sm);
    }
}

/* ==========================================================================
   Accessibility & Print
   ========================================================================== */

@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;
    }
}

:focus-visible {
    outline: 2px dashed var(--sage-primary);
    outline-offset: 3px;
}

@media print {
    .nav, .hero-scroll, .contact-social {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-lg);
    }
    
    section {
        break-inside: avoid;
    }
}
