/* ============================================================
   TINY TREASURES BY MJ — Component Styles
   Hero, Collections, Process, Gallery, Reviews, Workshops,
   FAQ, Contact, Footer
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap .hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback gradient when no video */
.hero-fallback {
    background: linear-gradient(135deg,
            #C85A36 0%,
            #E07E77 35%,
            #F4C5C0 65%,
            #ECA09A 100%);
    position: absolute;
    inset: 0;
}

/* Animated blob background */
.hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #C85A36, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatA 12s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #F4C5C0, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: floatB 10s ease-in-out infinite 2s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #E8D5C4, transparent 70%);
    top: 40%;
    left: 60%;
    animation: floatC 9s ease-in-out infinite 1s;
}

/* Gradient overlay — tuned for video legibility */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg,
            rgba(45, 35, 32, 0.35) 0%,
            rgba(200, 90, 54, 0.25) 30%,
            rgba(45, 35, 32, 0.60) 80%,
            rgba(45, 35, 32, 0.75) 100%);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    padding: 0.4rem 1.2rem;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: #fff;
    text-shadow: 0 2px 40px rgba(45, 35, 32, 0.25);
}

.hero-title em {
    font-style: italic;
    color: var(--blush-200);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: fadeIn 1.5s ease infinite alternate;
}

/* Floating decoration */
.hero-ornament {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero-ornament-1 {
    top: 15%;
    left: 8%;
    font-size: 2.5rem;
    animation: floatA 7s ease-in-out infinite;
    opacity: 0.6;
    filter: drop-shadow(0 4px 12px rgba(200, 90, 54, 0.3));
}

.hero-ornament-2 {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation: floatB 9s ease-in-out infinite 1s;
    opacity: 0.5;
}

.hero-ornament-3 {
    bottom: 25%;
    left: 6%;
    font-size: 1.5rem;
    animation: floatC 6s ease-in-out infinite 0.5s;
    opacity: 0.4;
}

.hero-ornament-4 {
    bottom: 30%;
    right: 8%;
    font-size: 1.8rem;
    animation: floatD 8s ease-in-out infinite 1.5s;
    opacity: 0.5;
}

/* ════════════════════════════════════════════════════════════
   2. FEATURED COLLECTIONS
   ════════════════════════════════════════════════════════════ */
.collections-section {
    background: var(--cream-warm);
    padding-block: clamp(5rem, 9vw, 8rem);
}

/* Masonry grid */
.masonry-grid {
    columns: 3;
    column-gap: var(--space-lg);
}

.product-card {
    break-inside: avoid;
    margin-bottom: var(--space-lg);
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    transition: transform 0.35s var(--ease-spring),
        box-shadow 0.35s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.product-img-wrap {
    overflow: hidden;
    position: relative;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 35, 32, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
}

.product-card:hover .product-img-wrap::after {
    opacity: 1;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-img {
    transform: scale(1.07);
}

.product-info {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.product-category {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-xs);
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

/* Card badge */
.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 1;
}

/* Mobile widget cards */
@media (max-width: 900px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 580px) {
    .masonry-grid {
        columns: 1;
    }
}

/* ════════════════════════════════════════════════════════════
   3. THE PROCESS
   ════════════════════════════════════════════════════════════ */
.process-section {
    background: linear-gradient(180deg, var(--blush-50) 0%, var(--cream) 100%);
    padding-block: clamp(5rem, 9vw, 8rem);
    overflow: hidden;
}

.process-layout {
    max-width: 800px;
    margin: 0 auto;
}

/* Process content panel */
.process-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.process-intro h2 {
    margin-bottom: var(--space-md);
    text-align: center;
}

.process-intro p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
    border: 1.5px solid transparent;
}

.process-step:hover {
    background: var(--blush-100);
    transform: translateY(-2px);
}

.process-step.active {
    background: #fff;
    border-color: var(--blush-200);
    box-shadow: var(--shadow-md);
}

.process-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blush-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
    border: 1px solid var(--blush-200);
}

.process-step.active .process-step-icon {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
    transform: scale(1.1);
}

.process-step-body h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.process-step-body p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.process-step.active .process-step-body p {
    max-height: 200px;
}

@media (max-width: 768px) {
    .process-layout {
        max-width: 100%;
        padding-inline: 0;
    }
}

/* ════════════════════════════════════════════════════════════
   4. GALLERY CAROUSEL
   ════════════════════════════════════════════════════════════ */
.gallery-section {
    background: var(--text-primary);
    padding-block: clamp(5rem, 9vw, 8rem);
    overflow: hidden;
}

.gallery-section .section-header h2,
.gallery-section .section-header p {
    color: var(--cream);
}

.gallery-section .section-header .label-tag {
    color: var(--blush-200);
}

.gallery-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-2xl);
    user-select: none;
}

.gallery-track {
    display: flex;
    gap: var(--space-lg);
    padding-inline: var(--space-lg);
    cursor: grab;
    will-change: transform;
}

.gallery-track.dragging {
    cursor: grabbing;
}

/* Flip cards */
.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 380px;
    position: relative;
}

.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1400px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.flip-card:hover .flip-card-front img {
    transform: scale(1.04);
}

.flip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 35, 32, 0.7) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.flip-overlay-text {
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 500;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--muted-rose) 100%);
    color: #fff;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-sm);
}

.flip-back-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.flip-back-row {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: var(--text-sm);
    opacity: 0.9;
}

.flip-back-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.flip-back-label {
    font-weight: 600;
    display: block;
    font-size: var(--text-xs);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Click-to-flip hint */
.flip-hint {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
}

/* Carousel controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.gallery-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
}

.gallery-btn:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: scale(1.08);
}

.gallery-dots {
    display: flex;
    gap: var(--space-sm);
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.gallery-dot.active {
    background: var(--terracotta);
    transform: scale(1.4);
}

/* ════════════════════════════════════════════════════════════
   5. TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--cream-warm);
    padding-block: clamp(5rem, 9vw, 8rem);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    position: relative;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--blush-100);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.testimonial-card:nth-child(1) {
    background: linear-gradient(135deg, #fff 0%, var(--blush-50) 100%);
}

.testimonial-card:nth-child(3) {
    background: linear-gradient(135deg, var(--blush-50) 0%, #fff 100%);
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    color: var(--blush-200);
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--blush-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Trust indicators */
.trust-strip {
    margin-top: var(--space-3xl);
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background: #fff;
    border: 1px solid var(--blush-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-spring);
    cursor: default;
}

.trust-item:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.trust-item:hover .trust-label {
    color: #fff;
}

.trust-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-out);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        animation: none !important;
    }
}

/* ════════════════════════════════════════════════════════════
   6. WORKSHOPS & EVENTS
   ════════════════════════════════════════════════════════════ */
.workshops-section {
    background: var(--blush-50);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.workshop-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

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

.workshop-img {
    height: 200px;
    background: linear-gradient(135deg, var(--terracotta), var(--blush-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.workshop-body {
    padding: var(--space-xl);
}

.workshop-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blush-100);
    color: var(--terracotta);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.9rem;
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.workshop-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.workshop-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.workshop-meta-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.workshop-meta-row span:first-child {
    font-size: 1rem;
}

.workshop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--blush-100);
}

.workshop-price {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--terracotta);
}

.workshop-seats {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 2px;
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 35, 32, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 5vw, 3rem);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(24px) scale(0.97);
    transition: transform var(--duration-base) var(--ease-spring);
    position: relative;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blush-100);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.modal-close:hover {
    background: var(--terracotta);
    color: #fff;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
    .workshops-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════════
   7. FORMS (Shared)
   ════════════════════════════════════════════════════════════ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid var(--clay-beige);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    color: var(--text-primary);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(200, 90, 54, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5A56' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

/* ════════════════════════════════════════════════════════════
   8. FAQ SECTION
   ════════════════════════════════════════════════════════════ */
.faq-section {
    background: var(--cream);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.faq-list {
    max-width: 780px;
    margin-inline: auto;
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--blush-100);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-xl) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
}

.faq-item.open .faq-question {
    color: var(--terracotta);
}

.faq-chevron {
    font-size: 1rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-spring);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--terracotta);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-sm);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ════════════════════════════════════════════════════════════
   9. CONTACT SECTION
   ════════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--cream-warm);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--blush-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.contact-detail:hover .contact-detail-icon {
    background: var(--terracotta);
    transform: scale(1.08);
}

.contact-detail-body strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.contact-detail-body span,
.contact-detail-body a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: color 0.2s;
}

.contact-detail-body a:hover {
    color: var(--terracotta);
}

.contact-socials {
    display: flex;
    gap: var(--space-md);
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--blush-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.social-btn:hover {
    background: var(--terracotta);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(200, 90, 54, 0.3);
}

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--blush-100);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.contact-form-sub {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════════
   10. WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════════ */
.whatsapp-fab-wrap {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

.whatsapp-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    border: none;
}

.whatsapp-fab:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-tooltip {
    background: var(--text-primary);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.2s, transform 0.2s var(--ease-spring);
    pointer-events: none;
}

.whatsapp-fab-wrap:hover .whatsapp-fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp CTA section */
.whatsapp-section {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--muted-rose) 100%);
    padding-block: clamp(4rem, 7vw, 6rem);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.whatsapp-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.whatsapp-content {
    position: relative;
    z-index: 1;
}

.whatsapp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.whatsapp-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.whatsapp-btns {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #fff;
    color: var(--terracotta);
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ════════════════════════════════════════════════════════════
   11. FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
    background: var(--text-primary);
    color: var(--cream);
    padding-block: clamp(3rem, 6vw, 5rem) var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: var(--space-3xl);
}

.footer-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-md);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.footer-brand-desc {
    font-size: var(--text-sm);
    color: rgba(253, 248, 245, 0.55);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: var(--space-xl);
}

.footer-col-title {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(253, 248, 245, 0.4);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(253, 248, 245, 0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--blush-200);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(253, 248, 245, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-copy {
    font-size: var(--text-xs);
    color: rgba(253, 248, 245, 0.35);
}

.footer-copy a {
    color: var(--blush-200);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(253, 248, 245, 0.35);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--blush-200);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════
   12. BRAND STORY / ABOUT STRIP
   ════════════════════════════════════════════════════════════ */
.brand-strip {
    background: var(--clay-beige);
    padding: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.brand-strip-inner {
    display: flex;
    gap: var(--space-4xl);
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-strip-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--terracotta);
    font-weight: 500;
}

.brand-strip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.5;
}

/* ════════════════════════════════════════════════════════════
   13. STATS / NUMBERS SECTION
   ════════════════════════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt));
    padding-block: clamp(3rem, 6vw, 5rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-top: var(--space-sm);
    font-weight: 500;
}

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

/* ════════════════════════════════════════════════════════════
   14. SCROLL PROGRESS
   ════════════════════════════════════════════════════════════ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blush-200), var(--terracotta), var(--muted-rose));
    transform-origin: left;
    transform: scaleX(0);
    border-radius: 0 2px 2px 0;
    transition: transform 0.1s linear;
}

/* ════════════════════════════════════════════════════════════
   15. TOAST NOTIFICATION
   ════════════════════════════════════════════════════════════ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
}

.toast {
    background: var(--text-primary);
    color: var(--cream);
    border-radius: var(--radius-full);
    padding: 0.8rem 1.8rem;
    font-size: var(--text-sm);
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeUp 0.4s var(--ease-spring);
}

.toast.success {
    background: #16A34A;
}

.toast.error {
    background: var(--terracotta);
}