/* --- Global Styles & Reset --- */
:root {
    /* Sophisticated Luxury Palette - REVISED FOR OLIVE/MUSTARD ACCENTS */

    /* Neutrals (Creams/Whites) */
    --color-cream: #F4EFE3;     /* Soft Cream - Less yellow */
    --color-warm-white: #F9F9F7; /* Main Background - Near-white */

    /* Browns */
    --color-light-brown: #C9B395; /* Soft Tan/Neutral */
    --color-medium-brown: #937351; /* Earthy, mid-tone brown */
    --color-dark-brown: #523D26;  /* Deep Contrast Brown (for footer/strong elements) */

    /* Blacks/Charcoal */
    --color-charcoal: #3A3A3A;  /* Dark text color */
    --color-soft-black: #1A1A1A; /* Standard black for main headings/high contrast */

    /* Accent Colors (Client Request) */
    --color-olive: #4A5B4A;      /* Primary Accent: Rich Olive Green */
    --color-burnt-orange: #A65D3C; /* Earthy Burnt Orange (for border/accents) */
    --color-mustard: #D4AF37;    /* Secondary Accent: Classic Mustard/Gold (for hover/fallback) */
    --color-sage: #8FBC8F;       /* Pale Sage for subtle details */

    /* Typography System */
    --font-display: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Allura', cursive;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    --space-xxxl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --section-padding: var(--space-xxxl);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* ===== MAGICAL ANIMATIONS & EFFECTS ===== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom cursor effect */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="rgba(74,91,74,0.3)" stroke="rgba(74,91,74,0.8)" stroke-width="1"/></svg>'), auto;
}

/* Magical sparkle animation */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Shimmer effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Gradient animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Float animation */
@keyframes floatMagic {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Glow pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3); }
}

/* Reveal from bottom */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal from left */
@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal from right */
@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate in */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-warm-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Magical background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 91, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(166, 93, 60, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 20s ease infinite;
    background-size: 200% 200%;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: floatMagic 60s linear infinite;
    opacity: 0.3;
}

/* --- Enhanced Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-soft-black);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    animation: revealUp 1s ease-out;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: revealUp 1s ease-out 0.2s both;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s forwards;
}

@keyframes expandWidth {
    to { width: 80px; }
}

h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--color-olive);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

h3:hover {
    transform: translateX(5px);
    color: var(--color-mustard);
}

p {
    margin-bottom: 1em;
    position: relative;
    z-index: 1;
}

.sub-headline {
    font-weight: 300;
    font-size: 1.2em;
    margin-bottom: 2em;
    line-height: 1.6;
    animation: revealUp 1s ease-out 0.4s both;
}

/* --- Layout Structure --- */
section {
    padding: 6em 5%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: revealUp 1s ease-out forwards;
}

section:nth-child(even) {
    animation: revealLeft 1s ease-out forwards;
}

section:nth-child(odd) {
    animation: revealRight 1s ease-out forwards;
}

.centered-text {
    text-align: center;
}

/* --- Image Styling (The fix for the "boxes") --- */
.placeholder-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

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

.placeholder-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 30px rgba(212, 175, 55, 0.2);
}

.placeholder-img:hover::before {
    left: 100%;
}

/* --- Enhanced Button System --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    background-color: transparent;
    color: inherit;
    letter-spacing: 0.02em;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    /* PRIMARY CTA: OLIVE GREEN */
    background: linear-gradient(135deg, var(--color-olive) 0%, #5a6b5a 100%);
    color: white;
    border: 2px solid var(--color-olive);
    box-shadow: 0 4px 15px rgba(74, 91, 74, 0.3), 0 0 0 0 rgba(74, 91, 74, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn-primary::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 91, 74, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    animation: none;
    background: linear-gradient(135deg, #5a6b5a 0%, var(--color-olive) 100%);
}

.btn-primary:hover::after {
    right: 20px;
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    /* SECONDARY CTA: Olive Outline */
    background-color: transparent;
    color: var(--color-olive);
    border: 2px solid var(--color-olive);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 91, 74, 0.05) 100%);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-mustard) 0%, #c9a532 100%);
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-secondary::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.btn-secondary:hover {
    color: var(--color-soft-black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: var(--color-mustard);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover::after {
    right: 20px;
    opacity: 1;
    color: var(--color-soft-black);
}

.large-btn {
    font-size: 1em;
    padding: 1.2em 4em;
    margin-top: 1.5em;
}

/* --- Enhanced Header & Navigation --- */
.header {
    background-color: rgba(249, 249, 247, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.logo-monogram {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-olive);
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.3s ease;
    animation: rotateIn 0.8s ease-out;
}

.logo-monogram::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover .logo-monogram::after {
    transform: scaleX(1);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-soft-black);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    animation: revealLeft 0.8s ease-out 0.2s both;
}

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

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--color-olive);
    transform: translateY(-2px);
}

.nav a:hover::before {
    width: 100%;
}

.nav a::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -15px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.nav a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Enhanced Hero Section with Background Image --- */
.hero-section {
    background-image: linear-gradient(rgba(249, 249, 247, 0.4), rgba(244, 239, 227, 0.2)), url('PHOTO-2025-09-13-18-56-45.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: unset;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: floatMagic 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '✨';
    position: absolute;
    font-size: 3rem;
    top: 20%;
    right: 15%;
    opacity: 0.3;
    animation: sparkle 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(249, 249, 247, 0.98) 0%, rgba(244, 239, 227, 0.95) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-strong), 0 0 40px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: scaleIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-soft-black);
    margin-bottom: var(--space-lg);
    font-style: italic;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    animation: revealUp 1s ease-out 0.3s both;
}

/* Removed first-letter styling to keep quote consistent */

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    position: relative;
    z-index: 1;
    animation: revealUp 1s ease-out 0.6s both;
}

.hero-cta {
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-xl);
    animation: scaleIn 1s ease-out 0.9s both;
    box-shadow: 0 10px 30px rgba(74, 91, 74, 0.3);
}

.hero-cta:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
}

.hero-image {
    display: none;
}


/* --- Enhanced Intro Section --- */
.intro-section {
    padding: var(--space-xxxl) 5%;
    background-image: url('PHOTO-2025-09-13-18-56-47 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 249, 247, 0.95) 0%, rgba(244, 239, 227, 0.95) 100%);
    z-index: 1;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    transform: translate(-50%, -50%);
    animation: floatMagic 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.intro-section .content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-section h2 {
    color: var(--color-olive);
    margin-bottom: var(--space-lg);
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: revealUp 1s ease-out 0.3s both;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s forwards;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.intro-section .sub-headline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.intro-closing {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-olive);
    margin: var(--space-lg) 0 var(--space-xl) 0;
    border-left: 3px solid var(--color-mustard);
    padding-left: var(--space-md);
}

.intro-section .btn-secondary {
    display: inline-block;
}

/* --- Visual Gallery Section --- */
.visual-gallery {
    padding: 0;
    background-color: var(--color-warm-white);
    position: relative;
    overflow: hidden;
}

.visual-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 300px;
    max-width: unset;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 91, 74, 0.3), rgba(212, 175, 55, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: sepia(20%) saturate(1.2);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: sepia(0%) saturate(1.3) brightness(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 250px;
    }
}

/* --- Enhanced About Section with Parallax --- */
.about-section {
    background-image: linear-gradient(rgba(249, 249, 247, 0.95), rgba(244, 239, 227, 0.9)), url('PHOTO-2025-09-13-18-56-47 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-xxxl) 5%;
}

.about-section .content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xxxl);
    align-items: start;
}

.about-text {
    padding-right: var(--space-lg);
}

.about-story, .about-transformation, .about-mission {
    margin-bottom: var(--space-xl);
}

.about-story h3, .about-transformation h3, .about-mission h3 {
    color: var(--color-olive); /* Olive accent */
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.mission-list li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.mission-list li::before {
    content: "→";
    color: var(--color-olive); /* Olive bullet */
    font-weight: 600;
    position: absolute;
    left: 0;
}

.mission-statement {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-olive);
    border-left: 3px solid var(--color-mustard);
    padding-left: var(--space-md);
    margin-top: var(--space-lg);
}

.about-image-placeholder {
    position: sticky;
    top: var(--space-xl);
}

/* --- You're in the Right Place Section (Enhanced with Animations) --- */
.right-place-section {
    position: relative;
    padding: var(--space-xxl) 0 var(--space-xxxl);
    background-image: url('PHOTO-2025-09-13-18-56-48.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    max-width: unset;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.right-place-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.floating-elements { display: none; }

.float-element {
    position: absolute;
    background: rgba(74, 91, 74, 0.15); /* Uses Olive */
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(74, 91, 74, 0.25); /* Uses Olive */
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.float-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.right-place-section .content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(380px, 1.2fr);
    gap: var(--space-xxl);
    align-items: center;
    text-align: left;
}

.section-intro {
    margin: 0;
}

.animated-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--space-sm);
    text-shadow: none;
}

.highlight-text {
    background: linear-gradient(45deg, var(--color-burnt-orange), var(--color-mustard)); /* Burnt Orange to Mustard highlight */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.right-place-section .section-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    max-width: 560px;
    margin-top: var(--space-md);
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    }
    100% {
        box-shadow: 2px 2px 20px rgba(212, 175, 55, 0.4); /* Mustard glow */
    }
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(58, 58, 58, 0.9); /* Dark text */
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.checklist-container {
    margin-bottom: 60px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: var(--space-md);
    margin: 0;
}

.checklist-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: var(--space-md);

    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(6px);
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);

    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    opacity: 0;
    transform: translateY(24px);
    animation: slideInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.checklist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

/* Responsive: stack Right Place content on smaller screens */
@media (max-width: 900px) {
  .right-place-section .content-container { grid-template-columns: 1fr; gap: var(--space-xl); }
}


.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-olive);
    color: #fff;
    font-size: 0; /* hide emoji content */
    box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.check-icon::before { content: "✓"; font-size: 16px; font-weight: 800; line-height: 1; }

.check-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.35;
}

.check-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    margin: 0;
}

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

.cta-text {
    color: var(--color-olive);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-mustard);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pulse-btn {
    animation: pulse 2s infinite;
    font-size: 1.2rem;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pulse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 91, 74, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(74, 91, 74, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(74, 91, 74, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(74, 91, 74, 0.3);
    }
}

/* --- Enhanced Work With Me Section --- */
.work-with-me-section {
    padding: 0;
    max-width: unset;
    margin: 0;
}

.work-with-me-background {
    background: linear-gradient(135deg, var(--color-olive) 0%, rgba(74, 91, 74, 0.9) 50%, rgba(26, 26, 26, 0.95) 100%);
    background-image: url('PHOTO-2025-09-13-18-56-06.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    padding: var(--space-xxxl) 5%;
    position: relative;
    overflow: hidden;
}

.work-with-me-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 91, 74, 0.85) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.work-with-me-background .content-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-mustard);
    margin-bottom: var(--space-lg);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.section-subtitle em {
    color: var(--color-mustard);
    font-style: italic;
}

.work-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxxl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.option-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 480px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: scaleIn 0.6s ease-out backwards;
}

.option-card:nth-child(1) { animation-delay: 0.1s; }
.option-card:nth-child(2) { animation-delay: 0.3s; }
.option-card:nth-child(3) { animation-delay: 0.5s; }

.option-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-olive), var(--color-mustard), var(--color-burnt-orange));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.option-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

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

.card-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.option-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.option-card:hover .option-img {
    transform: scale(1.08);
}

.card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-xl);
    display: grid;
    gap: var(--space-md);
    text-align: left;
    color: white;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.2;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

/* Image tint + depth */
.option-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 10%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.option-card:hover::after {
    opacity: 1;
}


.btn-work-with-me {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-olive);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    width: fit-content;
}



.btn-work-with-me:hover {
    background: var(--color-mustard);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}



.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-work-with-me:hover .btn-arrow { transform: translateX(4px); }

.btn-work-with-me:hover .btn-arrow {
    transform: translateX(3px);
}

/* Links Section (Shop/Blog cards) */
.links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3em;
}

.link-card {
    background-color: white;
    padding: 2.5em;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card h3 {
    color: var(--color-olive);
    text-transform: none;
    font-size: 1.5em;
    margin-bottom: 0.8em;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Enhanced Testimonials Section with Carousel --- */
.testimonials-section {
    background-image: linear-gradient(135deg, rgba(74, 91, 74, 0.85) 0%, rgba(166, 93, 60, 0.85) 100%), url('PHOTO-2025-09-13-18-56-49.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-xxxl) 5%;
    max-width: unset;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('PHOTO-2025-09-13-18-56-45 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section > * {
    position: relative;
    z-index: 2;
}

.testimonials-section h2 {
    text-align: center;
    color: white;
    margin-bottom: var(--space-xxxl);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Carousel Container */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-slide {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box; /* include padding in the 100% width */
    flex-shrink: 0;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 247, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-strong), 0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard), var(--color-burnt-orange));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.testimonial-slide.active .testimonial-card::after {
    transform: scaleX(1);
}

/* Active slide card - subtle entrance effect */
.testimonial-slide.active .testimonial-card.slide-in {
    animation: slideInBounce 0.6s ease-out forwards;
}

@keyframes slideInBounce {
    0% { transform: translateY(16px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-sage);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.testimonial-slide.active .testimonial-photo {
    animation: photoZoom 0.6s ease 0.2s both;
}

@keyframes photoZoom {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-soft-black);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    font-style: italic;
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3.5rem;
    color: var(--color-sage);
    font-family: var(--font-accent);
    line-height: 1;
    opacity: 0.3;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: var(--color-olive);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav:active {
    transform: translateY(-50%) translateY(-3px) scale(1.05);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-xl);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.carousel-dot:hover {
    transform: scale(1.3) translateY(-2px);
    border-color: white;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Legacy grid styles (kept for backwards compatibility) */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-card p {
    margin: 0;
    color: var(--color-charcoal);
    font-size: 1.1rem;
}

/* --- Enhanced Speaker Section with Parallax --- */
.speaker-section {
    background-image: linear-gradient(rgba(74, 91, 74, 0.85), rgba(166, 93, 60, 0.9)), url('PHOTO-2025-09-13-18-56-48.jpg'); /* Olive/Burnt Orange overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-xxxl) 5%;
    color: white;
}

.speaker-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxxl);
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.speaker-text h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.speaker-intro {
    margin-bottom: var(--space-xl);
}

.speaker-headline {
    font-size: 1.3rem;
    color: var(--color-mustard); /* Mustard accent */
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.speaker-offerings {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.offering-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 91, 74, 0.1), rgba(255, 255, 255, 0.1)); /* Olive highlight */
    transition: left 0.4s ease;
    z-index: 0;
}

.offering-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-olive);
    background: rgba(255, 255, 255, 0.15);
}

.offering-item:hover::before {
    left: 0;
}

.offering-item > * {
    position: relative;
    z-index: 1;
}

.offering-item h3 {
    color: var(--color-mustard); /* Mustard heading */
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.offering-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.speaker-cta {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-mustard); /* Mustard text */
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.speaker-image {
    position: relative;
}

.speaker-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: auto;
}

/* --- About Page Styles --- */
.about-hero {
    background-image: linear-gradient(rgba(249, 249, 247, 0.4), rgba(244, 239, 227, 0.2)), url('PHOTO-2025-09-13-18-56-45.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: unset;
    position: relative;
}

.about-hero .hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxxl);
    align-items: center;
}

.about-hero .hero-text {
    max-width: 600px;
    padding: var(--space-xl);
    background-color: rgba(249, 249, 247, 0.95);
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(10px);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-soft-black);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.about-hero .hero-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    font-weight: 400;
}

.about-hero .hero-image {
    display: block;
}

.about-hero .hero-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
}

.about-story-section {
    padding: var(--space-xxxl) 5%;
    background: var(--color-warm-white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-intro {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-olive);
    margin-bottom: var(--space-xl);
    text-align: center;
    font-style: italic;
}

.story-content h2 {
    color: var(--color-olive);
    margin-top: var(--space-xxxl);
    margin-bottom: var(--space-lg);
    font-size: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.story-cta {
    text-align: center;
    margin-top: var(--space-xxxl);
    padding: var(--space-xl);
    background: rgba(74, 91, 74, 0.05);
    border-radius: 12px;
    border: 2px solid var(--color-sage);
}

.story-cta .cta-text {
    font-size: 1.2rem;
    color: var(--color-olive);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.story-cta .btn-primary,
.story-cta .btn-secondary {
    margin: 0 var(--space-sm);
}

/* Blog Page Styles */
.blog-hero {
    background-image: linear-gradient(rgba(74, 91, 74, 0.8), rgba(166, 93, 60, 0.8)), url('PHOTO-2025-09-13-18-56-48.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    max-width: unset;
    position: relative;
    color: white;
    text-align: center;
}

.blog-hero .hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.blog-hero .hero-text {
    background: none;
    padding: 0;
}

.blog-hero h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: none;
}

.blog-hero .hero-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    background: none;
}

@media (max-width: 768px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .about-hero .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-hero {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .blog-hero {
        min-height: 40vh;
        background-attachment: scroll;
    }
}

/* --- Blog Section --- */
.blog-section {
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
    padding: var(--space-xxxl) 5%;
}

.blog-section h2 {
    text-align: center;
    color: var(--color-olive);
    margin-bottom: var(--space-lg);
}

.blog-section .sub-headline {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xxxl) auto;
}

.blog-preview {
    max-width: var(--max-width);
    margin: 0 auto var(--space-xxxl) auto;
}

.blog-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 91, 74, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 91, 74, 0.15);
    border-color: var(--color-olive);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card.featured .blog-card-image {
    aspect-ratio: 21 / 9;
}

.blog-card.featured {
    margin-bottom: var(--space-xxl);
    background: linear-gradient(135deg, rgba(74, 91, 74, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--color-olive);
    box-shadow: 0 8px 30px rgba(74, 91, 74, 0.12);
}

.blog-card.featured:hover {
    box-shadow: 0 16px 50px rgba(74, 91, 74, 0.2);
}

/* Content padding for regular cards */
.blog-card > .blog-category {
    margin: var(--space-md) var(--space-lg) 0 var(--space-lg);
}

.blog-card > a {
    padding: 0 var(--space-lg);
    display: block;
}

.blog-card > p {
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-sm);
}

.blog-card > .blog-date {
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-md);
    display: block;
}

/* Featured card content padding */
.blog-card.featured .blog-content {
    padding: var(--space-lg) var(--space-xl);
}

.blog-category {
    display: inline-block;
    background: var(--color-olive);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
    box-shadow: 0 2px 8px rgba(74, 91, 74, 0.2);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    margin-top: var(--space-sm);
}

.blog-card a:hover {
    color: var(--color-olive);
}

.blog-card h3, .blog-card h4 {
    color: var(--color-soft-black);
    margin: var(--space-sm) 0;
    line-height: 1.25;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.blog-card a:hover h3,
.blog-card a:hover h4 {
    color: var(--color-olive);
}

.blog-card h3 {
    font-size: 1.4rem;
    letter-spacing: -0.3px;
}

.blog-card h4 {
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}

.blog-card p {
    color: var(--color-charcoal);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.blog-meta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-medium-brown);
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-md);
    margin-top: auto;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-medium-brown);
    font-style: italic;
    font-weight: 500;
}

.blog-read-time {
    font-size: 0.8rem;
    color: var(--color-medium-brown);
    font-weight: 500;
}

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

.blog-cta {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(74, 91, 74, 0.05);
    border-radius: 12px;
    border: 2px solid var(--color-sage);
}

.blog-cta .cta-text {
    font-size: 1.2rem;
    color: var(--color-olive);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .blog-card-image {
        height: 220px;
    }

    .blog-card.featured .blog-card-image {
        height: 300px;
    }

    .blog-card > .blog-category {
        margin: var(--space-md) var(--space-lg) 0 var(--space-lg);
    }

    .blog-card > a {
        padding: 0 var(--space-lg);
    }

    .blog-card > p {
        padding: 0 var(--space-lg);
    }

    .blog-card > .blog-date {
        padding: 0 var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .blog-card.featured .blog-content {
        padding: var(--space-lg) var(--space-xl);
    }

    .blog-meta {
        padding: 0 var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .blog-card h3 {
        font-size: 1.6rem;
    }

    .blog-card h4 {
        font-size: 1.25rem;
    }

    .blog-card p {
        font-size: 1rem;
    }
}

/* --- Stunning Contact Section with Danni's Photos --- */
.contact-section {
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-light-brown) 100%); /* Cream/Brown gradient */
    position: relative;
    overflow: hidden;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-content {
    text-align: left;
}

.contact-section h2 {
    font-size: 3.5rem;
    color: var(--color-olive);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--color-mustard); /* Mustard accent line */
    border-radius: 2px;
}

.contact-section .sub-headline {
    animation: fadeInUp 0.8s ease 0.2s both;
    margin-bottom: 50px;
    font-size: 1.3rem;
    color: var(--color-charcoal);
}

.contact-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 247, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(74, 91, 74, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 91, 74, 0.15), rgba(212, 175, 55, 0.15));
    transition: left 0.5s ease;
}

.contact-card::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(212, 175, 55, 0.3);
    border-color: var(--color-mustard);
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(180deg);
}

.contact-card-image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.contact-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-mustard); /* Mustard border */
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-img {
    transform: scale(1.1);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    color: var(--color-olive);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: var(--color-charcoal);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    color: var(--color-olive);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--color-olive); /* Olive hover */
    border-bottom-color: var(--color-olive);
}

.contact-images {
    position: relative;
    height: 600px;
}

.floating-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.floating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.img-1 {
    width: 200px;
    height: 250px;
    top: 50px;
    right: 100px;
    animation: float 6s ease-in-out infinite;
}

.img-2 {
    width: 180px;
    height: 220px;
    top: 200px;
    right: 20px;
    animation: float 6s ease-in-out infinite 2s;
}

.img-3 {
    width: 160px;
    height: 200px;
    top: 350px;
    right: 150px;
    animation: float 6s ease-in-out infinite 4s;
}

.contact-cta {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.6s both;
    text-align: center;
    margin-top: 40px;
}

.social-section {
    margin-bottom: 30px;
}

.social-section p {
    color: var(--color-charcoal);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-main-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
}

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

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .contact-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-images {
        height: 400px;
    }

    .img-1, .img-2, .img-3 {
        width: 150px;
        height: 180px;
    }

    .img-1 { top: 20px; right: 200px; }
    .img-2 { top: 120px; right: 50px; }
    .img-3 { top: 220px; right: 150px; }
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .contact-img {
        width: 100px;
        height: 100px;
    }

    .contact-images {
        display: none;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }
}

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

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

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2em 5%;
    background: linear-gradient(135deg, var(--color-olive) 0%, #5a6b5a 100%);
    color: white;
    font-size: 0.9em;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-mustard), transparent);
    animation: shimmer 3s linear infinite;
}

footer a {
    color: var(--color-cream);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-mustard);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* Prevent background scroll when popup open */
body.modal-open { overflow: hidden; }

/* Strengthen popup positioning in case of overrides */
.popup-container { inset: 0; position: fixed !important; }

footer a:hover {
    color: var(--color-mustard);
    transform: translateY(-2px);
}

/* ===== MAGICAL LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-cream) 50%, var(--color-light-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: scaleIn 0.8s ease-out;
}

.loading-logo {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--color-olive);
    margin-bottom: 1rem;
    animation: glowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    animation: revealUp 1s ease-out 0.3s both;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--color-olive);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--color-olive);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--color-mustard);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--color-burnt-orange);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MAGICAL EFFECTS CSS ===== */

/* Sparkle trail effect */
.sparkle-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, var(--color-mustard), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: sparkleTrail 1s ease-out forwards;
}

@keyframes sparkleTrail {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
}

/* Floating magic elements */
.floating-magic-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatUp {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100px) rotate(180deg);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-50px) rotate(360deg);
    }
}

/* Ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-mustard), var(--color-burnt-orange));
    z-index: 10000;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Magic particles */
.magic-particle {
    position: fixed;
    bottom: -10px;
    width: 5px;
    height: 5px;
    background: var(--color-mustard);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: particleRise 5s ease-out forwards;
    box-shadow: 0 0 10px var(--color-mustard);
}

@keyframes particleRise {
    0% {
        bottom: -10px;
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Text reveal animation */
@keyframes revealChar {
    to {
        opacity: 1;
    }
}

/* Section visibility class */
.section-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Hover lift effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --- Pop-up Styles --- */
.popup-container {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.popup-content h2 {
    color: var(--color-olive); /* Olive heading */
}

.popup-content input[type="email"] {
    width: 90%;
    padding: 12px;
    margin: 15px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* --- Enhanced Mobile Responsiveness --- */
@media (max-width: 1024px) {
    :root {
        --section-padding: var(--space-xl);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--space-lg);
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(249, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: top 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        top: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        display: block;
        color: var(--color-charcoal);
        background: none;
        border-radius: 0;
    }

    .nav a:hover {
        color: var(--color-olive); /* Olive hover */
        background: none;
    }

    .about-section .content-container {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .intro-section .content-container {
        max-width: 800px;
        padding: 0 20px;
    }

    .speaker-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .speaker-offerings {
        grid-template-columns: 1fr;
    }

    /* Work With Me Mobile */
    .work-options-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 450px;
    }

    .option-card {
        height: 460px;
    }

    .option-card:hover {
        transform: translateY(-5px);
        height: auto;
        scale: 1;
    }

    .card-image {
        height: 100%;
    }

    .work-with-me-background {
        background-attachment: scroll;
        padding: var(--space-xl) var(--space-md);
    }

    .section-header h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 var(--space-sm);
    }

    .card-content {
        padding: var(--space-lg);
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 70vh;
        padding: var(--space-xl) 5%;
        background-attachment: scroll;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

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

    .speaker-image {
        order: -1;
        margin-bottom: var(--space-lg);
    }

    .logo-monogram {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: var(--space-lg) var(--space-md);
        background-attachment: scroll;
        min-height: 60vh;
    }

    .about-section {
        background-attachment: scroll;
        padding: var(--space-xl) var(--space-md);
    }

    .about-text {
        padding-right: 0;
    }

    .speaker-section {
        background-attachment: scroll;
        padding: var(--space-xl) var(--space-md);
    }

    .testimonials-section::before {
        background-attachment: scroll;
    }

    .hero-text {
        padding: var(--space-lg);
        margin: var(--space-md);
    }

    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .btn-primary, .btn-secondary {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }

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

    .logo-monogram {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

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

    /* Carousel Mobile Styles */
    .testimonial-carousel-container {
        padding: 0 50px;
    }

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

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-photo {
        width: 60px;
        height: 60px;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

    .nav-list {
        padding: 1.5rem;
        gap: 1rem;
    }

    /* Right Place Section Mobile */
    .right-place-section {
        min-height: auto;
        padding: var(--space-xl) var(--space-md);
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .checklist-item {
        padding: 16px;
        gap: var(--space-md);
    }

    .check-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .animated-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .pulse-btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }

    /* Right Place Section Mobile */
    .right-place-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checklist-item {
        padding: 16px;
        margin: 0;
    }

    .check-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .animated-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .check-content h3 {
        font-size: 1.2rem;
    }

    .check-content p {
        font-size: 0.95rem;
    }

    .cta-text {
        font-size: 1.1rem;
        padding: 0 20px;

    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    .btn-primary, .btn-secondary {
        padding: 0.8em 2em;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* Extra small screens carousel adjustments */
    .testimonial-carousel-container {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: var(--space-xl);
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding-left: var(--space-md);
    }

    .testimonial-text::before {
        font-size: 2.5rem;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: var(--space-lg);
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* === Feedback tweaks 2025-09-30 === */
/* 1) Visual gallery: on mobile show only the 2nd image */
@media (max-width: 480px) {
  .visual-gallery .gallery-item { display: none; }
  .visual-gallery .gallery-item:nth-child(2) { display: block; }
}

/* 2) Right-place CTA: add spacing and keep one line on desktop */
.right-place-section .section-cta { margin-top: var(--space-xl); }
@media (min-width: 769px) {
  .right-place-section .cta-text { white-space: nowrap; }
}

/* 3) Testimonials: plain olive background */
.testimonials-section { background: var(--color-olive) !important; background-image: none !important; }
.testimonials-section::before { display: none !important; }

/* 4) Get in Touch: make section full width */
.contact-section {
  max-width: unset; /* override global section cap */
  margin: 0;        /* remove auto-centering */
  width: 100vw;     /* bleed to viewport */
  margin-left: calc(-50vw + 50%);
}

/* Center the Right-Place CTA and prevent odd squeezing on desktop */
.right-place-section .cta-text { display: inline-block; margin-left: auto; margin-right: auto; }

/* Speaker section: full-width and more olive overlay */
.speaker-section {
  max-width: unset; margin: 0; width: 100vw; margin-left: calc(-50vw + 50%);
}
.speaker-section {
  background-image: linear-gradient(135deg, rgba(74,91,74,0.92), rgba(46,59,46,0.95)), url('PHOTO-2025-09-13-18-56-48.jpg') !important;
}

/* ===== SHOP PAGE STYLES ===== */

/* Shop Hero Section */
.shop-hero {
    position: relative;
    width: 100%;
    max-width: unset; /* override global section max-width */
    min-height: 80vh;
    padding: 120px 0; /* full-bleed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(135deg, rgba(74,91,74,0.88), rgba(46,59,46,0.92)), url('PHOTO-2025-09-13-18-56-50.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.shop-hero-eyebrow {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Image focal helpers */
.shop-card-image.img-top img { object-position: center 20%; }

/* Compact card tweaks */
.shop-card-compact .shop-card-content { padding: var(--space-sm) var(--space-md); }
.shop-card-compact .shop-card-description { margin-bottom: var(--space-sm); }
.shop-card-compact .shop-card-features li { padding: 4px 0; }
.shop-card-compact .shop-card-footer { padding-top: var(--space-sm); }
.shop-card-compact .shop-card-price { font-size: 1.1rem; }

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shop-hero-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.shop-hero-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Shop Section */
.shop-section {
    width: 100%;
    max-width: unset; /* override global section max-width */
    padding: var(--space-xxxl) 0; /* full-bleed */
    background: var(--color-warm-white);
}

.shop-section-alt {
    background: var(--color-cream);
}

.shop-section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
}

.shop-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-soft-black);
    margin-bottom: var(--space-sm);
}

.shop-section-header p {
    font-size: 1.15rem;
    color: var(--color-charcoal);
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.shop-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Shop Card */
.shop-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

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

.shop-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.shop-card-compact .shop-card-image {
    height: 200px;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.08);
}

.shop-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-mustard);
    color: var(--color-soft-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.shop-card-content {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shop-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-soft-black);
    margin-bottom: var(--space-sm);
}

.shop-card-compact .shop-card-content h3 {
    font-size: 1.25rem;
}

.shop-card-description {
    color: var(--color-charcoal);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
    font-size: 0.95rem;
}

.shop-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
}

.shop-card-features li {
    padding: 6px 0;
    color: var(--color-charcoal);
    font-size: 0.9rem;
    line-height: 1.4;
}

.shop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: auto;
}

.shop-card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-olive);
}

/* Shop Buttons */
.btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--color-olive);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-shop:hover {
    background: var(--color-mustard);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-shop-disabled {
    background: var(--color-light-brown);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-shop-disabled:hover {
    background: var(--color-light-brown);
    transform: none;
    box-shadow: none;
}

/* Shop CTA Section */
.shop-cta-section {
    width: 100%;
    max-width: unset; /* override global section max-width */
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-dark-brown) 100%);
    padding: var(--space-xxxl) 0; /* full-bleed */
    text-align: center;
    color: white;
}

.shop-cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
}

.shop-cta-section p {
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 90px var(--space-lg) 60px;
        min-height: 65vh;
        background-attachment: scroll;
    }

    .shop-hero-title {
        font-size: 2.5rem;
    }

    .shop-hero-subtitle {
        font-size: 1.1rem;
    }

    .shop-section {
        padding: var(--space-xxl) 0;
    }

    .shop-section-header h2 {
        font-size: 2rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .shop-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .shop-card-image {
        height: 220px;
    }

    .shop-cta-section h2 {
        font-size: 2rem;
    }
}
