/* ============================================
   MIRRORED MINDS — Stylesheet
   Color palette derived from brand artwork:
   - Deep Purple:   #4a3a6b
   - Soft Lavender: #a88fc2
   - Pale Lilac:    #d7cce5
   - Cream:         #faf7f2
   - Warm Beige:    #e8ddd0
   - Sage Green:    #7a8c6e
   - Soft Gold:     #c9a96e
   - Deep Night:    #2d2248
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-deep: #4a3a6b;
    --purple-medium: #6b5b8a;
    --lavender: #a88fc2;
    --lilac: #d7cce5;
    --lilac-light: #ebe5f2;
    --cream: #faf7f2;
    --beige: #e8ddd0;
    --sage: #7a8c6e;
    --sage-light: #a8b89e;
    --gold: #c9a96e;
    --night: #2d2248;
    --text-dark: #3a3347;
    --text-body: #5a5168;
    --text-light: #8a7f96;
    --white: #ffffff;
    --shadow-soft: 0 4px 24px rgba(74, 58, 107, 0.08);
    --shadow-medium: 0 8px 32px rgba(74, 58, 107, 0.12);
    --shadow-card: 0 2px 16px rgba(74, 58, 107, 0.07);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    color: var(--purple-deep);
    line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
a { color: var(--purple-medium); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-deep); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.text-center { text-align: center; }

.section-preheading {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 0.5rem;
}

.section-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-medium));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 58, 107, 0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-medium), var(--lavender));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 58, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--purple-deep);
    border: 1.5px solid var(--lilac);
}
.btn-secondary:hover {
    background: var(--lilac-light);
    border-color: var(--lavender);
    color: var(--purple-deep);
}

.btn-outline {
    background: transparent;
    color: var(--purple-medium);
    border: 1.5px solid var(--lavender);
    padding: 0.75rem 1.8rem;
}
.btn-outline:hover {
    background: var(--purple-deep);
    border-color: var(--purple-deep);
    color: var(--white);
}

.btn-block { display: block; width: 100%; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(215, 204, 229, 0.3);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--purple-deep);
    letter-spacing: 0.5px;
}
.nav-logo:hover { color: var(--purple-medium); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    border-radius: 50px;
    transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--purple-deep);
    background: var(--lilac-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--purple-deep);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--lilac-light) 40%, var(--cream) 70%, rgba(168, 184, 158, 0.1) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--lavender), transparent);
    top: -10%; right: -10%;
}
.shape-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--sage-light), transparent);
    bottom: 5%; left: -5%;
}
.shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--gold), transparent);
    top: 30%; left: 15%;
    opacity: 0.1;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-preheading {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--purple-deep), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    border-left: 2px solid var(--lavender);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(215, 204, 229, 0.4);
    aspect-ratio: 1;
    max-width: 440px;
    margin-left: auto;
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    animation: fadeInUp 1s ease 1s both;
}
.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid var(--text-light);
    border-bottom: 1.5px solid var(--text-light);
    transform: rotate(45deg);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.5; transform: translateY(0); }
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}
.about-image-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--lilac);
    border-radius: var(--radius-lg);
    top: 1.5rem;
    left: 1.5rem;
    z-index: 0;
}

.about-text h2 {
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-body);
    line-height: 1.8;
}
.about-text .btn-outline {
    margin-top: 0.5rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: linear-gradient(180deg, var(--cream) 0%, var(--lilac-light) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform var(--transition);
}
.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--lilac);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--lavender);
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    border: 1px solid rgba(215, 204, 229, 0.3);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-card.featured {
    border: 2px solid var(--lavender);
    background: linear-gradient(180deg, var(--lilac-light) 0%, var(--cream) 30%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--purple-deep), var(--lavender));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.service-card-header {
    padding: 2rem 2rem 1rem;
}

.service-duration {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 0.5rem;
}

.service-card-body {
    padding: 0 2rem;
    flex: 1;
}

.service-features {
    list-style: none;
}
.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-body);
}
.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-size: 0.7rem;
    top: 0.55rem;
}

.service-card-footer {
    padding: 1.5rem 2rem 2rem;
}

.service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--purple-deep);
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(180deg, var(--lilac-light) 0%, var(--cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--purple-medium);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--white);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--lilac-light), rgba(168, 184, 158, 0.15));
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    margin-bottom: 0.75rem;
}
.newsletter-text p:last-child {
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-inline {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--lilac);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--lavender);
    box-shadow: 0 0 0 3px rgba(168, 143, 194, 0.15);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--night) 0%, var(--purple-deep) 100%);
    color: var(--lilac-light);
    padding: 4.5rem 0;
}
.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: var(--lilac);
    margin-bottom: 2rem;
}
.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--lavender), var(--sage));
}
.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--sage), var(--lavender));
}
.cta-section .btn-secondary {
    color: var(--white);
    border-color: rgba(215, 204, 229, 0.4);
}
.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--lavender);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--night);
    color: var(--lilac);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.footer h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul a {
    color: var(--lilac);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(215, 204, 229, 0.15);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== PAGE HERO (for subpages) ===== */
.page-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(160deg, var(--cream) 0%, var(--lilac-light) 60%, var(--cream) 100%);
    position: relative;
}
.page-hero h1 {
    background: linear-gradient(135deg, var(--purple-deep), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== SERVICE DETAIL (services page) ===== */
.service-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail.reverse {
    direction: rtl;
}
.service-detail.reverse > * {
    direction: ltr;
}

.service-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-detail .service-duration {
    margin-bottom: 1rem;
}

.service-detail .service-price {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

/* ===== BOOKING PAGE ===== */
.booking-section {
    background: var(--white);
}

.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.booking-note-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    border-left: 3px solid var(--lavender);
}

.booking-calendar-wrapper {
    min-height: 500px;
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--lilac);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}
.contact-info-card h3 { margin-bottom: 1.5rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lilac-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--lilac);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lavender);
    box-shadow: 0 0 0 3px rgba(168, 143, 194, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--lilac);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--purple-deep);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--purple-medium); }

.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--lavender);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}
.faq-answer p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-tagline { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image-frame { max-width: 340px; margin: 0 auto; }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .about-image-frame { max-width: 300px; margin: 0 auto; }
    .about-accent { display: none; }

    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 3rem auto 0; }

    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
    }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }

    .service-detail { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }

    .booking-info-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 5rem 1rem 2rem; min-height: auto; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--lilac);
        box-shadow: var(--shadow-soft);
    }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(5px) translateX(5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5px) translateX(5px); }

    .form-group-inline { flex-direction: column; }
    .scroll-indicator { display: none; }
}
