/* ============================================================
   MNK JEWELS — OUR STORY PAGE
   ============================================================ */

/* ── Section typography (copied from home.css — self-contained on this page) ── */
.mnk-section-title {
    font-family: var(--mnk-font);
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 400;
    color: var(--mnk-primary);
    text-transform: uppercase;
    margin: 0 0 8px 0;
    text-align: center;
}

.mnk-section-sub {
    font-family: var(--mnk-font);
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 40px 0;
}

/* ══════════════════════════════
   1. ANNIVERSARY BANNER
══════════════════════════════ */
.mnk-os-anniversary {
    position: relative;
    width: 100%;
    background: #f4f1ec;
    overflow: hidden;
    min-height: 60vh;
}

.mnk-os-anniversary__img {
    width: 100%;
    max-height: 75vh;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Placeholder version */
.mnk-os-anniversary__placeholder {
    width: 100%;
    min-height: 60vh;
    background: #f4f1ec;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
}

.mnk-os-anniversary__gem {
    position: absolute;
    width: 340px;
    height: 340px;
    background: var(--mnk-primary);
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    opacity: 0.85;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.mnk-os-anniversary__overlay-text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.mnk-os-anniversary__number {
    display: block;
    font-family: var(--mnk-font);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 400;
    color: #c9a84c;
    letter-spacing: -4px;
    line-height: 0.9;
}

.mnk-os-anniversary__label {
    display: block;
    font-family: var(--mnk-font);
    font-size: clamp(14px, 2vw, 22px);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 12px;
}

/* Celebrity strip */
.mnk-os-anniversary__strip {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.mnk-os-anniversary__person {
    flex: 1;
    max-width: 180px;
    aspect-ratio: 3/4;
    overflow: hidden;
    filter: grayscale(1);
    opacity: 0.85;
    transition: opacity 0.3s;
}

.mnk-os-anniversary__person:hover {
    opacity: 1;
}

.mnk-os-anniversary__person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mnk-os-anniversary__person-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #888 0%, #444 100%);
}

/* ══════════════════════════════
   VISION — centered single column
══════════════════════════════ */
.mnk-os-vision {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
}

.mnk-os-vision__inner {
    max-width: 680px;
    margin: 0 auto;
}

.mnk-os-vision__eyebrow {
    font-family: var(--mnk-font);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 16px 0;
}

.mnk-os-vision__heading {
    font-family: var(--mnk-font);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: var(--mnk-primary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 28px 0;
    line-height: 1.15;
}

.mnk-os-vision__body {
    font-family: var(--mnk-font);
    font-size: 12px;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.6px;
    text-align: center;
}

.mnk-os-vision__body p {
    margin: 0 0 16px 0;
}

.mnk-os-vision__body strong {
    font-weight: 500;
    color: var(--mnk-primary);
}

/* ══════════════════════════════
   THE MNK WOMAN — text + 2 stacked images
══════════════════════════════ */
.mnk-os-woman {
    padding: 0 2rem 0px 0;
    background: #fff;
}

.mnk-os-woman__inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.mnk-os-woman__heading {
    font-family: var(--mnk-font);
    font-size: clamp(17px, 2.4vw, 26px);
    font-weight: 400;
    color: var(--mnk-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
}

.mnk-os-woman__body {
    font-family: var(--mnk-font);
    font-size: 12px;
    font-weight: 300;
    padding: 0 2rem;
    color: #2f2f2f;
    line-height: 1.6;
    letter-spacing: 0.4px;
    text-align: center;
}

.mnk-os-woman__body p {
    margin: 0 0 14px 0;
}

.mnk-os-woman__images {
    display: block;
}

.mnk-os-woman__img {
    overflow: hidden;
}

.mnk-os-woman__img img {
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--mnk-primary);
    background: gray;
    display: block;
    transition: transform 0.6s ease;
}

.mnk-os-woman__img:hover img {
    transform: scale(1.03);
}

.mnk-os-woman__img--top img {
    aspect-ratio: 4/5;
}

.mnk-os-woman__img--bottom {
    display: none;
}

/* ══════════════════════════════
   SPLIT MEDIA — 50/50 text | full-bleed video (editorial)
══════════════════════════════ */
.mnk-os-split-media {
    /* Break out of theme content width so media can touch viewport edge */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    background: #fff;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mnk-os-split-media__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: clamp(520px, 85vh, 980px);
}

/* Left: copy centered in column, inset from edges (editorial) */
.mnk-os-split-media__text-col {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: clamp(32px, 5vw, 72px) clamp(28px, 6vw, 64px);
    box-sizing: border-box;
}

.mnk-os-split-media__text-inner {
    width: 100%;
    text-align: center;
}

.mnk-os-split-media__heading {
    font-family: var(--mnk-font);
    font-size: clamp(17px, 2.4vw, 26px);
    font-weight: 400;
    color: var(--mnk-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
}

.mnk-os-split-media__body {
    font-family: var(--mnk-font);
    font-size: 12px;
    font-weight: 300;
    padding: 0 1rem;
    color: #2f2f2f;
    line-height: 1.6;
    letter-spacing: 0.4px;
    text-align: center;
}

.mnk-os-split-media__body p {
    margin: 0 0 1rem 0;
}

.mnk-os-split-media__body p:last-child {
    margin-bottom: 0;
}

/* Right: zero padding — media flush top / bottom / right */
.mnk-os-split-media__media-col--fullbleed {
    position: relative;
    min-height: 130vh;
    padding: 0;
    margin: 0;
    background: #0a0a0a;
}

.mnk-os-split-media__video,
.mnk-os-split-media__fallback-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.mnk-os-split-media__video {
    background: #000;
}

/* ══════════════════════════════
   STORY HERO — full-bleed image + centered heading
══════════════════════════════ */
.mnk-os-story-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    min-height: 90vh;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mnk-os-story-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 0;
    pointer-events: none;
}

/* Horizontal band behind title for legibility */
.mnk-os-story-hero__band {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    max-width: 100%;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.mnk-os-story-hero__inner {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 32px);
    text-align: center;
}

.mnk-os-story-hero__heading {
    font-family: var(--mnk-font);
    font-size: calc(1rem * 1.5);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

/* ══════════════════════════════
   FOUNDER QUOTE (centered body + right sig)
══════════════════════════════ */
.mnk-os-founder-quote {
    padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 60px);
    background: #f9f8f6;
}

.mnk-os-founder-quote__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mnk-os-founder-quote__text {
    font-family: var(--mnk-font);
    font-size: calc(1rem * 0.85);
    font-style: italic;
    font-weight: 400;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    line-height: 1.75;
    margin: 0 auto 36px;
    border: none;
    padding: 0;
}

.mnk-os-founder-quote__sig {
    text-align: right;
    max-width: 100%;
    margin-left: auto;
}

.mnk-os-founder-quote__sig-line {
    font-family: var(--mnk-font);
    font-style: italic;
    font-weight: 400;
    margin: 0;
    line-height: 1.55;
    color: #4a4a4a;
    letter-spacing: 0.02em;
    font-size: calc(1rem * 0.85);
}

.mnk-os-founder-quote__sig-amour {
    margin-bottom: 6px;
    font-size: calc(1rem * 0.85);
}

.mnk-os-founder-quote__sig-name {
    font-size: calc(1rem * 0.85);
    margin-bottom: 2px;
}

.mnk-os-founder-quote__sig-title {
    font-size: calc(1rem * 0.85);
    color: #5c5c5c;
    margin-bottom: 8px;
}

.mnk-os-founder-quote__sig-brand {
    font-size: clamp(12px, 1.35vw, 14px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mnk-primary);
}

/* ══════════════════════════════
   IN KEY DATES — editorial slider (Amaris-style)
══════════════════════════════ */
.mnk-os-timeline {
    --mnk-timeline-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f2f0eb;
    padding: 0.8rem 0;
    overflow: hidden;
}

.mnk-os-timeline__header {
    text-align: center;
    margin: 0 auto 0.8rem;
    padding: 0 clamp(24px, 5vw, 60px);
}

.mnk-os-timeline__rule {
    display: block;
    width: 100%;
    height: 1px;
    background: #d8d5cf;
    margin: 0 auto;
}

.mnk-os-timeline__title {
    font-family: var(--mnk-font);
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 0.8rem 0;
    line-height: 1.3;
}

/* Viewport — clips track; next slide peeks */
.mnk-os-timeline__viewport {
    overflow: hidden;
    position: relative;
    padding: 0 0 0 clamp(24px, 5vw, 72px);
}

.mnk-os-timeline__track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    max-height: 7rem;
    /* No fixed height — 6rem clipped title + body on mobile (column layout) */
}

.mnk-os-timeline__slide {
    flex-shrink: 0;
    width: 85%;
    max-width: 1080px;
    padding-right: clamp(20px, 3vw, 40px);
    box-sizing: border-box;
    min-width: 0;
}

.mnk-os-timeline__slide-inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 40px);
    min-height: 0;
}

/* Year: peek (next slide) = light + smaller; active = dark + full size */
.mnk-os-timeline__year-col {
    flex-shrink: 0;
    line-height: 1;
    min-width: 0;
}

.mnk-os-timeline__year {
    font-family: var(--mnk-font);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 0.95;
    display: block;
    transition: color 0.45s ease, font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 4rem;
}

/* Inactive = next slide peeking in from the right — year only reads */
.mnk-os-timeline__slide:not(.is-active) .mnk-os-timeline__year {
    font-size: 4rem;
    color: #c9c6c0;
}

.mnk-os-timeline__slide.is-active .mnk-os-timeline__year {
    font-size: 4rem;
    color: #0a0a0a;
}

/* Hide copy on non-active slides so peek is mostly the year */
.mnk-os-timeline__slide:not(.is-active) .mnk-os-timeline__content {
    flex: 0 0 0;
    width: 0;
    max-width: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
}

.mnk-os-timeline__slide.is-active .mnk-os-timeline__content {
    flex: 1;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease 0.08s;
}

/* Title + body — sans, left-aligned */
.mnk-os-timeline__content {
    padding: 0.25rem 0;
    text-align: left;
}

.mnk-os-timeline__slide-title {
    font-family: var(--mnk-font);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}

.mnk-os-timeline__text {
    font-family: var(--mnk-font);
    font-size: clamp(12px, 1.15vw, 14px);
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.75;
    margin: 0;
}

/* Slider control: thin track + black segment (not a fill bar) */
.mnk-os-timeline__slider-wrap {
    max-width: min(60%, 520px);
    margin: 0.8rem auto 0;
    padding: 0 clamp(24px, 5vw, 60px);
    box-sizing: border-box;
}

.mnk-os-timeline__slider-track {
    position: relative;
    height: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    touch-action: none;
}

.mnk-os-timeline__slider-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #cfccc6;
    transform: translateY(-50%);
    pointer-events: none;
}

.mnk-os-timeline__slider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;
    margin-top: -2px;
    background: #0a0a0a;
    border: none;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: grab;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    outline: none;
}

.mnk-os-timeline__slider-thumb:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--mnk-primary);
}

.mnk-os-timeline__slider-thumb:active {
    cursor: grabbing;
}

.mnk-os-timeline__slider-thumb.is-dragging {
    transition: none;
}

/* Visually hidden prev/next (kept for JS / testing) */
.mnk-os-timeline__nav--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mnk-os-timeline__nav--hidden .mnk-os-timeline__nav-btn {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ══════════════════════════════
   CRAFT GRID — below timeline: 2 imgs | video + bottom text (full bleed)
══════════════════════════════ */
.mnk-os-craft-grid {
    --mnk-craft-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.mnk-os-craft-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: clamp(480px, 88vh, 980px);
    align-items: stretch;
}

.mnk-os-craft-grid__images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    min-height: 100%;
    min-width: 0;
}

.mnk-os-craft-grid__cell {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: #1a1a1a;
}

.mnk-os-craft-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mnk-os-craft-grid__media {
    position: relative;
    min-width: 0;
    min-height: 100%;
}

.mnk-os-craft-grid__media-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 44vh, 490px);
}

.mnk-os-craft-grid__video,
.mnk-os-craft-grid__video-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mnk-os-craft-grid__text-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.25rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 45%,
            rgba(0, 0, 0, 0.2) 85%,
            transparent 100%);
    text-align: left;
}

.mnk-os-craft-grid__heading {
    font-size: 1.4rem;
    font-family: var(--mnk-font);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}

.mnk-os-craft-grid__body {
    font-family: var(--mnk-font);
    font-size: clamp(11px, 1.05vw, 13px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.mnk-os-craft-grid__body p {
    margin: 0 0 0.85rem 0;
}

.mnk-os-craft-grid__body p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════
   BOLLYWOOD SPLIT — image | centered title (.mnk-section-title)
══════════════════════════════ */
.mnk-os-bollywood-split {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.mnk-os-bollywood-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: clamp(300px, 50vh, 680px);
}

.mnk-os-bollywood-split__img-col {
    position: relative;
    min-height: 100%;
    background: #eceae6;
}

.mnk-os-bollywood-split__img {
    width: 100%;
    height: 100%;
    min-height: clamp(300px, 50vh, 680px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.mnk-os-bollywood-split__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(1.25rem, 3.5vw, 2.75rem);
    text-align: center;
}

/* Ensure FAQ-style titles apply; fine-tune spacing */
.mnk-os-bollywood-split__text-col .mnk-os-bollywood-split__title.mnk-section-title {
    margin-bottom: clamp(0.65rem, 1.8vw, 1.1rem);
}

.mnk-os-bollywood-split__text-col .mnk-os-bollywood-split__sub.mnk-section-sub {
    margin-bottom: 0;
    max-width: 34rem;
    color: #2f2f2f;
    text-transform: none;
    letter-spacing: 0.05em;
    font-size: clamp(12px, 1.15vw, 15px);
    line-height: 1.65;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════
   FAQ — Amaris-style 2-col grid bars + plus (see our-story.js)
══════════════════════════════ */
.mnk-os-faq {
    --mnk-os-faq-bar-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 48px);
    background: #fff;
}

.mnk-os-faq__inner {
    max-width: 1160px;
    margin: 0 auto;
}

.mnk-os-faq__title.mnk-section-title {
    margin-bottom: clamp(36px, 5vw, 52px);
    font-size: 1.5rem;
}

/* Two columns (3 items each), gap between bars — matches reference accordion columns */
.mnk-os-faq .mnk-faq.mnk-os-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
    width: 100%;
    align-items: start;
}

.mnk-os-faq .mnk-os-faq__column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.mnk-os-faq .mnk-faq__item {
    border: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Collapsed: light bar, dark label, + icon */
.mnk-os-faq .mnk-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    background: #f0f0f0;
    border: none;
    border-radius: 0;
    padding: 17px 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--mnk-font);
    font-size: 10px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    line-height: 1.35;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    transition: background 0.25s ease, color 0.25s ease;
}

.mnk-os-faq .mnk-faq__question:not([aria-expanded="true"]):hover {
    background: #e8e8e8;
}

/* Expanded: black bar, white label, minus (horizontal line only) */
.mnk-os-faq .mnk-faq__question[aria-expanded="true"] {
    background: var(--mnk-primary);
    color: #fff;
}

.mnk-os-faq .mnk-faq__question[aria-expanded="true"]:hover {
    background: #141414;
}

.mnk-os-faq .mnk-faq__label {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
    color: inherit;
    transition: color 0.25s ease;
}

.mnk-os-faq .mnk-faq__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #1a1a1a;
    transition: color 0.25s ease;
}

.mnk-os-faq .mnk-faq__question[aria-expanded="true"] .mnk-faq__icon-wrap {
    color: #fff;
}

.mnk-os-faq .mnk-faq__icon {
    display: block;
    transition: transform 0.3s ease;
}

.mnk-os-faq .mnk-faq__icon-bar {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Open = hide vertical stroke → minus */
.mnk-os-faq .mnk-faq__question[aria-expanded="true"] .mnk-faq__icon-bar--v {
    opacity: 0;
    transform: scaleY(0);
}

.mnk-os-faq .mnk-faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: #f0f0f0;
    padding: 0 22px;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease,
        padding 0.3s ease;
}

.mnk-os-faq .mnk-faq__answer.is-open {
    max-height: min(65vh, 520px);
    opacity: 1;
    padding-bottom: 6px;
}

.mnk-os-faq .mnk-faq__answer p {
    font-family: var(--mnk-os-faq-bar-sans);
    font-size: 13px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.75;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 18px 0 22px;
    margin: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.mnk-os-faq .mnk-faq__answer.is-open p {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════
   9. OUR BOUTIQUES — single column, horizontal image row (same mechanic as home)
══════════════════════════════ */
.mnk-os-boutiques {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 60px);
    background: #fff;
}

.mnk-os-boutiques__inner {
    margin: 0 auto;
}

.mnk-os-boutiques__title.mnk-section-title {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 1.5rem;
    font-weight: 400;
}

/* Stack: carousel → centered title / subtitle / ghost CTA (Amaris-style) */
.mnk-os-boutique {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(56px, 8vw, 88px);
}

.mnk-os-boutique:last-child {
    margin-bottom: 0;
}

/* Carousel shell — mirrors .mnk-just-dropped__outer */
.mnk-os-boutique__carousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 52px;
    margin-bottom: clamp(28px, 4vw, 40px);
    box-sizing: border-box;
}

.mnk-os-boutique__carousel .mnk-carousel-arrow {
    z-index: 2;
}

.mnk-os-boutique__track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}

/* Four-up square tiles (like reference); scroll when more than 4 */
.mnk-os-boutique__slide {
    flex-shrink: 0;
    width: calc(25% - 12px);
    min-width: 0;
}

.mnk-os-boutique__slide-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0ede8;
}

.mnk-os-boutique__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.mnk-os-boutique__slide:hover .mnk-os-boutique__slide-img img {
    transform: scale(1.04);
}

.mnk-os-boutique__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 36rem;
    padding: 0 12px;
}

.mnk-os-boutique__name {
    text-align: center;
    margin: 1rem 0 0.2rem 0;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 1.5rem;
    font-weight: 400;
}

.mnk-os-boutique__subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    font-weight: 400;
}

.mnk-os-boutique__directions.mnk-btn {
    margin-top: 6px;
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border-width: 1px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mnk-os-boutique__directions.mnk-btn:hover {
    background: var(--mnk-primary);
    color: #fff;
    border-color: var(--mnk-primary);
}

@media (max-width: 1024px) {
    .mnk-os-boutique__slide {
        width: calc(33.333% - 11px);
    }

    .mnk-os-boutique__carousel {
        padding: 0 48px;
    }
}

@media (max-width: 767px) {
    .mnk-os-boutique__slide {
        width: calc(50% - 8px);
    }

    .mnk-os-boutique__carousel {
        padding: 0 44px;
        margin-bottom: 24px;
    }
}

/* ══════════════════════════════
   9b. WE ARE JUST GETTING STARTED
══════════════════════════════ */
.mnk-os-next {
    --mnk-os-next-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    padding: 1rem;
    background: #fff;
}

.mnk-os-next__inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.mnk-os-next__title {
    font-family: var(--mnk-font);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.3px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--mnk-primary);
    margin: 0 0 1rem 0;
}

.mnk-os-next__body {
    font-family: var(--mnk-font);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;

}

.mnk-os-next__body p {
    margin: 0 0 1em;
}

.mnk-os-next__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .mnk-os-next {
        padding: 48px 16px 56px;
    }
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 767px) {

    /* Anniversary */
    .mnk-os-anniversary {
        min-height: 40vh;
    }

    .mnk-os-anniversary__placeholder {
        min-height: 50vh;
    }

    .mnk-os-anniversary__gem {
        width: 220px;
        height: 220px;
    }

    .mnk-os-anniversary__strip {
        padding: 0 8px;
        gap: 2px;
    }

    .mnk-os-anniversary__person {
        max-width: 60px;
    }

    .mnk-os-woman {
        padding: 0 16px 60px;
    }

    .mnk-os-woman__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mnk-os-split-media {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .mnk-os-split-media__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mnk-os-split-media__media-col--fullbleed {
        order: -1;
        min-height: min(70vh, 520px);
        aspect-ratio: 4 / 5;
    }

    .mnk-os-split-media__text-col {
        padding: clamp(40px, 10vw, 56px) clamp(20px, 6vw, 28px);
    }

    .mnk-os-story-hero {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        min-height: clamp(240px, 52vw, 420px);
    }

    .mnk-os-story-hero__heading {
        letter-spacing: 0.2em;
    }

    .mnk-os-vision {
        padding: 56px 16px;
    }

    .mnk-os-founder-quote {
        padding: 48px 16px;
    }

    .mnk-os-timeline {
        padding: clamp(1rem, 4vw, 1.5rem) 0 clamp(1.25rem, 5vw, 2rem);
    }

    .mnk-os-timeline__header {
        margin-bottom: 1rem;
        padding: 0 16px;
    }

    .mnk-os-timeline__title {
        font-size: clamp(1.1rem, 5.5vw, 1.65rem);
        letter-spacing: 0.12em;
        padding: 0.5rem 0 0.65rem;
        line-height: 1.25;
    }

    .mnk-os-timeline__viewport {
        padding: 0 16px;
        overflow: hidden;
    }

    .mnk-os-timeline__track {
        align-items: flex-start;
    }

    .mnk-os-timeline__slide {
        width: 90%;
        max-width: none;
        padding-right: 16px;
        min-height: 0;
    }

    .mnk-os-timeline__slide-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        min-height: 0;
        width: 100%;
    }

    .mnk-os-timeline__year-col {
        width: 100%;
    }

    .mnk-os-timeline__slide.is-active .mnk-os-timeline__year {
        font-size: clamp(2.75rem, 14vw, 4.5rem);
        line-height: 1;
    }

    .mnk-os-timeline__slide:not(.is-active) .mnk-os-timeline__year {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
    }

    /* Active copy uses full width; no horizontal squeeze */
    .mnk-os-timeline__slide.is-active .mnk-os-timeline__content {
        max-width: 100%;
        width: 100%;
        flex: none;
    }

    .mnk-os-timeline__slide-title {
        font-size: clamp(0.8rem, 3.8vw, 1.05rem);
        letter-spacing: 0.06em;
        line-height: 1.35;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .mnk-os-timeline__text {
        font-size: clamp(13px, 3.6vw, 15px);
        line-height: 1.65;
        max-width: 100%;
    }

    .mnk-os-timeline__slider-wrap {
        max-width: 100%;
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 0.25rem;
        padding: 0 16px;
    }

    .mnk-os-timeline__slider-track {
        height: 44px;
        touch-action: none;
    }

    .mnk-os-timeline__slider-thumb {
        min-height: 6px;
        margin-top: -3px;
    }

    .mnk-os-craft-grid {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .mnk-os-craft-grid__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mnk-os-craft-grid__images {
        grid-template-rows: minmax(200px, 42vw) minmax(200px, 42vw);
    }

    .mnk-os-craft-grid__media-inner {
        min-height: min(72vh, 520px);
    }

    .mnk-os-craft-grid__heading {
        font-size: clamp(0.65rem, 2.8vw, 0.85rem);
    }

    .mnk-os-craft-grid__body {
        font-size: clamp(12px, 3.2vw, 14px);
        max-width: none;
    }

    .mnk-os-bollywood-split {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .mnk-os-bollywood-split__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mnk-os-bollywood-split__img {
        min-height: min(70vw, 420px);
    }

    .mnk-os-bollywood-split__text-col {
        padding: clamp(2rem, 6vw, 2.5rem) clamp(1.25rem, 5vw, 1.5rem);
    }

    /* FAQ */
    .mnk-os-faq {
        padding: 48px 16px;
    }

    .mnk-os-faq .mnk-faq.mnk-os-faq__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mnk-os-faq .mnk-os-faq__column {
        gap: 12px;
    }

    .mnk-os-faq .mnk-faq__question {
        padding: 15px 16px;
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    /* Boutiques */
    .mnk-os-boutiques {
        padding: 48px 12px;
    }

    .mnk-os-boutique__carousel {
        padding: 0 40px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .mnk-os-timeline__viewport {
        padding-left: 48px;
    }

    .mnk-os-timeline__slide {
        width: 88%;
        padding-right: 32px;
    }

    .mnk-os-boutiques {
        padding: 60px 32px;
    }

    .mnk-os-faq {
        padding: 60px 32px;
    }
}