/* ============================================
   HEAL OUR SPACES — Final Stylesheet
   Palette: Sage green + clean minimal
   ============================================ */

:root {
    --bg: #FAFAF8;
    --bg-warm: #F5F3EF;
    --bg-accent: #EDEAE4;
    --text: #2C2C2C;
    --text-soft: #6B6560;
    --text-light: #9B9590;
    --accent: #6B7F5E;
    --accent-hover: #556A49;
    --accent-light: #A8B89E;
    --white: #FFFFFF;
    --border: #E2DED6;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }
em { font-style: italic; font-weight: 300; }

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Logo images */
.nav-icon-img {
    height: 52px;
    width: 52px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.6rem;
}

.footer-logo-img {
    height: 130px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.nav.scrolled { padding: 1rem 3rem; border-bottom-color: var(--border); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-soft);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s ease; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #B8C9A8, transparent);
    top: -10%; right: -5%;
}

.orb-2 {
    display: none;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #A8B89E, transparent);
    top: 40%; left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; text-align: center; max-width: 750px; padding: 0 2rem; }

.hero-tag {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 2rem;
}

.hero-title { margin-bottom: 1.5rem; color: var(--text); }

.hero-sub {
    font-size: 1.1rem; color: var(--text-soft);
    max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}

.scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   INTRO
   ============================================ */
.intro { padding: 8rem 0; }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { color: var(--text-soft); margin-bottom: 1rem; font-size: 1.05rem; }

.intro-visual { display: flex; justify-content: center; align-items: center; }

.circle-stack { position: relative; width: 300px; height: 300px; }

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

.circle-1 { width: 300px; height: 300px; }
.circle-2 { width: 200px; height: 200px; animation-delay: -2s; }
.circle-3 { width: 100px; height: 100px; animation-delay: -4s; background: rgba(168, 184, 158, 0.1); }

.circle-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    color: var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-brief { padding: 6rem 0 8rem; background: var(--bg-warm); }
.how-brief h2 { margin-bottom: 4rem; }

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

.step { text-align: center; padding: 2rem; }

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 300;
    color: var(--accent-light); margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.75rem; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 3rem 0 0;
    padding: 2rem;
    border-top: 1px solid var(--border);
}

.process-step {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
}

.process-divider {
    color: var(--accent-light);
    font-size: 0.75rem;
}

/* ============================================
   SIGNS
   ============================================ */
.signs { padding: 8rem 0; }

.signs-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

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

.sign-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid var(--border);
}

.sign-item:last-child { border-bottom: none; }

.sign-dash {
    flex-shrink: 0; width: 20px; height: 1px;
    background: var(--accent); margin-top: 0.85rem;
}

.sign-item p { color: var(--text-soft); font-size: 1rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 6rem 0; background: var(--bg-warm); }

.testimonials h2 { margin-bottom: 3rem; }

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover { border-color: var(--accent-light); }

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   CTA
   ============================================ */
.cta { padding: 8rem 0; background: var(--bg-warm); }
.cta h2 { margin-bottom: 1rem; }
.cta p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 2.5rem; }

.cta-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }

.footer-grid {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 500; margin-bottom: 0.5rem;
}

.footer-tagline { color: var(--text-light); font-size: 0.9rem; }

.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-soft); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--text); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* ============================================
   PAGE STYLES
   ============================================ */
.page-hero {
    padding: 10rem 0 5rem; text-align: center;
    background: var(--bg); position: relative;
}

.page-hero .section-tag { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-soft); max-width: 550px; margin: 0 auto; font-size: 1.05rem; }

.content-section { padding: 5rem 0; }
.content-section.alt { background: var(--bg-warm); }

/* Prose */
.prose { max-width: 700px; font-size: 1.05rem; line-height: 1.8; color: var(--text-soft); }
.prose p { margin-bottom: 1.25rem; }
.prose h3 { color: var(--text); margin: 2rem 0 0.75rem; }

/* Service Cards */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

.service-card:hover { border-color: var(--accent-light); }

.service-card.featured {
    border-color: var(--accent-light);
    box-shadow: 0 4px 30px rgba(107, 127, 94, 0.08);
}

.service-card-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 1.5rem;
    flex-wrap: wrap; gap: 1rem;
}

.service-card h3 { font-family: var(--font-display); font-size: 1.6rem; }

.service-duration { font-size: 0.85rem; color: var(--text-light); margin-top: 0.25rem; }

.service-price {
    font-family: var(--font-display);
    font-size: 1.6rem; color: var(--accent);
}

.service-card > p { color: var(--text-soft); margin-bottom: 1rem; font-size: 1rem; }

.service-includes {
    list-style: none; margin-top: 1.5rem;
    padding-top: 1.5rem; border-top: 1px solid var(--border);
}

.service-includes li {
    padding: 0.4rem 0; color: var(--text-soft);
    font-size: 0.95rem; display: flex;
    align-items: center; gap: 0.75rem;
}

.service-includes li::before {
    content: ''; width: 16px; height: 1px;
    background: var(--accent); flex-shrink: 0;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }

.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; background: none; border: none; width: 100%;
    text-align: left; font-family: var(--font-display);
    font-size: 1.25rem; color: var(--text); padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    font-size: 1.5rem; font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent); flex-shrink: 0; margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1rem; }
.faq-answer p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; padding-top: 0.5rem; }

/* Contact Centered */
.contact-centered {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.contact-centered h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.contact-centered p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; }

/* Contact */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: start;
}

.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { color: var(--text-soft); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }

.contact-detail {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 0; color: var(--text-soft); font-size: 0.95rem;
}

.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

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

.form-group label {
    display: block; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-soft); margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.9rem 1rem;
    border: 1px solid var(--border); background: var(--white);
    font-family: var(--font-body); font-size: 0.95rem;
    font-weight: 300; color: var(--text);
    transition: border-color 0.3s ease; outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }

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

.booking-link {
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--border); text-align: center;
}

.booking-link p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .nav { padding: 1.2rem 1.5rem; }
    .nav-toggle { display: flex; }

    .nav-links {
        display: none; position: absolute; top: 100%;
        left: 0; right: 0; background: var(--bg);
        flex-direction: column; padding: 2rem; gap: 1.5rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .intro-grid, .signs-layout, .contact-grid {
        grid-template-columns: 1fr; gap: 3rem;
    }

    .steps { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 0 1.5rem; }
    .footer-grid { flex-direction: column; gap: 2rem; }

    .circle-stack { width: 220px; height: 220px; }
    .circle-1 { width: 220px; height: 220px; }
    .circle-2 { width: 150px; height: 150px; }
    .circle-3 { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }
    .service-card { padding: 2rem 1.5rem; }
    .service-card-header { flex-direction: column; }
}
