/* Font Face Declarations */
@font-face {
    font-family: 'Herald Square';
    src: url('attached_assets/herald-square.squarenf_1754169927874.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lavender: #C4A5C7;
    --lavender-light: #E6D7E8;
    --gold: #D4AF37;
    --gold-light: #F5E6A8;
    --mahogany: #8B4513;
    --mahogany-dark: #5D2F0A;
    --cream: #FDF8F0;
    --charcoal: #2C2C2C;
    --nav-height: 0px;
    --hero-height-vh: 70; /* desktop default hero height as % of viewport */
}

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color: var(--cream);
    position: relative;
}

/* Ensure content is above the pattern */
.navbar, .hero, .services {
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(196, 165, 199);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.23rem 0;
    border-bottom: 3px solid #000000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 47%, rgba(212, 175, 55, 0.15) 49%, rgba(212, 175, 55, 0.15) 51%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(139, 69, 19, 0.08) 49%, rgba(139, 69, 19, 0.08) 51%, transparent 53%);
    background-size: 30px 30px;
    pointer-events: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.argo-text {
    font-family: 'Herald Square', 'Arial Black', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgb(196, 165, 199);
    padding: 2px 4px;
    border-radius: 2px;
    position: relative;
    z-index: 10;
}

/* Footer-specific logo appearance: remove lavender rectangle and use gold text */
footer .logo .argo-text {
    background: none;
    color: var(--gold);
    padding: 0;
    border-radius: 0;
}

/* Footer holistic text in lavender to match nav background */
footer .logo .holistic-text {
    color: var(--lavender);
}

.holistic-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mahogany);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--mahogany);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.nav-menu a .one-to-one {
    font-size: 1.1em;
    line-height: 1;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background-color: var(--charcoal);
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    gap: 0.35rem;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background-color: var(--mahogany-dark);
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Menu */
.nav-menu {
    transition: all 0.3s ease;
}

/* Show hamburger on smaller screens and collapse menu */
@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: calc(var(--nav-height) + 3.8rem);
        flex-direction: column;
        background-color: var(--charcoal);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-bottom: 3px solid var(--gold);
        max-height: calc(100vh - var(--nav-height) - 3.8rem);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        color: var(--gold-light);
        font-size: 1.3rem;
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover {
        color: var(--lavender-light);
        background-color: rgba(212, 175, 55, 0.1);
    }
}

/* Hero Section */
.hero {
    min-height: calc((var(--hero-height-vh) * 1vh) - var(--nav-height));
    padding-top: var(--nav-height);
    background-color: #4A2917;
    background-image: 
        repeating-linear-gradient(45deg, transparent 0px, transparent 15px, rgba(196, 165, 199, 0.2) 15px, rgba(196, 165, 199, 0.2) 17px, transparent 17px, transparent 32px),
        repeating-linear-gradient(-45deg, transparent 0px, transparent 15px, rgba(139, 69, 19, 0.15) 15px, rgba(139, 69, 19, 0.15) 17px, transparent 17px, transparent 32px),
        url('attached_assets/hero-overlay-image.webp'),
        repeating-linear-gradient(45deg, transparent 0px, transparent 60px, rgba(212, 175, 55, 0.1) 60px, rgba(212, 175, 55, 0.1) 62px, transparent 62px, transparent 124px),
        repeating-linear-gradient(-45deg, transparent 0px, transparent 60px, rgba(0, 0, 0, 0.1) 60px, rgba(0, 0, 0, 0.1) 62px, transparent 62px, transparent 124px);
    background-size: 64px 64px, 64px 64px, 400px auto, 248px 248px, 248px 248px;
    background-position: 0 0, 32px 32px, center center, 0 0, 124px 124px;
    background-repeat: repeat, repeat, no-repeat, repeat, repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #000000;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* below content (content has z-index: 2) */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

/* Subtle dark overlay to keep text legible over images */
.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

/* Slide navigation arrows */
.hero-nav {
    position: absolute;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(45,45,45,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--gold);
    cursor: pointer;
    z-index: 4;
    transition: transform 0.15s ease, background 0.15s ease;
}
.hero-nav:hover { transform: translateY(-2px); background: rgba(45,45,45,0.45); }
.hero-nav.left { left: 20px; }
.hero-nav.right { right: 20px; }


.hero-content {
    text-align: center;
    color: var(--cream);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 0.1rem;
    font-family: 'Playfair Display', serif;
}

.argo-gold {
    font-family: 'Herald Square', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
}

.holistic-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: var(--cream);
    margin-left: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 1.5rem 2.5rem;
    display: inline-block;
    background: rgba(45, 45, 45, 0.8);
    position: relative;
    border: 3px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Art Nouveau flowing outer frame removed to show single border */
.hero-tagline::before {
    display: none;
}

/* Enneagram symbol at bottom of frame */
.hero-tagline {
    position: relative;
}



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

@keyframes meditation-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.9), 0 0 20px rgba(212, 175, 55, 0.5), 0 0 25px rgba(196, 165, 199, 0.3);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 20px rgba(196, 165, 199, 0.3);
    }
}

@keyframes enneagram-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-7.2px) rotate(1.8deg);
    }
    50% {
        transform: translateY(-3.6px) rotate(0deg);
    }
    75% {
        transform: translateY(-7.2px) rotate(-1.8deg);
    }
}

@keyframes enneagram-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.6)) 
                drop-shadow(0 0 15px rgba(212, 175, 55, 0.4))
                drop-shadow(0 0 25px rgba(196, 165, 199, 0.2));
    }
    25% {
        filter: drop-shadow(0 3px 15px rgba(212, 175, 55, 0.8)) 
                drop-shadow(0 0 25px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 35px rgba(196, 165, 199, 0.4))
                drop-shadow(0 0 45px rgba(212, 175, 55, 0.2));
    }
    50% {
        filter: drop-shadow(0 3px 20px rgba(212, 175, 55, 0.9)) 
                drop-shadow(0 0 30px rgba(212, 175, 55, 0.7))
                drop-shadow(0 0 40px rgba(196, 165, 199, 0.5))
                drop-shadow(0 0 50px rgba(212, 175, 55, 0.3))
                drop-shadow(0 0 60px rgba(196, 165, 199, 0.2));
    }
    75% {
        filter: drop-shadow(0 3px 15px rgba(212, 175, 55, 0.8)) 
                drop-shadow(0 0 25px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 35px rgba(196, 165, 199, 0.4))
                drop-shadow(0 0 45px rgba(212, 175, 55, 0.2));
    }
}

@keyframes enneagram-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.92);
    }
}



/* Art Deco Pattern Overlay */
.art-deco-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(196, 165, 199, 0.35) 47%, rgba(196, 165, 199, 0.35) 53%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(196, 165, 199, 0.35) 47%, rgba(196, 165, 199, 0.35) 53%, transparent 60%),
        linear-gradient(90deg, transparent 45%, rgba(196, 165, 199, 0.25) 48%, rgba(196, 165, 199, 0.25) 52%, transparent 55%),
        linear-gradient(0deg, transparent 45%, rgba(196, 165, 199, 0.4) 48%, rgba(196, 165, 199, 0.4) 52%, transparent 55%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.1) 20px, rgba(212, 175, 55, 0.1) 22px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(196, 165, 199, 0.15) 20px, rgba(196, 165, 199, 0.15) 22px);
    background-size: 40px 40px, 40px 40px, 80px 80px, 80px 80px, 60px 60px, 60px 60px;
    opacity: 0.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #2A1206 0%, #3D1A09 20%, #1F0C04 60%, #2A1206 100%),
        linear-gradient(45deg, transparent 40%, rgba(196, 165, 199, 0.35) 47%, rgba(196, 165, 199, 0.35) 53%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(196, 165, 199, 0.35) 47%, rgba(196, 165, 199, 0.35) 53%, transparent 60%),
        linear-gradient(90deg, transparent 45%, rgba(196, 165, 199, 0.25) 48%, rgba(196, 165, 199, 0.25) 52%, transparent 55%),
        linear-gradient(0deg, transparent 45%, rgba(196, 165, 199, 0.4) 48%, rgba(196, 165, 199, 0.4) 52%, transparent 55%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.1) 20px, rgba(212, 175, 55, 0.1) 22px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(196, 165, 199, 0.15) 20px, rgba(196, 165, 199, 0.15) 22px);
    background-size: 100% 100%, 40px 40px, 40px 40px, 80px 80px, 80px 80px, 60px 60px, 60px 60px;
    background-position: center, center, center, center, center, center, center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 
        2px 2px 0px #000000,
        -2px -2px 0px #000000,
        2px -2px 0px #000000,
        -2px 2px 0px #000000,
        4px 4px 8px rgba(0,0,0,0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    margin: 1rem auto;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 4rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Cards */
.service-card {
    background: rgba(253, 248, 240, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.3),
        0 5px 15px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--gold);
    position: relative;
    display: flex;
    flex-direction: column;
    /* restore a small top offset for titles except Yoga to keep original balance */
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.6;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        0 10px 25px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.yoga-image {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('attached_assets/36986909576_0f942ac5bb_b_1753755811136.webp');
    background-size: cover;
    background-position: center;
}

.enneagram-image {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('attached_assets/enneagram-typing-session.webp?v=1');
    background-size: cover;
    background-position: center 22%;
}

.meditation-image {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('attached_assets/meditationatnight_1754185209919.webp');
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tighter top padding for the Yoga service card title to match others visually */
.service-card-yoga .service-content {
    padding-top: 0.9rem; /* slightly tighter than others */
}

/* Specific tweak for Enneagram card to align its header exactly */
.service-card-enneagram .service-content {
    padding-top: 1.35rem;
}

/* Extra push for the Enneagram title if it still appears too high */
.service-card-enneagram .service-title {
    margin-top: 1.08rem; /* tiny micro-adjust upward */
}

/* keep other non-enneagram cards slightly lower for visual balance */
.service-card:not(.service-card-yoga):not(.service-card-enneagram) .service-content {
    padding-top: 1.2rem;
}

.enneagram-icon,
.meditation-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Herald Square', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--mahogany);
    margin-top: 1rem; /* final nudge down for alignment */
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-description {
    color: var(--mahogany);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.15rem; /* increased ~15% from 1rem */
}

/* Service Buttons */
.service-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ensure button wrappers keep consistent spacing so buttons line up */
.btn-wrap {
    display: block;
}

/* push only yoga button wrapper down to match Enneagram button placement */
.service-card-yoga .btn-wrap {
    margin-top: 1.1rem; /* nudged slightly lower */
}

/* lift Enneagram button slightly */
.service-card-enneagram .btn-wrap {
    margin-top: 0.6rem; /* slightly less than yoga */
}

.yoga-btn {
    background: var(--gold);
    color: var(--charcoal);
}

.yoga-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.enneagram-btn {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--gold) 100%);
    color: var(--charcoal);
}

.enneagram-btn:hover {
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
}

.meditation-btn {
    background: var(--gold);
    color: var(--charcoal);
}

.meditation-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    background: rgba(196, 165, 199, 0.95);
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 47%, rgba(212, 175, 55, 0.15) 49%, rgba(212, 175, 55, 0.15) 51%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(139, 69, 19, 0.08) 49%, rgba(139, 69, 19, 0.08) 51%, transparent 53%);
    background-size: 30px 30px;
    pointer-events: none;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: 'Herald Square', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--mahogany);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-subtitle {
    font-size: 1.4rem;
    color: var(--mahogany);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 25px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    background: rgba(253, 248, 240, 0.9);
    color: var(--mahogany);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--mahogany);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: var(--cream);
}

.newsletter-input::placeholder {
    color: rgba(139, 69, 19, 0.6);
    font-style: italic;
}

.newsletter-btn {
    padding: 1.15rem 2.25rem;
    background: var(--gold);
    color: var(--mahogany);
    border: none;
    border-radius: 28px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto; /* let min-height control */
    }
    :root {
        --hero-height-vh: 55; /* tablet */
    }
    .hero {
        min-height: calc((var(--hero-height-vh) * 1vh) - var(--nav-height));
    }
    .hero-title {
        font-size: 3rem;
    }

    .argo-gold {
        letter-spacing: 4px;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .argo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .holistic-text {
        font-size: 1.1rem;
    }

    .logo {
        flex-direction: column;
        gap: 0.2rem;
    }

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

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        max-width: 200px;
    }

    .newsletter-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
    }
    :root {
        --hero-height-vh: 50; /* mobile */
    }
    .hero {
        min-height: calc((var(--hero-height-vh) * 1vh) - var(--nav-height));
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .holistic-script {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

    .services-container {
        padding: 0 1rem;
    }

    .newsletter-container {
        padding: 0 1rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }
}

@keyframes letter-fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.argo-gold .letter {
    display: inline-block;
    animation: letter-fall 0.8s ease-out forwards;
    opacity: 0;
}

.argo-gold .letter:nth-child(1) {
    animation-delay: 0.2s;
}

.argo-gold .letter:nth-child(2) {
    animation-delay: 0.4s;
}

.argo-gold .letter:nth-child(3) {
    animation-delay: 0.6s;
}

.argo-gold .letter:nth-child(4) {
    animation-delay: 0.8s;
}

.boat-waves {
    animation: enneagram-float 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Boat placement relative to enneagram symbol */
.boat-container {
    position: relative;
    z-index: 1;
    /* Nudge upward relative to enneagram */
    margin-top: 0;
    transform: translateY(-22px);
    will-change: transform;
}

footer .logo {
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* Floating action button subtle movement */
.fab-float {
	animation: fab-bob 4s ease-in-out infinite;
	will-change: transform;
}

@keyframes fab-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}