/*
 * Pratinidhi Media Solutions — Mic & Minds Studio Page
 * Dark-theme stylesheet. Extends global tokens — does NOT override base variables.
 * Strategy: Mobile-first. Base styles → desktop via media queries.
 */

/* ==========================================================================
   Page Root — Dark Canvas Override
   Scoped to .mm-page so we never bleed onto other pages.
   ========================================================================== */
.mm-page {
    background-color: #0A0A0A;
    color: #EDEDED;
}

/* Dark-mode header treatment — fully transparent on hero, no visible border */
.mm-page .site-header {
    background: transparent;
    /* No border-bottom here — it shows as a yellow pixel over the hero image */
    border-bottom: none;
}

.mm-page .site-header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Extremely subtle separator, only visible when scrolled away from hero */
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.6);
}

.mm-page .nav-links a,
.mm-page .nav-toggle .hamburger-bar {
    color: #EDEDED;
}

.mm-page .nav-toggle .hamburger-bar {
    background-color: #EDEDED;
}

/* Footer dark match */
.mm-page .site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(229, 163, 42, 0.15);
}

/* ==========================================================================
   Shared Section Utilities
   ========================================================================== */
.mm-section {
    padding: 5rem 1.25rem;
}

.mm-container {
    max-width: 1280px;
    margin: 0 auto;
}

.mm-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.mm-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
}

.mm-heading em {
    font-style: italic;
    color: var(--color-accent);
}

.mm-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #999;
}

.mm-divider {
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin: 1.5rem 0;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .mm-section {
        padding: 6rem 2rem;
    }
}

@media (min-width: 1024px) {
    .mm-section {
        padding: 8rem 2rem;
    }
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.mm-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #050505;
    padding: 6rem 1.5rem 3rem;
}

/* Hero BG — inline style overrides the default background-image for the real photo.
   We still keep the JS-driven Ken Burns scale via .mm-loaded on .mm-hero-bg */
.mm-hero-bg {
    position: absolute;
    inset: 0;
    /* fallback — overridden by inline style when real image is set */
    background-image:
        linear-gradient(to bottom,
            rgba(5,5,5,0.62) 0%,
            rgba(5,5,5,0.38) 40%,
            rgba(5,5,5,0.88) 80%,
            rgba(5,5,5,1) 100%
        ),
        url('../images/micnmind5.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
    will-change: transform;
}

.mm-hero-bg.mm-loaded {
    transform: scale(1);
}

/* Noise texture grain for film effect */
.mm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.mm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.mm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.mm-hero-eyebrow::before,
.mm-hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.6;
}

.mm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #FFFFFF;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

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

.mm-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(237, 237, 237, 0.65);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.mm-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

/* Activate hero elements */
.mm-hero.mm-hero-ready .mm-hero-eyebrow,
.mm-hero.mm-hero-ready .mm-hero-title,
.mm-hero.mm-hero-ready .mm-hero-subtitle,
.mm-hero.mm-hero-ready .mm-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Sound Wave SVG */
.mm-soundwave {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.mm-hero.mm-hero-ready .mm-soundwave {
    opacity: 1;
}

.mm-soundwave svg {
    width: min(320px, 80vw);
    height: 36px;
}

.mm-wave-bar {
    fill: var(--color-accent);
    opacity: 0.7;
    animation: mmWavePulse var(--dur, 1.2s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
    transform-origin: bottom center;
}

@keyframes mmWavePulse {
    0%   { transform: scaleY(0.2); opacity: 0.3; }
    100% { transform: scaleY(1);   opacity: 0.8; }
}

/* Scroll cue */
.mm-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(237, 237, 237, 0.4);
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
}

.mm-hero.mm-hero-ready .mm-scroll-cue {
    opacity: 1;
}

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

@keyframes mmScrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* CTA Buttons */
.mm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--color-accent);
    color: #0A0A0A;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.mm-btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 163, 42, 0.3);
    color: #0A0A0A;
}

.mm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #EDEDED;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: 1px solid rgba(237, 237, 237, 0.25);
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    text-decoration: none;
}

.mm-btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* ==========================================================================
   2. About the Studio Section
   ========================================================================== */
.mm-about {
    background-color: #0A0A0A;
    padding-top: 0; /* image leads, no top padding needed */
}

/* Full-bleed image panel on mobile — image IS the section top */
.mm-about-image-wrap {
    position: relative;
    border-radius: 0;           /* full bleed on mobile */
    overflow: hidden;
    width: 100%;
    height: 62vw;               /* natural 16:9-ish ratio for micnmind1 */
    min-height: 320px;
    max-height: 580px;
}

.mm-about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;  /* show softboxes + chairs nicely */
    display: block;
    filter: brightness(0.9);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.mm-about-image-wrap:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Gold corner accents — appear from tablet up */
.mm-about-image-wrap::before,
.mm-about-image-wrap::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 2;
    pointer-events: none;
    display: none;
}

.mm-about-image-wrap::before {
    top: 16px;
    left: 16px;
    border-top: 2px solid rgba(229, 163, 42, 0.6);
    border-left: 2px solid rgba(229, 163, 42, 0.6);
}

.mm-about-image-wrap::after {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid rgba(229, 163, 42, 0.6);
    border-right: 2px solid rgba(229, 163, 42, 0.6);
}

.mm-about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2.5rem;
}

.mm-about-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: rgba(237,237,237,0.6);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.25rem;
    line-height: 1.6;
}

/* Desktop: true split — equal cols, image gets rounded corners & gold accents */
@media (min-width: 900px) {
    .mm-about {
        padding-top: var(--section-padding-top, 5rem);
    }

    .mm-about-grid {
        display: grid;
        grid-template-columns: 55% 1fr;   /* image dominates at 55% */
        gap: 4rem;
        align-items: center;
    }

    .mm-about-image-wrap {
        border-radius: 8px;
        height: auto;
        min-height: 480px;
        max-height: none;
        aspect-ratio: 4 / 3;              /* micnmind1 is 4:3-ish landscape */
    }

    .mm-about-image-wrap::before,
    .mm-about-image-wrap::after {
        display: block;
    }

    .mm-about-text {
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    .mm-about-image-wrap {
        min-height: 560px;
    }
}


/* ==========================================================================
   3. What We Offer
   ========================================================================== */
.mm-offer {
    background-color: #0D0D0D;
}

.mm-offer-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.mm-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mm-offer-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mm-offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(229,163,42,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mm-offer-card:hover::before {
    opacity: 1;
}

.mm-offer-card:hover {
    border-color: rgba(229, 163, 42, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.mm-offer-icon {
    width: 48px;
    height: 48px;
    background: rgba(229, 163, 42, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: background 0.3s ease;
}

.mm-offer-card:hover .mm-offer-icon {
    background: rgba(229, 163, 42, 0.18);
}

.mm-offer-card h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: #EDEDED;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.mm-offer-card p {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.7;
}

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

@media (min-width: 1024px) {
    .mm-offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   4. Marquee Ticker
   ========================================================================== */
.mm-marquee-section {
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(229, 163, 42, 0.1);
    border-bottom: 1px solid rgba(229, 163, 42, 0.1);
    background: #060606;
}

.mm-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: mmMarquee 30s linear infinite;
    width: max-content;
    padding: 1.4rem 0;
}

.mm-marquee-track:hover {
    animation-play-state: paused;
}

.mm-marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(237, 237, 237, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
}

.mm-marquee-item.mm-marquee-accent {
    color: var(--color-accent);
}

.mm-marquee-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes mmMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================================
   5. Studio Specs / Stats — 2-col with ambient image
   ========================================================================== */
.mm-specs {
    background-color: #0A0A0A;
}

.mm-specs-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
}

/* 2-col inner wrapper: stats on left, image on right */
.mm-specs-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.mm-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .mm-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
}

.mm-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mm-spec-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.mm-spec-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
}

.mm-spec-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Right: ambient image — micnmind3 is LANDSCAPE (wide bookshelf shot) */
.mm-specs-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* Landscape aspect to show micnmind3 without cropping */
    width: 100%;
    height: 300px;              /* good on mobile */
}

.mm-specs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* show the top shelf + warm glow */
    display: block;
    filter: brightness(0.88) saturate(0.95);
    transition: filter 0.4s ease, transform 0.7s ease;
}

.mm-specs-image:hover img {
    filter: brightness(1) saturate(1.05);
    transform: scale(1.03);
}

/* Subtle golden border glow */
.mm-specs-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(229, 163, 42, 0.2);
    border-radius: 10px;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(229, 163, 42, 0.04);
}

@media (min-width: 900px) {
    .mm-specs-inner {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: stretch; /* both panels same height */
    }

    .mm-specs-image {
        max-width: 100%;
        margin: 0;
        height: auto;           /* let it fill the grid row height */
        min-height: 360px;      /* never shorter than stats col */
    }
}

/* ==========================================================================
   6. Show Formats Accordion — 2-col with sticky studio image
   ========================================================================== */
.mm-formats {
    background-color: #0D0D0D;
}

/* Outer 2-col layout */
.mm-formats-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 960px) {
    .mm-formats-two-col {
        grid-template-columns: 420px 1fr;
        gap: 5rem;
    }
}

/* Left: sticky image — micnmind4 is LANDSCAPE, needs proper height */
.mm-formats-sticky-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* Show landscape image in a tall format by setting explicit height */
    width: 100%;
    height: 60vw;               /* proportional on mobile */
    min-height: 280px;
    max-height: 480px;
}

@media (min-width: 960px) {
    .mm-formats-sticky-img {
        position: sticky;
        top: 100px;
        height: 70vh;           /* tall enough to not crop landscape image */
        min-height: 500px;
        max-height: 720px;
    }
}

.mm-formats-sticky-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;  /* keep the chair + wall art in frame */
    display: block;
    filter: brightness(0.80) saturate(0.88);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.mm-formats-sticky-img:hover img {
    filter: brightness(0.95) saturate(1);
    transform: scale(1.025);
}

/* Caption bar at bottom of sticky image */
.mm-formats-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(237,237,237,0.6);
}

.mm-formats-img-caption i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* Gold corner accent on sticky image */
.mm-formats-sticky-img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    z-index: 2;
    pointer-events: none;
}

/* Right side — header + accordion */
.mm-formats-right {
    display: flex;
    flex-direction: column;
}

.mm-formats-header {
    margin-bottom: 2.5rem;
}

.mm-formats-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.mm-format-item {
    border-top: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}

.mm-format-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mm-format-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
    user-select: none;
    transition: color 0.25s ease;
}

.mm-format-trigger:hover .mm-format-name {
    color: var(--color-accent);
}

.mm-format-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mm-format-number {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    opacity: 0.6;
    min-width: 24px;
}

.mm-format-name {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #EDEDED;
    transition: color 0.25s ease;
}

.mm-format-icon {
    font-size: 0.75rem;
    color: var(--color-accent);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

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

.mm-format-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-format-item.mm-open .mm-format-body {
    max-height: 300px;
}

.mm-format-content {
    padding: 0 0 1.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mm-format-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

.mm-format-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Featured format item — Vartalap Junction */
.mm-format-item.mm-format-featured {
    border-top-color: rgba(229, 163, 42, 0.3);
    background: linear-gradient(135deg, rgba(229,163,42,0.04) 0%, transparent 60%);
    border-radius: 0 0 6px 6px;
}

.mm-format-item.mm-format-featured .mm-format-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* "Our Podcast" badge pill */
.mm-format-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(229, 163, 42, 0.15);
    border: 1px solid rgba(229, 163, 42, 0.4);
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    vertical-align: middle;
    animation: mmBadgePulse 3s ease-in-out infinite;
}

@keyframes mmBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,163,42,0.25); }
    50%       { box-shadow: 0 0 0 5px rgba(229,163,42,0); }
}

/* Vartalap Junction inline social links inside accordion */
.mm-vartalap-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.mm-vj-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #AAAAAA;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.mm-vj-link i { font-size: 0.9rem; }

.mm-vj-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(229, 163, 42, 0.07);
}

.mm-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(229, 163, 42, 0.08);
    border: 1px solid rgba(229, 163, 42, 0.2);
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ==========================================================================
   7. Contact / Reach Out Section
   ========================================================================== */
.mm-contact {
    background: linear-gradient(to bottom, #0D0D0D 0%, #060606 100%);
    position: relative;
    overflow: hidden;
    padding-top: 0; /* image strip takes the top space */
}

/* micnmind2 atmospheric strip at the top of the contact section.
   micnmind2 is a close-up portrait-leaning shot — needs tall container */
.mm-contact-img-strip {
    position: relative;
    width: 100%;
    height: min(55vh, 560px);
    min-height: 55vh;
    overflow: hidden;
    margin-bottom: 0;
}

.mm-contact-img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;  /* chair + lamp + acoustic wall — centred */
    display: block;
    filter: brightness(0.52) saturate(0.65);
}

/* Fade the strip into the section below */
.mm-contact-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.05) 0%,
        rgba(13,13,13,0.25) 50%,
        rgba(13,13,13,1) 100%
    );
    pointer-events: none;
}

@media (min-width: 768px) {
    .mm-contact-img-strip {
        height: min(62vh, 640px);
        min-height: 400px;
    }
}

/* Background glow blob */
.mm-contact::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 100vw;
    max-height: 600px;
    background: radial-gradient(ellipse, rgba(229,163,42,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.mm-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Left: Contact Info */
.mm-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mm-contact-headline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mm-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mm-contact-link-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-decoration: none;
    group: true;
}

.mm-contact-link-icon {
    width: 44px;
    height: 44px;
    background: rgba(229, 163, 42, 0.08);
    border: 1px solid rgba(229, 163, 42, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.mm-contact-link-item:hover .mm-contact-link-icon {
    background: rgba(229, 163, 42, 0.15);
    border-color: rgba(229, 163, 42, 0.4);
}

.mm-contact-link-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mm-contact-link-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
}

.mm-contact-link-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #EDEDED;
    transition: color 0.25s ease;
    text-decoration: none;
}

.mm-contact-link-item:hover .mm-contact-link-value {
    color: var(--color-accent);
}

/* Social row */
.mm-contact-social {
    display: flex;
    gap: 0.75rem;
}

.mm-social-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    text-decoration: none;
}

.mm-social-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(229, 163, 42, 0.06);
}

/* Tooltip label on hover */
.mm-social-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.08);
    color: #AAAAAA;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.mm-social-icon:hover .mm-social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Featured Mic & Minds Instagram card ── */
.mm-studio-ig-card {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(229, 163, 42, 0.25);
    background: linear-gradient(135deg, #1A1208 0%, #111111 60%, #0D0D0D 100%);
    padding: 1.1rem 1.4rem;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.mm-studio-ig-card:hover {
    border-color: rgba(229, 163, 42, 0.6);
    transform: translateY(-2px);
}

.mm-studio-ig-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.mm-studio-ig-inner > i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.mm-studio-ig-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mm-studio-ig-handle {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #EDEDED;
    letter-spacing: -0.01em;
}

.mm-studio-ig-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    opacity: 0.8;
}

/* Animated glow sweep */
.mm-studio-ig-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 20%,
        rgba(229, 163, 42, 0.08) 50%,
        transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0s;
}

.mm-studio-ig-card:hover .mm-studio-ig-glow {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

/* Right: Quick Message Form */
.mm-contact-form-col {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 2.5rem;
}

.mm-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.mm-form-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mm-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.mm-form-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.mm-form-input,
.mm-form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #0A0A0A;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #EDEDED;
    font-family: var(--font-primary);
    font-size: 1rem; /* 1rem (16px) minimum prevents iOS zoom-in */
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.mm-form-input::placeholder,
.mm-form-textarea::placeholder {
    color: #444;
}

.mm-form-input:focus,
.mm-form-textarea:focus {
    border-color: rgba(229, 163, 42, 0.5);
    box-shadow: 0 0 0 3px rgba(229, 163, 42, 0.08);
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.mm-form-input.mm-error,
.mm-form-textarea.mm-error {
    border-color: rgba(220, 80, 60, 0.6);
    box-shadow: 0 0 0 3px rgba(220, 80, 60, 0.08);
}

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

.mm-form-submit {
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: var(--color-accent);
    color: #0A0A0A;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mm-form-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 163, 42, 0.25);
}

.mm-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert messages */
.mm-alert {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: none;
}

.mm-alert.mm-alert-success {
    background: rgba(40, 180, 100, 0.1);
    border: 1px solid rgba(40, 180, 100, 0.25);
    color: #5DE89A;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mm-alert.mm-alert-error {
    background: rgba(220, 80, 60, 0.1);
    border: 1px solid rgba(220, 80, 60, 0.25);
    color: #F5806C;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

@media (min-width: 900px) {
    .mm-contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
    }
}

/* ==========================================================================
   Scroll Animation Classes (JS-driven)
   ========================================================================== */
.mm-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-clip-reveal {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition: opacity 0.6s ease,
                clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-scale-up {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s ease,
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active state — all variants converge to visible */
.mm-fade-up.mm-visible,
.mm-slide-left.mm-visible,
.mm-slide-right.mm-visible {
    opacity: 1;
    transform: translate(0);
}

.mm-clip-reveal.mm-visible {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
}

.mm-scale-up.mm-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.mm-delay-1 { transition-delay: 0.1s; }
.mm-delay-2 { transition-delay: 0.2s; }
.mm-delay-3 { transition-delay: 0.3s; }
.mm-delay-4 { transition-delay: 0.4s; }
.mm-delay-5 { transition-delay: 0.5s; }
.mm-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .mm-fade-up,
    .mm-slide-left,
    .mm-slide-right,
    .mm-clip-reveal,
    .mm-scale-up {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }

    .mm-hero-eyebrow,
    .mm-hero-title,
    .mm-hero-subtitle,
    .mm-hero-actions,
    .mm-soundwave,
    .mm-scroll-cue {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .mm-wave-bar {
        animation: none !important;
    }

    .mm-marquee-track {
        animation: none !important;
    }

    .mm-scroll-cue-line {
        animation: none !important;
    }

    .mm-hero-bg {
        transform: scale(1) !important;
        transition: none !important;
    }
}
