/* =========================================================================
   Homepage sections, in page order.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Hero — "Editorial Energy" (the chosen creative direction)
   ------------------------------------------------------------------------- */

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--col-gap);
    padding: var(--hero-y-top) var(--gutter) var(--hero-y-bottom);
}

/* container-type lets the headline scale to this column, not the viewport,
   which is why the h1 is sized in `cqi` rather than `vw`. */
.hero__col {
    flex: 1 1 520px;
    min-width: 280px;
    max-width: 660px;
    container-type: inline-size;
}

.hero__kicker-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.hero__rule {
    flex: none;
    width: 26px;
    height: 1px;
    background: var(--terracotta);
}

.hero__title {
    font: var(--t-h1);
    letter-spacing: var(--ls-h1);
    color: var(--ink);
    text-wrap: balance;
}

.hero__title-accent {
    font-style: italic;
    color: var(--terracotta);
}

.hero__body {
    margin-top: 22px;
    max-width: 52ch;
    font: var(--t-body-hero);
    color: var(--text-body);
    text-wrap: pretty;
}

.hero__subline {
    margin-top: 16px;
    max-width: 44ch;
    font: 600 13px/1.6 var(--font-sans);
    color: var(--text-muted);
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero__ctas .btn--primary {
    flex: 1 1 220px;
}

.hero__ctas .btn--secondary {
    flex: 1 1 180px;
}

.hero__frame {
    flex: 1 1 300px;
    align-self: center;
    min-width: 260px;
    max-width: 520px;
}

/* -------------------------------------------------------------------------
   2. Counter band — "By the numbers"
   ------------------------------------------------------------------------- */

.counters {
    background: var(--sand);
    border-top: 1px solid var(--rule-10);
    border-bottom: 1px solid var(--rule-10);
}

/* The 1px gap over a hairline background renders as dividers between cells. */
.counters__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 1px;
    background: var(--rule-10);
}

.counters__cell {
    padding: 24px clamp(16px, 3vw, 26px);
    background: var(--sand);
}

.counters__figure {
    font: var(--t-figure);
    color: var(--ink);
    /* Declared after the `font` shorthand, which would otherwise reset it.
       Tabular figures stop the count-up from jittering. */
    font-variant-numeric: tabular-nums;
}

.counters__label {
    margin-top: 8px;
    font: var(--t-label);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--text-muted);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    padding: 14px var(--gutter);
    border-top: 1px solid var(--rule-10);
}

.credentials__item {
    font: var(--t-label);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--text-muted);
}

.credentials__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--rule-28);
}

/* -------------------------------------------------------------------------
   3. Why Pooja
   ------------------------------------------------------------------------- */

.about__layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--col-gap-sm);
}

.about__col {
    flex: 1 1 380px;
    min-width: 280px;
    max-width: 640px;
}

.about__para {
    margin-top: 18px;
    font: var(--t-body-lg);
    color: var(--text-body);
    text-wrap: pretty;
}

.about__para:first-of-type {
    margin-top: 24px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px;
    margin-top: 34px;
    background: var(--rule-12);
    border: 1px solid var(--rule-12);
    border-radius: var(--radius);
}

.badge {
    padding: 18px 18px 20px;
    background: var(--ivory);
}

.badge__title {
    font: 700 12px/1.4 var(--font-sans);
    color: var(--ink);
}

.badge__note {
    margin-top: 6px;
    font: 400 12.5px/1.55 var(--font-sans);
    color: var(--text-muted);
}

.about__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    margin-top: 26px;
    font: 600 12.5px/1.6 var(--font-sans);
    color: var(--text-muted);
}

.about__frame {
    flex: 1 1 300px;
    align-self: flex-start;
    min-width: 250px;
}

/* -------------------------------------------------------------------------
   4. Signature event formats — dark card rail
   ------------------------------------------------------------------------- */

.formats {
    background: var(--ink);
    color: var(--ivory);
    /* Zero horizontal padding so the card rail can bleed to the edge. */
    padding: var(--section-y) 0;
}

.formats__intro {
    max-width: 760px;
    padding: 0 var(--gutter);
}

.formats__rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 32px var(--gutter) 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--on-dark-25) transparent;
}

.format-card {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: clamp(276px, 80vw, 360px);
    background: var(--ink-raised);
    border: 1px solid var(--on-dark-12);
    border-radius: var(--radius);
    scroll-snap-align: start;
    transform-origin: center center;
    transition: transform .45s var(--ease), opacity .45s ease;
}

/* The frame sits flush at the top of the card. */
.format-card .media-frame {
    border: none;
    border-bottom: 1px solid var(--on-dark-12);
    border-radius: 0;
}

.format-card__body {
    padding: 22px 20px 26px;
}

.format-card__number {
    font: 700 10.5px/1 var(--font-sans);
    letter-spacing: var(--ls-wordmark);
    color: var(--terracotta-light);
}

.format-card__title {
    margin-top: 12px;
    font: var(--t-h3-card);
    color: var(--ivory);
}

.format-card__label {
    margin-top: 16px;
    font: var(--t-label);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--on-dark-45);
}

.format-card__vibe {
    margin-top: 5px;
    font: var(--t-body-em);
    color: var(--ivory);
}

.format-card__does {
    margin-top: 5px;
    font: var(--t-body);
    color: var(--on-dark-72);
    text-wrap: pretty;
}

.formats__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px var(--gutter) 0;
}

.formats__hint {
    font: 600 11px/1.5 var(--font-sans);
    color: var(--on-dark-42);
}

.formats__rule {
    flex: 1;
    height: 1px;
    background: var(--on-dark-14);
}

/* -------------------------------------------------------------------------
   5. Showreel
   ------------------------------------------------------------------------- */

.showreel__stage {
    position: relative;
    margin-top: 30px;
    aspect-ratio: 16 / 9;
    background: var(--hatch-light), var(--ink-raised);
    border: 1px solid var(--rule-14);
    border-radius: var(--radius);
    overflow: hidden;
}

.showreel__idle {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(14px, 3vw, 22px);
}

.showreel__top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.showreel__badge {
    padding: 5px 7px;
    background: rgba(200, 90, 63, .16);
    border: 1px solid rgba(200, 90, 63, .34);
    border-radius: var(--radius);
    font: var(--t-mono);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--terracotta-light);
}

.showreel__spec {
    font: var(--t-mono);
    color: var(--on-dark-60);
}

.showreel__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.showreel__copy {
    max-width: 44ch;
}

.showreel__title {
    font: 400 clamp(20px, 5vw, 30px)/1.2 var(--font-serif);
    color: var(--ivory);
}

.showreel__caption {
    margin-top: 8px;
    font: 400 13px/1.6 var(--font-sans);
    color: var(--on-dark-66);
    text-wrap: pretty;
}

.showreel__play {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 24px;
    background: var(--terracotta);
    border: none;
    border-radius: var(--radius);
    font: var(--t-button-sm);
    letter-spacing: var(--ls-button);
    color: #fff;
    transition: background-color .25s ease;
}

.showreel__play:hover {
    background: var(--terracotta-dark);
}

/* A type-and-shape play affordance — the design uses no icon set. */
.showreel__play-icon {
    display: block;
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.showreel__player {
    position: absolute;
    inset: 0;
    background: var(--ink);
}

.showreel__player iframe,
.showreel__player video {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shown when no embed URL is configured yet. */
.showreel__pending {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    background: var(--ink);
    text-align: center;
}

.showreel__pending-kicker {
    font: var(--t-label);
    letter-spacing: var(--ls-wordmark);
    text-transform: uppercase;
    color: var(--terracotta-light);
}

.showreel__pending-title {
    font: 400 clamp(18px, 4.6vw, 24px)/1.3 var(--font-serif);
    color: var(--ivory);
}

.showreel__footnote {
    margin-top: 14px;
    font: 500 12px/1.6 var(--font-sans);
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   6. Stage & media gallery
   ------------------------------------------------------------------------- */

.gallery {
    padding: 0 var(--gutter) var(--section-y);
}

.gallery__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: clamp(34px, 5vw, 56px);
    border-top: 1px solid var(--rule-12);
}

.gallery__title {
    font: var(--t-h3);
    color: var(--ink);
}

.gallery__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.gallery__hint {
    font: var(--t-meta);
    color: var(--text-muted);
}

/* A fixed column template keeps mixed ratios honest and stops a short final
   row from stretching its items. */
.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    margin-top: 22px;
}

.gallery__item--full {
    grid-column: 1 / -1;
}

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

    .gallery__item--wide {
        grid-column: span 2;
    }
}

@media (min-width: 900px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* -------------------------------------------------------------------------
   7. Corporate footprint
   ------------------------------------------------------------------------- */

.clients__title {
    margin-top: 16px;
    max-width: 16ch;
    font: var(--t-h2-sm);
    color: var(--ink);
}

.clients__body {
    margin-top: 16px;
    max-width: 60ch;
    font: 400 clamp(15px, 3.8vw, 17px)/1.7 var(--font-sans);
    color: var(--text-body);
    text-wrap: pretty;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    margin-top: 30px;
    background: var(--rule-12);
    border: 1px solid var(--rule-12);
}

/* Type wordmarks, not logo images — real logos need written permission. */
.clients__name {
    padding: 22px 14px;
    background: var(--sand);
    font: 700 12px/1.3 var(--font-sans);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ink);
}

.clients__note {
    margin-top: 14px;
    font: 500 11.5px/1.6 var(--font-sans);
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   8. Six reasons
   ------------------------------------------------------------------------- */

.reasons__title {
    margin-top: 18px;
    max-width: 20ch;
    font: var(--t-h2-why);
    color: var(--ink);
    text-wrap: balance;
}

.reasons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    margin-top: 34px;
    background: var(--rule-12);
    border: 1px solid var(--rule-12);
    border-radius: var(--radius);
}

.reason {
    padding: 24px 20px 28px;
    background: var(--ivory);
}

.reason__number {
    font: 700 10px/1 var(--font-sans);
    letter-spacing: var(--ls-wordmark);
    color: var(--terracotta);
}

.reason__title {
    margin-top: 12px;
    font: var(--t-h4);
    color: var(--ink);
}

.reason__note {
    margin-top: 9px;
    font: var(--t-body-sm);
    color: var(--text-muted);
    text-wrap: pretty;
}

/* -------------------------------------------------------------------------
   9. Personal events
   ------------------------------------------------------------------------- */

.personal {
    padding: 0 var(--gutter) clamp(56px, 9vw, 100px);
}

.personal__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(22px, 4vw, 44px);
    padding: var(--panel-pad);
    background: var(--sand);
    border: 1px solid var(--rule-10);
    border-radius: var(--radius);
}

.personal__col {
    flex: 1 1 320px;
    min-width: 260px;
}

.personal__title {
    margin-top: 14px;
    font: 400 clamp(24px, 5.4vw, 36px)/1.18 var(--font-serif);
    color: var(--ink);
    text-wrap: balance;
}

.personal__body {
    margin-top: 14px;
    max-width: 52ch;
    font: var(--t-body-md);
    color: var(--text-body);
    text-wrap: pretty;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

/* The one place a pill radius is allowed — everything else stays near-square. */
.tag {
    padding: 9px 14px;
    border: 1px solid var(--rule-16);
    border-radius: 999px;
    font: 600 11.5px/1 var(--font-sans);
    color: var(--text-body);
}

.personal__link {
    margin-top: 22px;
}

.personal__frame {
    flex: 1 1 220px;
    min-width: 200px;
}

/* This frame sits inside a sand panel, so it inverts to the ivory fill. */
.media-frame--on-band {
    background: var(--hatch-light), var(--ivory);
}

/* -------------------------------------------------------------------------
   10. Booking
   ------------------------------------------------------------------------- */

.booking {
    background: var(--ink);
    color: var(--ivory);
    /* Extra bottom padding clears the mobile CTA bar; collapses at 1024px. */
    padding: var(--section-y) var(--gutter) var(--bar-clearance);
}

.booking__layout {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 64px);
}

.booking__intro {
    flex: 1 1 320px;
    min-width: 270px;
    max-width: 520px;
}

.booking__title {
    margin-top: 18px;
    font: var(--t-h2-lg);
    letter-spacing: var(--ls-tight);
    color: var(--ivory);
    text-wrap: balance;
}

.booking__body {
    margin-top: 20px;
    font: var(--t-body-lg);
    color: var(--on-dark-72);
    text-wrap: pretty;
}

.direct {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.direct__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 18px;
    background: var(--on-dark-06);
    border: 1px solid var(--on-dark-16);
    border-radius: var(--radius);
    color: var(--ivory);
    transition: background-color .25s ease;
}

.direct__item:hover {
    background: var(--on-dark-11);
    color: var(--ivory);
}

.direct__title {
    display: block;
    font: 700 13px/1.3 var(--font-sans);
}

.direct__note {
    display: block;
    margin-top: 3px;
    font: 500 11.5px/1.4 var(--font-sans);
    color: var(--on-dark-55);
}

.direct__chevron {
    font: 700 18px/1 var(--font-sans);
    color: var(--terracotta-light);
}

.booking__form-col {
    flex: 1 1 340px;
    min-width: 280px;
}

/* -------------------------------------------------------------------------
   11. Production note — internal asset checklist
   ------------------------------------------------------------------------- */

.production {
    padding: clamp(48px, 7vw, 90px) var(--gutter);
    background: var(--sand);
    border-top: 1px solid var(--rule-10);
}

.production__title {
    margin-top: 16px;
    max-width: 18ch;
    font: var(--t-h2-sm);
    color: var(--ink);
    text-wrap: balance;
}

.production__body {
    margin-top: 14px;
    max-width: 60ch;
    font: var(--t-body-md);
    color: var(--text-body);
    text-wrap: pretty;
}

.checklist-group {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--rule-16);
}

.checklist-group:first-of-type {
    margin-top: 34px;
}

.checklist-group__title {
    font: 700 11px/1 var(--font-sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    margin-top: 16px;
    background: var(--rule-12);
    border: 1px solid var(--rule-12);
}

.checklist--detailed {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checklist__item {
    padding: 15px 16px;
    background: var(--sand);
}

.checklist--detailed .checklist__item {
    padding: 16px 16px 18px;
}

.checklist__label {
    font: 700 11px/1.4 var(--font-sans);
    color: var(--ink);
}

.checklist--detailed .checklist__label {
    letter-spacing: .1em;
    text-transform: uppercase;
}

.checklist__spec {
    margin-top: 4px;
    font: 600 11px/1.5 var(--font-mono);
    color: var(--text-muted);
}

.checklist--detailed .checklist__spec {
    margin-top: 6px;
    font: 600 11.5px/1.6 var(--font-mono);
    color: var(--terracotta-dark);
}

.checklist__note {
    margin-top: 6px;
    font: 400 12.5px/1.6 var(--font-sans);
    color: var(--text-muted);
}
