.home-media {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--black);
    color: var(--ivory);
}

.home-media .eyebrow {
    color: var(--gold);
}

.home-utsavam {
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-watch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.home-watch-chips button {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--graphite);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-watch-chips button.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-watch-chips button.active:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.home-watch-chips button:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    gap: clamp(34px, 6vw, 92px);

    align-items: center;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 58px;
    background:
        linear-gradient(180deg, rgba(251, 248, 241, 0.8), var(--ivory)),
        radial-gradient(circle at 82% 16%, rgba(232, 216, 170, 0.55), transparent 34rem);
}

.feature-story span,
.quiet-card span,
.story span {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-copy {
    position: relative;
}

.hero-copy-slide {
    display: none;
    opacity: 0;
    transform: translateX(-42px);
}

.hero-copy-slide:nth-child(3) em {
    color: var(--gold);
}

.hero-copy-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: heroCopySlideIn 720ms ease both;
}

.hero-media {
    position: relative;
    min-height: min(72vh, 740px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow);
    transition: border-radius 620ms ease, box-shadow 620ms ease;
}

.hero-full-media .hero-copy,
.hero-full-media .hero-media {
    position: relative;
    z-index: 1;
}

.hero-full-media .hero-meta {
    display: none;
}

.hero-full-media .hero-copy {
    color: var(--white);
}

.hero-full-media .hero-copy .lead {
    color: rgba(255, 255, 255, 0.78);
}

.hero-full-media .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-full-media .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.hero-media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 620ms ease;
    pointer-events: none;
}

.hero-media-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media:nth-child(2) img {
    object-position: top;
}

.hero-media-slide video,
.hero-media-slide img {
    position: absolute;
    inset: 0;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-slider-controls button {
    width: 36px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;

    background: var(--graphite);
    opacity: 0.2;
    cursor: pointer;
}

.hero-slider-controls button.active {
    opacity: 1;
    background: var(--gold);
}

.hero-meta span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-meta div {
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-meta div:last-child {
    border-right: 0;
}

.hero-meta span {
    color: var(--muted);
}

.hero-meta strong {
    font-size: 15px;
}

.feature,
.archives {
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.04), transparent 38%),
        var(--ivory);
}

.feature h2 em {
    color: var(--gold);
}

.feature .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    align-items: start;
    width: 100%;
    max-width: 980px;
}

.feature .section-heading h2 {
    max-width: 780px;
}

.feature .section-heading p:not(.eyebrow) {
    max-width: 560px;
}

.section-heading {}

.section-heading.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.section-heading h2 {
    margin-bottom: 20px;


    font-size: 24px;
    line-height: 1.2;
}

.section-heading p,
.feature-story p,
.quiet-card p,
.story p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
}

.section-heading p {
    font-size: 12px;
}

.section-heading p {
    color: var(--gold);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.72fr 0.72fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-story,
.quiet-card,
.story {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-story {
    position: relative;
    overflow: hidden;
    display: grid;

    gap: 30px;
    min-height: 430px;
    padding: clamp(32px, 5vw, 62px);
    background: var(--black);
    color: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.quiet-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 220ms ease;
}

.quiet-card:hover::after {
    border-color: var(--gold);
}

.quiet-card:hover,
.story:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.feature-story:hover {
    box-shadow: none;
}

.feature-story p {
    color: rgba(255, 255, 255, 0.76);
}

.feature-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    padding: clamp(32px, 5vw, 62px) calc(190px + clamp(32px, 5vw, 62px) + 30px) clamp(32px, 5vw, 62px) clamp(32px, 5vw, 62px);
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.72)),
        var(--feature-bg) center / cover;
    opacity: 0;
    transition: opacity 620ms ease;
    pointer-events: none;
}

.feature-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.feature-slider-controls {
    align-self: end;
    display: flex;
    gap: 9px;
    grid-column: 1;
    position: relative;
    z-index: 2;
}

.feature-slider-controls button {
    width: 36px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.feature-slider-controls button.active {
    background: var(--champagne);
}

.feature-story h3,
.quiet-card h3,
.story h3 {
    font-family: "Average Sans", Inter, system-ui, sans-serif;
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-top: 10px;

    font-size: 24px;
    line-height: 0.9;
}

.feature-story h3,
.quiet-card h3 {
    font-family: "Playfair Display", Georgia, serif !important;
}

.quiet-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 430px;
    padding: 34px;
    border-width: 0 0 0 1px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.feature-story dl {
    display: grid;
    align-content: end;
    gap: 0;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    padding-left: 24px;
    position: relative;
    z-index: 2;
}

.feature-story dl div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-story dl div:last-child {
    border-bottom: 0;
}

.feature-story dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.feature-story dd {
    margin: 0;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.quiet-card strong {
    margin-bottom: auto;
    color: rgba(17, 17, 17, 0.16);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 78px;
    line-height: 1.2;
}

.quiet-card strong img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.quiet-card span {
    margin-top: 40px;
}

.editorial {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--black);
    color: var(--ivory);
}

.editorial {
    background: #e6e2d7;
    color: var(--ink);
}

.editorial .section-heading {
    margin-bottom: 0px;
}

.editorial .section-heading p,
.editorial .eyebrow {
    color: var(--gold);
}

.story {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 0;
    background: #f8f6f0;
    border: 0;
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 44px rgba(0, 0, 0, 0.08);
    color: var(--ink);
}

.story>div {
    position: relative;
    z-index: 2;
    padding: 12px;
    transition: transform 520ms ease;
}

.story img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 520ms ease;
}

.story::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 260ms ease;
    z-index: 4;
}

.story:hover::after {
    border-color: var(--gold);
}

.story:hover img,
.story:hover>div {
    transform: scale(1.035);
}

.lead-story:hover>div {
    transform: scale(1.025);
}

.story .button {
    position: relative;
    z-index: 5;
}

.lead-story {
    display: flex;
    align-items: flex-end;
    min-height: 538px;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.72)),
        url("../images/inside-bollywood.jpg") center / cover;
    color: var(--white);
}

.lead-story>div {
    padding: clamp(30px, 5vw, 54px);
}

.lead-story .lead-story-thumb {
    display: none;
}

.story p {
    display: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
}

.lead-story p {
    display: none;
    color: rgba(255, 255, 255, 0.9);
}

.story span {
    color: #8e8e93;
    font-size: 10px;
}

.lead-story span {
    color: rgba(255, 255, 255, 0.62);
}

.story h3 {
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.2;
}

.lead-story h3 {
    color: var(--white);

    font-size: clamp(26px, 2.5vw, 40px);
}

.editorial .db-story.lead-story {
    display: grid;
    align-items: stretch;
    min-height: 0;
    background: #f8f6f0 !important;
    color: var(--ink);
}

.editorial .db-story.lead-story .lead-story-thumb,
.editorial .db-story.story img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 745 / 280;
    object-fit: contain;
    object-position: center;
}

.editorial .db-story.lead-story>div {
    padding: clamp(22px, 3vw, 34px);
}

.editorial .db-story.lead-story span {
    color: #8e8e93;
}

.editorial .db-story.lead-story h3 {
    color: var(--ink);
}

.editorial-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.editorial-news-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background: #f8f6f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 44px rgba(0, 0, 0, 0.08);
    color: var(--ink);
}

.editorial-news-card-featured {
    grid-column: span 2;
}

.editorial-news-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 745 / 280;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.38);
    transition: transform 520ms ease;
}

.editorial-news-card>div {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
}

.editorial-news-card-featured>div {
    padding: 22px;
}

.editorial-news-card span {
    margin-bottom: 9px;
    color: #8e8e93;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.editorial-news-card h3 {
    margin: 0;
    font-family: "Average Sans", Inter, system-ui, sans-serif;
    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.2;
}

.editorial-news-card-featured h3 {
    max-width: 760px;
    font-size: clamp(21px, 2vw, 30px);
}

.editorial-news-card p {
    margin: 12px 0 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
}

.editorial-news-card .story-read {
    margin-top: 16px;
}

.editorial-news-card:hover img {
    transform: scale(1.025);
}

.editorial-news-card:hover h3 {
    color: var(--gold);
}

.editorial-split-grid {
    --editorial-split-height: clamp(560px, 40vw, 640px);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 18px;
    align-items: start;
}

.editorial-split-feature,
.editorial-split-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #f8f6f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 44px rgba(0, 0, 0, 0.08);
    color: var(--ink);
}

.editorial-split-feature {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: var(--editorial-split-height);
}

.editorial-split-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    height: var(--editorial-split-height);
}

.editorial-split-feature img,
.editorial-split-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 745 / 280;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.38);
    transition: transform 520ms ease;
}

.editorial-split-feature>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(18px, 2.2vw, 28px);
}

.editorial-split-card {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
}

.editorial-split-card>div {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px 16px;
}

.editorial-split-feature span,
.editorial-split-card span {
    display: block;
    margin-bottom: 9px;
    color: #8e8e93;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.editorial-split-feature h3,
.editorial-split-card h3 {
    margin: 0;
    font-family: "Average Sans", Inter, system-ui, sans-serif;
    line-height: 1.2;
}

.editorial-split-feature h3 {
    display: -webkit-box;
    overflow: hidden;
    max-width: 860px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: clamp(26px, 2.2vw, 40px);
    font-weight: 400;
}

.editorial-split-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: clamp(17px, 1.25vw, 19px);
}

.editorial-split-feature p {
    display: -webkit-box;

    overflow: hidden;
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.editorial-split-feature .button {
    margin-top: auto;
}

.editorial-split-feature:hover img,
.editorial-split-card:hover img {
    transform: scale(1.025);
}

.editorial-split-feature:hover h3,
.editorial-split-card:hover h3 {
    color: var(--gold);
}

.beyond-slider {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow);
}

.beyond-slider:hover {
    border-color: var(--gold);
}

.beyond-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(28px, 5vw, 64px);
    opacity: 0;
    transition: opacity 620ms ease;
    pointer-events: none;
}

.beyond-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.beyond-copy span {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.beyond-copy h3 {
    max-width: 620px;
    margin: 0 0 18px;

    font-size: clamp(30px, 3.0vw, 36px);
    line-height: 1.0;
}

.beyond-copy p {
    max-width: 540px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.2;
}

.beyond-slide img {
    width: 100%;
    height: min(34vw, 340px);
    min-height: 260px;
    object-fit: cover;

    border-radius: var(--radius-lg);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.beyond-slider-controls {
    position: absolute;
    left: clamp(28px, 5vw, 64px);
    bottom: 28px;
    z-index: 3;
    display: flex;
    gap: 9px;
    justify-content: center;
}

.beyond-slider-controls button {
    width: 36px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.22);
    cursor: pointer;
}

.beyond-slider-controls button.active {
    background: var(--gold);
}

.watch {
    display: grid;
    grid-template-columns: 0.95fr 0.9fr 0.65fr;
    gap: 14px;
    align-items: start;


    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--ivory);
}

.watch-intro {
    align-self: start;
    padding-top: 8px;
}

.watch-intro h2 {
    max-width: 390px;
    margin-bottom: 18px;

    font-size: clamp(40px, 3.5vw, 48px);
    line-height: 1.0;
}

.watch-intro p:not(.eyebrow) {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.2;
}

.watch-feature,
.watch-stack article {
    position: relative;
    overflow: hidden;
    background: var(--black);
    box-shadow: var(--shadow);
}

.watch-feature {
    max-height: 455px;
    border-radius: 28px;
}

.watch-feature img,
.watch-feature video,
.watch-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 520ms ease;
}

.watch-feature:hover img,
.watch-feature:hover video,
.watch-stack article:hover img {
    transform: scale(1.035);
}

.watch-feature::after,
.watch-stack article::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
    content: "";
}

.watch-stack {
    display: grid;
    gap: 14px;
}

.watch-stack article {
    max-height: 220px;
    border-radius: 26px;
}

.watch-card-copy,
.watch-stack article h3,
.watch-stack article span {
    position: absolute;
    z-index: 2;
}

.watch-card-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: var(--white);
}

.watch-card-copy span,
.watch-stack article span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    color: var(--white);
    font-size: 12px;
}

.watch-playlist-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.watch-feature:has(.watch-playlist-link),
.watch-stack article:has(.watch-playlist-link) {
    cursor: pointer;
}

.watch-card-copy h3 {
    max-width: 360px;
    margin: 10px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
}

.watch-stack article span {
    top: 16px;
    left: 16px;
}

.watch-stack article h3 {
    left: 20px;
    right: 20px;
    bottom: 18px;
    margin: 0;
    color: var(--white);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
}

.archives {
    background:
        radial-gradient(circle at 80% 0%, rgba(232, 216, 170, 0.45), transparent 30rem),
        var(--ivory);
}

.archives .section-heading {
    margin-bottom: 24px;
}

.archives .section-heading h2 {
    max-width: 760px;
    font-size: clamp(52px, 7vw, 80px);
}

.media-slider {
    min-height: 760px;
}

.media-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--ivory);
    color: var(--ink);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
}

.media-slider-controls button {
    width: 36px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.22);
    cursor: pointer;
}

.media-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(34px, 7vw, 86px);
    opacity: 0;
    transition: opacity 620ms ease;
    pointer-events: none;
}

.media-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.media-slide-copy h2 {
    margin-bottom: 20px;

    font-size: clamp(30px, 3.0vw, 36px);
    line-height: 1.0;
}

.media-slide-copy p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.2;
}

.media-slide img {
    width: 100%;
    height: min(34vw, 350px);
    min-height: 270px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.media-slider-controls {
    position: absolute;
    left: clamp(34px, 7vw, 86px);
    bottom: 28px;
    z-index: 3;
    display: flex;
    gap: 9px;
}

.media-slider-controls button.active {
    background: var(--gold);
}

.hero,
.feature-grid,
.feature-story,
.quiet-card,
.story {
    min-width: 0;
}

.hero,
.hero.hero-full-media {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: clamp(30px, 4vw, 56px);
    align-items: start;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;

    padding-top: 110px;
    padding-bottom: clamp(52px, 7vw, 88px);
    overflow: visible;
}

.hero:not(.hero-full-media) .hero-copy,
.hero.hero-full-media .hero-copy {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 980px);
    max-width: 980px;
    color: var(--ink);
}

.hero:not(.hero-full-media) .hero-copy-slide.active,
.hero.hero-full-media .hero-copy-slide.active {
    display: block;
    height: auto;
}

.hero:not(.hero-full-media) .hero-copy .eyebrow,
.hero:not(.hero-full-media) .hero-copy .lead,
.hero.hero-full-media .hero-copy .eyebrow,
.hero.hero-full-media .hero-copy .lead {
    display: block;
}

.hero:not(.hero-full-media) .hero-copy h1,
.hero.hero-full-media .hero-copy h1 {
    max-width: 980px;
    margin-bottom: 28px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1;
    text-shadow: none;
}

.hero:not(.hero-full-media) .hero-copy .lead,
.hero.hero-full-media .hero-copy .lead {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.55;
    text-shadow: none;
}

.hero:not(.hero-full-media) .hero-actions,
.hero.hero-full-media .hero-actions {
    display: flex;
    width: auto;
    max-width: none;
    gap: 12px;
    margin-top: 32px;
}

.hero:not(.hero-full-media) .hero-actions .button,
.hero.hero-full-media .hero-actions .button {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 14px 26px;
}

.hero:not(.hero-full-media) .hero-media,
.hero.hero-full-media .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero:not(.hero-full-media) .hero-media::after,
.hero.hero-full-media .hero-media::after {
    content: none;
}

.hero:not(.hero-full-media) .hero-media video,
.hero.hero-full-media .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .hero-slider-controls,
.hero.hero-full-media .hero-slider-controls {
    display: none;
}

.home-kv {
    background: var(--ivory);
}

.home-kv-slider {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    width: 100%;
    min-width: 0;
}

.home-kv-slide {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: auto auto;
    min-width: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

.home-kv-slide.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.home-kv-visual {
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: #05040b;
}

.home-kv-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-kv-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 4vw, 52px);
    min-height: 128px;
    padding: 20px clamp(22px, 3vw, 38px);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: rgba(255, 255, 255, 0.52);
}

.home-kv-copy>div:first-child {
    /* max-width: 60%; */
}

.home-kv-copy .eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
}

.home-kv-copy h2 {
    margin: 0 0 7px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.08;
}

.home-kv-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.home-kv-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.home-kv-actions .button {
    min-width: 0;
    min-height: 38px;
    padding: 10px 16px;
    font-size: 10px;
    line-height: 1;
}

.home-kv-actions .button.secondary {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.home-kv-controls {
    z-index: 2;
    grid-column: 1;
    grid-row: 2;
    display: flex;
    justify-self: center;
    gap: 8px;
    margin-top: 18px;
}

.home-kv-controls button {
    width: 32px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--graphite);
    opacity: 0.2;
    cursor: pointer;
}

.home-kv-controls button.active {
    background: var(--gold);
    opacity: 1;
}

.home-kv {
    padding-right: 0;
    padding-left: 0;
}

.home-kv-slider {
    grid-template-rows: auto;
}

.home-kv-slide {
    position: relative;
    grid-template-rows: auto;
    overflow: hidden;
}

.home-kv-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.78) 100%);
    pointer-events: none;
}

.home-kv-visual {
    grid-column: 1;
    grid-row: 1;
    border-radius: 0;
}

.home-kv-copy {
    position: absolute;
    right: clamp(24px, 5vw, 76px);
    bottom: clamp(42px, 5vw, 72px);
    left: clamp(24px, 5vw, 76px);
    z-index: 2;
    display: flex;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white);
}

.home-kv-copy h2 {
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.home-kv-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.46);
}

.home-kv-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.home-kv-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    z-index: 3;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    transform: translateX(-50%);
}

.home-kv-controls button {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.home-kv-store {
    display: block;
    flex: 0 0 auto;
    width: clamp(83px, 7.7vw, 108px);
    line-height: 0;
}

.home-kv-store img {
    display: block;
    width: 100%;
    height: auto;
}

.beyond-slider-track,
.media-slider-track {
    display: contents;
}

.watch-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-item span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.partners-track {
    display: flex;
    gap: clamp(24px, 4vw, 68px);
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.partners-track img {
    width: clamp(105px, 10vw, 168px);
    height: 54px;
    flex: 0 0 auto;




    object-fit: contain;
    filter: saturate(0.96) contrast(1.02);
}

.timeline-item p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.2;
}

.timeline-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.story-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.story-card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
}

.story-read {
    margin-top: 5px;
    padding: 10px 16px;
    font-size: 10px;
}

.watch-frame {
    position: relative;
    height: min(68vw, 740px);
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--black);
    box-shadow: var(--shadow);
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-button::before {
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--black);
    transform: translateX(2px);
    content: "";
}

.timeline-item {
    position: relative;
    z-index: 1;
    min-height: 225px;
    padding: 34px 24px;
    border: 0;
    border-radius: 18px;
    background: #fbfaf6;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.timeline-item:first-child {
    border-left: 0;
}

.timeline-item strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--gold);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.2;
    letter-spacing: 0.06em;
}

.timeline-item span {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(25px, 2.8vw, 31px);
    font-weight: 700;

    text-transform: none;
}

.android_btn {
    border-radius: unset;
    height: 50px;
    width: 175px;
    background: unset;
    background-image: url(../images/android_ps_btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ios_btn {
    border-radius: unset;
    height: 50px;
    width: 175px;
    background: unset;
    background-image: url(../images/ios_ps_btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.partners>span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.partners {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px clamp(22px, 5vw, 76px);
    background: var(--line);
    color: var(--black);
}

.partners>span {
    color: var(--black);
    white-space: nowrap;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    border-top: 0;
    position: relative;
}

.timeline::before {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 34px;
    height: 2px;
    background: rgba(184, 149, 53, 0.35);
    content: "";
}

@media (min-width: 1181px) {
    .hero {
        height: clamp(720px, 100svh, 920px);
        min-height: 0;
        overflow: hidden;
    }

    .hero,
    .hero.hero-full-media {
        grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
        grid-template-rows: auto;
        gap: clamp(34px, 6vw, 92px);
        align-items: center;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 58px;
    }

    .hero:not(.hero-full-media) .hero-copy,
    .hero.hero-full-media .hero-copy {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        max-width: none;
    }

    .hero:not(.hero-full-media) .hero-media,
    .hero.hero-full-media .hero-media {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        min-height: min(72vh, 740px);
        aspect-ratio: auto;
        justify-self: stretch;
        align-self: center;
    }

    .home-kv {
        display: none;
    }

    .hero.hero-full-media {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr);
        align-items: center;
        min-height: 100vh;
        overflow: hidden;
        isolation: isolate;
    }

    .hero.hero-full-media .hero-copy {
        position: relative;
        z-index: 3;
        grid-column: 1;
        grid-row: 1;
        width: min(100%, 620px);
        color: var(--white);
    }

    .hero.hero-full-media .hero-copy h1 {
        color: var(--white);
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
    }

    .hero.hero-full-media .hero-copy .lead {
        color: rgba(255, 255, 255, 0.82);
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.48);
    }

    .hero.hero-full-media .hero-media {
        position: absolute;


        top: -80px;
        right: calc(-1 * clamp(22px, 5vw, 76px));
        bottom: 0;
        left: calc(-1 * clamp(22px, 5vw, 76px));
        z-index: 0;
        grid-column: 1 / -1;
        grid-row: 1;

        width: auto;

        height: auto;
        min-height: 0;
        align-self: stretch;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
    }

    .hero.hero-full-media .hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.1));
        pointer-events: none;
    }

    .hero .hero-slider-controls,
    .hero.hero-full-media .hero-slider-controls {
        display: flex;
    }

    .hero.hero-full-media .hero-actions .android_btn,
    .hero.hero-full-media .hero-actions .ios_btn {
        flex: 0 0 175px;
        width: 175px;
        height: 50px;
        min-height: 50px;
        padding: 0;
    }

    .home-kv-copy {
        display: block;
    }

    .home-kv-actions {
        justify-content: flex-start;
        margin-top: 13px;
    }

    .feature-grid {
        grid-template-rows: minmax(0, 1fr) auto auto auto;
    }

    .feature-story,
    .quiet-card {
        grid-row: 1 / -1;
    }

    .quiet-card {
        display: grid;
        grid-template-rows: subgrid;
        justify-content: normal;
    }

    .quiet-card strong {
        grid-row: 1;
        margin-bottom: 0;
        align-self: start;
    }

    .quiet-card>.mobile-hide {
        grid-row: 2;
        margin-top: 0;
    }

    .quiet-card h3 {
        grid-row: 3;
    }

    .quiet-card p {
        grid-row: 4;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-media,
    .hero-slider-controls,
    .hero-meta {
        grid-column: 1 / -1;
    }

    .hero-media {
        width: min(100%, 820px);
        min-height: 0;
        aspect-ratio: 16 / 9;
        justify-self: center;
        align-self: center;
        border-radius: clamp(24px, 4vw, 36px);
    }

    .hero-media video,
    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slider-controls {
        justify-self: center;
    }

    .hero.hero-full-media {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        align-items: end;
        min-height: clamp(720px, 100svh, 920px);

        padding-top: 100px;
        padding-bottom: clamp(64px, 9vw, 100px);
        overflow: hidden;
    }

    .hero.hero-full-media .hero-copy {
        position: relative;
        z-index: 2;
        grid-column: 1 / -1;
        align-self: end;
        max-width: min(100%, 980px);
    }

    .hero.hero-full-media .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(56px, 7.4vw, 82px);
        line-height: 1.02;
    }

    .hero.hero-full-media .hero-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        justify-self: stretch;
        align-self: stretch;
    }

    .hero.hero-full-media .hero-media::after {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.14)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    }

    .hero.hero-full-media .hero-slider-controls {
        position: relative;
        z-index: 3;
        grid-column: 1 / -1;
        justify-self: start;
    }

    .hero.hero-full-media .hero-media {
        left: calc(-1 * clamp(22px, 5vw, 76px));
        right: calc(-1 * clamp(22px, 5vw, 76px));
        top: 0;
        bottom: 0;
        width: auto;
        max-width: none;
    }

    .hero:not(.hero-full-media) .hero-slider-controls {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        justify-self: center;
        margin-top: 14px;
        margin-bottom: 0;
    }

    .editorial-split-grid {
        --editorial-split-height: auto;
        gap: 24px;
        align-items: start;
    }

    .editorial-split-feature,
    .editorial-split-stack,
    .editorial-split-card {
        height: auto;
        min-height: 0;
    }

    .editorial-split-stack {
        align-items: start;
    }

    .editorial-split-feature,
    .editorial-split-card {
        grid-template-rows: auto auto;
        align-self: start;
    }

    .editorial-split-feature>div,
    .editorial-split-card>div {
        min-height: 0;
        justify-content: flex-start;
    }

    .editorial-split-feature .button {
        margin-top: 22px;
    }

    .beyond-slider {
        min-height: clamp(400px, 52vw, 520px);
    }

    .beyond-slide {
        grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
        padding: clamp(30px, 5vw, 56px);
    }

    .beyond-copy h3 {
        max-width: 560px;
        font-size: clamp(32px, 4.2vw, 44px);
    }

    .beyond-copy p {
        max-width: 520px;
        font-size: clamp(16px, 2.1vw, 19px);
    }

    .beyond-slide img {
        height: clamp(260px, 34vw, 360px);
        min-height: 0;
        align-self: center;
    }

    .media-slider {
        min-height: clamp(420px, 54vw, 540px);
    }

    .media-slide {
        grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
        align-content: center;
        padding: clamp(30px, 5vw, 56px);
        padding-bottom: clamp(54px, 7vw, 76px);
    }

    .media-slide-copy h2 {
        max-width: 560px;
        font-size: clamp(32px, 4.2vw, 44px);
    }

    .media-slide-copy p:not(.eyebrow) {
        max-width: 520px;
        font-size: clamp(16px, 2.1vw, 19px);
    }

    .media-slide img {
        height: clamp(260px, 34vw, 360px);
        min-height: 0;
        align-self: center;
    }

    .feature-grid {
        grid-template-rows: minmax(0, 1fr) auto auto auto;
    }

    .feature-story,
    .quiet-card {
        grid-row: 1 / -1;
    }

    .quiet-card {
        display: grid;
        grid-template-rows: subgrid;
        justify-content: normal;
    }

    .quiet-card strong {
        grid-row: 1;
        margin-bottom: 0;
        align-self: start;
    }

    .quiet-card>.mobile-hide {
        grid-row: 2;
        margin-top: 0;
    }

    .quiet-card h3 {
        grid-row: 3;
    }

    .quiet-card p {
        grid-row: 4;
    }
}

@media (max-width: 1180px) {

    .hero,
    .feature-grid,
    .watch {
        grid-template-columns: 1fr 1fr;
    }

    .feature .section-heading,
    .feature-story,
    .beyond-slide,
    .media-slide {
        grid-template-columns: 1fr;
    }

    .feature-story dl {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        padding-top: 12px;
        padding-left: 0;
    }

    .hero-copy,
    .hero-meta,
    .feature-story,
    .beyond-slider,
    .media-slider,
    .lead-story,
    .watch-intro {
        grid-column: 1 / -1;
    }

    .editorial-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-news-card-featured {
        grid-column: 1 / -1;
    }

    .editorial-split-grid {
        grid-template-columns: 1fr;
    }

    .editorial-split-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .editorial .story,
    .editorial .lead-story {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        background: #f8f6f0 !important;
        color: var(--ink);
    }

    .editorial .story img,
    .editorial .lead-story .lead-story-thumb {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 0;
        object-fit: cover;
    }

    .editorial .story>div,
    .editorial .lead-story>div {
        align-self: start;
        padding: 16px;
    }

    .editorial .lead-story span,
    .editorial .lead-story h3 {
        color: var(--ink);
    }

    .editorial .lead-story .button {
        display: none;
    }

    .editorial .story h3,
    .editorial .lead-story h3 {
        font-size: clamp(18px, 5.2vw, 24px);
        line-height: 1.2;
    }

    .story-grid,
    .story-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .feature-story span {
        margin-bottom: 0px;
    }

    .home-watch-chips button.active {
        font-size: 8px;
    }

    .home-utsavam {
        padding-bottom: 20px;
    }

    .home-media.section-pad {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .hero,
    .feature .section-heading,
    .feature-grid,
    .watch {
        grid-template-columns: 1fr;
    }

    .editorial-news-grid {
        grid-template-columns: 1fr;
    }

    .editorial-news-card-featured {
        grid-column: auto;
    }

    .editorial-news-card>div,
    .editorial-news-card-featured>div {
        padding: 16px;
    }

    .editorial-news-card-featured h3 {
        font-size: clamp(18px, 5.2vw, 24px);
    }

    .editorial-split-feature .button {
        margin-top: 20px;
    }

    .editorial-split-grid,
    .editorial-split-stack {
        grid-template-columns: 1fr;
        --editorial-split-height: unset
    }

    .editorial-split-feature>div,
    .editorial-split-card>div {
        padding: 16px;
    }

    .editorial-split-feature h3 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .editorial .story,
    .editorial .lead-story {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        background: #f8f6f0 !important;
        color: var(--ink);
    }

    .editorial .story img,
    .editorial .lead-story .lead-story-thumb {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 0;
        object-fit: cover;
    }

    .editorial .story>div,
    .editorial .lead-story>div {
        align-self: start;
        padding: 16px;
    }

    .editorial .lead-story span,
    .editorial .lead-story h3 {
        color: var(--ink);
    }

    .editorial .lead-story .button {
        display: none;
    }

    .editorial .story h3,
    .editorial .lead-story h3 {
        font-size: clamp(18px, 5.2vw, 24px);
        line-height: 1.2;
    }

    .editorial {
        padding-bottom: 10px;
    }

    .hero {
        min-height: auto;
        padding-top: 132px;
    }

    .hero-media {
        min-height: 480px;
    }

    .hero-meta {
        grid-template-columns: 1fr 1fr;
    }

    .hero-meta div:nth-child(2n) {
        border-right: 0;
    }

    .section-heading.split {
        align-items: center;
    }

    .section-heading h2 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .beyond-copy h3 {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .beyond-copy p {
        margin: 0 0 18px;
        font-size: 14px;
    }

    .beyond-slider {
        min-height: 620px;
    }

    .beyond-slide,
    .media-slide {
        align-content: start;
        padding-bottom: 52px;
    }

    .watch {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .watch-intro h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .watch-intro p:not(.eyebrow) {
        font-size: 14px;
    }

    .watch-intro {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .beyond-slide img,
    .media-slide img {
        height: 260px;
    }

    .beyond-slider-controls,
    .media-slider-controls {
        right: clamp(28px, 5vw, 64px);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding-top: clamp(108px, 28vw, 136px);
        padding-bottom: 42px;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.04;
    }

    .hero-copy .lead {
        max-width: 100%;
        font-size: clamp(15px, 4.4vw, 18px);
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-actions .button {
        width: auto;
        min-width: min(100%, 148px);
        flex: 1 1 148px;
    }

    .hero-media {
        width: min(100%, 420px);
        min-height: 0;
        aspect-ratio: 4 / 5;
        justify-self: center;
        border-radius: 22px;
    }

    .hero-slider-controls {
        justify-self: center;
        grid-column: 1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-story {
        display: block;
        min-height: 0;
        aspect-ratio: auto;
    }

    .feature-slide {
        min-height: clamp(420px, 116vw, 560px);
        align-content: end;
        padding: 84px 24px 76px;
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.84) 100%),
            var(--feature-bg) center / cover;
    }

    .feature-story h3 {
        max-width: 11ch;
        font-size: clamp(30px, 10vw, 44px);
        line-height: 0.98;
    }

    .feature-story p {
        max-width: 18rem;

        font-size: 14px;
        line-height: 1.1;
    }

    .feature-slider-controls {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 28px;
        z-index: 3;
        grid-column: auto;
    }

    .quiet-card {
        min-height: 0;
        padding: 30px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .quiet-card strong {
        margin-bottom: 0px;
        font-size: clamp(62px, 18vw, 88px);
        line-height: 0.86;
        display: flex;
        align-items: center;
    }

    .quiet-card strong img {
        width: 20px;
        height: 20px;
    }

    .quiet-card span {
        margin-top: 0;
        margin-left: 10px;
    }

    .quiet-card h3 {
        max-width: 100%;

        font-size: 20px;
        line-height: 1.02;
    }

    .quiet-card p {
        font-size: 14px;
        line-height: 1.1;
    }

    .feature {
        padding-bottom: 0px;
    }

    .feature-slide {
        padding-inline: 20px;
    }

    .hero-copy,
    .hero-copy-slide,
    .hero-copy-slide.active,
    .hero-actions,
    .feature-slide>*,
    .quiet-card>* {
        max-width: 100%;
        min-width: 0;
    }

    .hero-copy h1,
    .feature-story h3,
    .quiet-card h3 {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: auto;
    }

    .hero-copy h1 {
        font-size: clamp(32px, 9.2vw, 40px);
        line-height: 1.08;
    }

    .hero-actions .button {
        max-width: 100%;

        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
    }

    .hero-actions .button {
        flex: 1 1 100%;
        min-width: 0;
    }

    .feature-story h3 {
        font-size: 20px;
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(30px, 8.6vw, 36px);
    }

    .hero-copy .lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .feature-story {
        display: grid;
        width: 100%;
        min-height: clamp(420px, 116vw, 560px) !important;
        padding: 0;

        isolation: isolate;
    }

    .feature-slide {
        min-height: 100% !important;
        height: 100%;
        inset: 0;
        /* padding-bottom: 150px; */
        align-content: end;
    }

    .feature-slider-controls {
        left: 24px;
        right: auto;

        bottom: 05%;
        display: grid;

        width: 70vw;
        gap: 8px;
        margin: 0;
        grid-auto-flow: column;
    }

    .feature-slider-controls.hero-actions .button {
        flex: none;
        width: 100%;
        height: 50px;
        min-height: 0;
    }

    .beyond-slide img {
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }

    .media-slider {
        min-height: 0 !important;
        height: auto;
        overflow: visible;
        border-radius: 28px;
        background: var(--ivory);
    }

    .media-slide {
        position: relative;
        inset: auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
        padding: 28px 18px 64px;
        opacity: 1;
        pointer-events: auto;
    }

    .media-slide.active {
        display: grid;
    }

    .media-slide-copy {
        min-width: 0;
        max-width: 100%;
    }

    .media-slide-copy .eyebrow {
        margin-bottom: 18px;
        line-height: 1.35;
    }

    .media-slide-copy h2 {
        max-width: 100%;
        margin-bottom: 18px;

        font-size: 20px;
        line-height: 0.96;
        overflow-wrap: normal;
        word-break: normal;
    }

    .media-slide-copy p:not(.eyebrow) {
        max-width: 100%;
        margin-bottom: 22px;

        font-size: 14px;
        line-height: 1.2;
    }

    .media-slide-copy .button {
        width: 100%;
    }

    .media-slide img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center top;
        border-radius: 22px;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
    }

    .media-slider-controls {
        left: 18px;
        right: 18px;
        bottom: 30px;
        justify-content: center;
    }

    .media-slide-copy h2 {
        font-size: 20px;
    }

    .media-slide {
        padding-inline: 16px;
    }


    .beyond-slider,
    .media-slider {
        display: grid;
        height: auto;
        min-height: 0 !important;
        overflow: hidden;
    }

    .beyond-slide,
    .media-slide {
        position: relative;
        inset: auto;
        grid-area: 1 / 1;
        display: grid;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .beyond-slide.active,
    .media-slide.active {
        display: grid;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .hero,
    .hero.hero-full-media {
        gap: 28px;
        padding-top: calc(var(--phone-home-nav-height) + 20px);
        padding-right: clamp(18px, 6vw, 24px);
        padding-bottom: 42px;
        padding-left: clamp(18px, 6vw, 24px);
        overflow: visible;
    }

    .hero:not(.hero-full-media) .hero-copy,
    .hero.hero-full-media .hero-copy {
        width: 100%;
        max-width: none;
    }

    .hero:not(.hero-full-media) .hero-copy h1,
    .hero.hero-full-media .hero-copy h1 {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.04;
    }

    .hero:not(.hero-full-media) .hero-actions,
    .hero.hero-full-media .hero-actions {
        width: 100%;
    }

    .hero:not(.hero-full-media) .hero-actions .button,
    .hero.hero-full-media .hero-actions .button {
        flex: 1 1 100%;
        width: 100%;
        min-height: 52px;
    }

    .hero:not(.hero-full-media) .hero-media,
    .hero.hero-full-media .hero-media {
        width: min(100%, 420px);
        aspect-ratio: 4 / 5;
        justify-self: center;
        border-radius: 22px;
    }

    .home-kv {}

    .home-kv-visual {
        border-radius: 18px 18px 0 0;
    }

    .home-kv-copy {
        display: block;
        min-height: 0;
        padding: 18px;
        border-radius: 0 0 18px 18px;
    }

    .home-kv-copy h2 {
        font-size: clamp(21px, 6.4vw, 26px);
    }

    .home-kv-copy p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.4;
    }

    .home-kv-actions {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .home-kv-actions .button {
        flex: 0 1 auto;
        width: auto;
        min-height: 36px;
        padding: 9px 14px;
    }

    .home-kv-controls {
        margin-top: 14px;
    }

    .home-kv {
        padding-right: 0;
        padding-left: 0;
    }

    .home-kv-visual {
        border-radius: 0;
    }

    .home-kv-copy {
        right: 18px;
        bottom: 10px;
        left: 18px;
        display: block;
        padding: 0;
        border-radius: 0;
    }

    .home-kv-copy .eyebrow {
        margin-bottom: 4px;
        font-size: 9px;
        display: none;
    }

    .home-kv-copy h2 {
        margin-bottom: 5px;

        font-size: 14px;
        line-height: 1.02;
    }

    .home-kv-copy p:not(.eyebrow) {
        font-size: 10px;
        line-height: 1.1;
        display: none;
    }

    .home-kv-actions {
        margin-top: 9px;
        gap: 6px;
    }

    .home-kv-actions .button {
        min-height: 32px;
        padding: 8px 11px;
        font-size: 9px;
    }

    .home-kv-controls {
        bottom: -15px;
        margin: 0;
    }

    .home-kv-store {
        width: 78px;
    }

    .beyond-slider,
    .media-slider {
        overflow: hidden;
    }

    .beyond-slider-track,
    .media-slider-track {
        display: flex;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        transform: translate3d(var(--mobile-slide-offset, 0%), 0, 0);
        transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: transform;
    }

    .beyond-slider-track .beyond-slide,
    .media-slider-track .media-slide {
        position: relative;
        inset: auto;
        grid-area: auto;
        display: grid;
        flex: 0 0 100%;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        visibility: visible;
        opacity: 1;
        transition: none;
        pointer-events: none;
    }

    .beyond-slider-track .beyond-slide {
        grid-template-columns: 1fr;
    }

    .beyond-slider-track .beyond-slide.active,
    .media-slider-track .media-slide.active {
        display: grid;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .story-grid,
    .story-card-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item:first-child {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-inline: 0;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .partners {
        align-items: start;
    }

    .timeline::before {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    .home-kv-slide {
        transition: none;
    }

    .beyond-slider-track,
    .media-slider-track {
        transition: none;
    }
}