/* The Rooted Human - Main Stylesheet */

/* CSS Variables */
:root {
    --color-sage: #8B9A7D;
    --color-sage-light: #A8B89A;
    --color-sage-dark: #6B7A5D;
    --color-cream: #FAF8F5;
    --color-warm-white: #FFFDF9;
    --color-charcoal: #3D3D3D;
    --color-text: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-accent: #C4A574;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

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

a:hover {
    color: var(--color-sage);
}

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent header for hero pages */
.site-header.transparent {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
    box-shadow: none;
}

.site-header.transparent .logo,
.site-header.transparent .nav-menu a,
.site-header.transparent .header-phone {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.site-header.transparent .btn-calendar {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
}

.site-header.transparent .btn-calendar:hover {
    background: rgba(255,255,255,0.3);
}

/* When scrolled, revert to solid header */
.site-header.transparent.scrolled {
    background: rgba(255, 253, 249, 0.95);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header.transparent.scrolled .logo,
.site-header.transparent.scrolled .nav-menu a,
.site-header.transparent.scrolled .header-phone {
    color: var(--color-charcoal);
    text-shadow: none;
}

.site-header.transparent.scrolled .btn-calendar {
    background: var(--color-sage);
    border: none;
    color: white;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    font-weight: 500;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-menu .btn-calendar {
    background: var(--color-sage);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-menu .btn-calendar:hover {
    background: var(--color-sage-dark);
}

.nav-menu .btn-calendar::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile toggle on transparent header */
.site-header.transparent .mobile-menu-toggle span {
    background: white;
}

.site-header.transparent.scrolled .mobile-menu-toggle span {
    background: var(--color-charcoal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-sage-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-sage-dark);
    border: 2px solid var(--color-sage);
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-sage-dark);
}

/* Hero Section */
/* Full-Screen Hero */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

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

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
}

.hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-center .hero-tagline {
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero-center h1 {
    color: white;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4), 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: 500;
}

.hero-center .hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-center .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-center .hero-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-white {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

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

/* Value Prop Section */
.value-prop {
    background: var(--color-sage);
    padding: 3rem 0;
    text-align: center;
}

.value-text {
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-heading);
    font-style: italic;
}

/* Legacy hero styles - keep for other pages */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%238B9A7D" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    color: var(--color-sage);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    max-width: 520px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Quote Block */
.quote-block {
    background: var(--color-sage);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.quote-block blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.section-label {
    color: var(--color-sage);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Is This You Section */
.is-this-you {
    background: var(--color-cream);
}

.is-this-you-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.is-this-you ul {
    list-style: none;
    margin: 2rem 0;
}

.is-this-you li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(139, 154, 125, 0.2);
}

.is-this-you li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: bold;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-grid img {
    border-radius: 15px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.image-grid img:first-child {
    grid-column: span 2;
    height: 280px;
    object-position: center 20%;
}

/* Offerings Section */
.offerings {
    background: var(--color-warm-white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(139, 154, 125, 0.1);
}

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

.offering-badge {
    display: inline-block;
    background: var(--color-sage-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.offering-badge.free {
    background: var(--color-accent);
}

.offering-card h3 {
    margin-bottom: 1rem;
}

.offering-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.offering-meta {
    font-size: 0.875rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.5rem;
}

.offering-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--color-sage);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-banner p {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Programs Section */
.programs {
    background: var(--color-cream);
}

.programs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 154, 125, 0.2);
}

.program-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.program-item h3 {
    margin-bottom: 0.75rem;
}

.program-item p {
    color: var(--color-text-light);
}

.programs-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Testimonial */
.testimonial {
    background: var(--color-warm-white);
    padding: 4rem 0;
}

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

.testimonial blockquote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: var(--color-sage-dark);
    font-style: normal;
}

/* About Preview */
.about-preview {
    background: var(--color-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.about-text .signature {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-top: 1.5rem;
}

/* About Page Specific */
.about-hero {
    padding: 8rem 0 4rem;
    background: var(--color-cream);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.about-hero-text {
    padding-top: 1rem;
}

.about-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.about-hero-text h2 {
    font-size: 1.75rem;
    color: var(--color-sage-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.about-full {
    background: var(--color-warm-white);
    padding: 4rem 0;
}

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

.about-full-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-full-content .highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    font-style: italic;
    text-align: center;
    margin: 2.5rem 0;
}

/* Contact Form */
.contact-section {
    background: var(--color-cream);
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(139, 154, 125, 0.3);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(139, 154, 125, 0.1);
}

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

/* Calendar Page */
.calendar-hero {
    padding: 10rem 0 3rem;
    background: var(--color-cream);
    text-align: center;
}

.calendar-hero h1 {
    margin-bottom: 1rem;
}

.calendar-container {
    background: var(--color-warm-white);
    padding: 3rem 0;
    min-height: 600px;
}

.calendar-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 500px;
}

/* Offerings Page */
.offerings-hero {
    padding: 10rem 0 3rem;
    background: var(--color-cream);
    text-align: center;
}

.offerings-page-grid {
    display: grid;
    gap: 4rem;
    padding: 4rem 0;
}

.offering-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.offering-full:nth-child(even) {
    direction: rtl;
}

.offering-full:nth-child(even) > * {
    direction: ltr;
}

.offering-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.offering-full-content {
    padding: 3rem;
}

.offering-full-content h2 {
    margin-bottom: 1rem;
}

.offering-full-content .price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-sage-dark);
    margin: 1.5rem 0;
}

/* Forest Banner */
.forest-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.forest-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Footer */
.site-footer {
    background: var(--color-charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-quote {
    font-size: 0.9rem;
    opacity: 0.7;
    border-left: 2px solid var(--color-sage);
    padding-left: 1rem;
}

.footer-links h4,
.footer-cta h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.7;
    gap: 0.5rem;
}

.footer-legal {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-banner a {
    color: var(--color-sage-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-banner button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--color-sage);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-sage-dark);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.cookie-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .is-this-you-content,
    .programs-content,
    .about-content,
    .about-hero-content,
    .offering-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offering-full:nth-child(even) {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-fullscreen {
        min-height: 100svh;
        padding-top: 80px;
    }
    
    .hero-center {
        padding: 1.5rem;
        padding-top: 2rem;
    }
    
    .hero-center .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-center h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-center .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-center .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-center .hero-cta .btn {
        width: 100%;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .forest-banner {
        height: 150px;
    }
    
    /* About page mobile */
    .about-hero {
        padding: 6rem 0 3rem;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero-text h2 {
        font-size: 1.35rem;
    }
    
    /* Image grid mobile */
    .image-grid img:first-child {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-warm-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .image-grid img:first-child {
        grid-column: span 1;
    }

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

    section {
        padding: 3rem 0;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-sage);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.header-phone svg {
    color: var(--color-sage);
}

.header-phone:hover {
    color: var(--color-sage);
}

/* FAQ Section */
.faq-section {
    background: var(--color-warm-white);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-charcoal);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-sage);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Footer Contact Info */
.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.footer-contact a {
    color: var(--color-sage-light);
}

.footer-contact a:hover {
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: white;
}

/* Improved Footer Quote Visibility */
.footer-quote {
    color: rgba(255,255,255,0.85);
}

/* Botanical Pattern Background */
.bg-botanical {
    position: relative;
}
.bg-botanical::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/pattern-botanical.webp');
    background-size: 800px auto;
    background-repeat: repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.bg-botanical > * {
    position: relative;
    z-index: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-sage { color: var(--color-sage); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Mobile Menu Fix */
@media (max-width: 768px) {
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        margin-right: 0.5rem;
    }
    
    /* Transparent header on mobile */
    .site-header.transparent {
        background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-center {
        padding: 1rem;
        padding-top: 1.5rem;
    }
    
    .hero-center .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .hero-center h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-center .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-center .hero-note {
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
