@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:wght@400;500;600&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --font-display: 'EB Garamond', serif;
    /* --font-body: 'Work Sans', sans-serif; */
    --font-body: 'EB Garamond', serif;
    --color-dark: #1a1a1a;
    --color-muted: #6c757d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark);
}

@media (max-width: 767.98px) {
    .statement-quote {
        font-size: clamp(1.65rem, 5.5vw, 2.25rem);
    }

    .section-title.display-4 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-video .about-quote.fs-1 {
        font-size: clamp(1.2rem, 4.2vw, 1.85rem) !important;
        line-height: 1.35;
    }
}

@media (max-width: 575.98px) {
    .logo {
        width: min(160px, 55vw);
    }

    .header-marquee {
        font-size: 1.1rem;
    }

    #mainNav .navbar-collapse .btn.btn-lg {
        font-size: 0.82rem;
        padding: 0.45rem 0.75rem;
        line-height: 1.25;
        margin-left: 0 !important;
        margin-top: 0.35rem;
    }

    .anant-samagam-panel__inner:not(.p-0),
    .registry-panel__inner:not(.p-0) {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Typography overrides */
p.lead {
    font-weight: 600;
}

p.small {
    font-weight: 600;
    color: rgba(41, 41, 41, 1);
}

.letter-spacing {
    letter-spacing: 0.08em;
}

/* Nav */
#mainNav {
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

#mainNav .nav-link {
    font-weight: 400;
    letter-spacing: 0.02em;
}

#mainNav .nav-link:hover {
    color: var(--color-dark);
}

/* Hero: full-width video */
.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    background: #e9ecef;
}

.hero-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-video-item.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-video__nav {
    position: absolute;
    bottom: clamp(0.75rem, 3vw, 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 2vw, 1.1rem);
    pointer-events: auto;
}

.hero-video__nav-btn {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-video__nav-btn:hover {
    background: rgba(0, 0, 0, 0.55);
    border-color: #fff;
}

.hero-video__nav-btn:active {
    transform: scale(0.96);
}

.hero-video__nav-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.hero-video__dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-video__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-video__dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.35);
}

.hero-video__dot.is-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
}

.hero-video__dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 575.98px) {
    .hero-video__nav-btn {
        width: 2.15rem;
        height: 2.15rem;
        font-size: 0.8rem;
    }

    .hero-video__dots {
        gap: 0.35rem;
    }
}

/* Legacy hero (if used elsewhere) */
.hero {
    background: #fafafa;
}

.header-marquee {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.header-marquee-text{
    font-weight: 400;
    color: #666;
}

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

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

.hero-content .hero-title {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    line-height: 1.15;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
}

/* Sections */
.section-title {
    font-family: var(--font-display);
    letter-spacing: 0.03em;
}

.statement-section {
    background: #fff;
}

.statement-quote {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.statement-body {
    margin-bottom: 1rem;
}

/* Cards */
.card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .08) !important;
}

/* Footer */
.footer a:hover {
    color: #fff !important;
}

.footer-logo {
    max-width: 180px;
}

.footer-links li + li {
    margin-top: 0.25rem;
}

.footer-contact {
    font-style: normal;
    line-height: 1.6;
}

.footer-contact a {
    word-break: break-word;
}

.footer-social-link {
    color: #fff;
    text-decoration: none;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.footer-social-link:hover .footer-social-icon {
    background-color: #fff;
    color: #000;
}

/* Buttons */
.btn {
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-outline-dark:hover {
    background: var(--color-dark);
    color: #fff;
}

/* Tabs */
.nav-tabs .nav-link {
    background: transparent;
    color: var(--color-dark);
}

.nav-tabs .nav-link.active {
    background: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
}

.min-vh-25 {
    min-height: 12rem;
}

.min-vh-50 {
    min-height: 20rem;
}

.object-fit-cover {
    object-fit: cover;
}

/* Anant Samagam: magenta panel + image */
.anant-samagam-section {
    background: #fff;
}

.anant-samagam-panel {
    background: #e01679;
}

.anant-samagam-panel__inner {
    max-width: 43rem;
}

.anant-samagam-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
}

.anant-samagam-editions {
    margin-top: 2.5rem;
}

.anant-samagam-edition-logo {
    width: 140px;
    max-width: 100%;
}

.anant-samagam-panel {
    display: flex;
}

@media (min-width: 992px) {
    .anant-samagam-panel__inner {
        margin-left: auto;
    }
}

.anant-samagam-image img {
    display: block;
}

.anant-samagam-image {
    background: #e9ecef;
}

/* Registry: dark blue panel + image */
.registry-panel {
    background: #0d2137;
    display: flex;
}

.registry-panel__inner {
    max-width: 43rem;
}

.registry-image {
    background: #1a365d;
}

.registry-image img {
    display: block;
}

@media (min-width: 992px) {
    .registry-panel__inner {
        margin-left: auto;
    }
}

/* Fields of Engagement: Swiper */
.fields-swiper {
    padding-bottom: 0.5rem;
}

.field-card {
    width: 100%;
}

.fields-swiper .swiper-slide {
    height: auto;
}

.fields-nav .swiper-button-prev,
.fields-nav .swiper-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-dark);
    border-radius: 0;
    color: var(--color-dark);
}

.fields-nav .swiper-button-prev::after,
.fields-nav .swiper-button-next::after {
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    #fields .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .fields-nav {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
}

/* Current & Forthcoming: Swiper */
.forthcoming-swiper .swiper-slide {
    height: auto;
}

.forthcoming-card {
    padding: 1.5rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.forthcoming-body h3 {
    font-family: var(--font-display);
}

.forthcoming-nav .swiper-button-prev,
.forthcoming-nav .swiper-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-dark);
    border-radius: 0;
    color: var(--color-dark);
}

.forthcoming-nav .swiper-button-prev::after,
.forthcoming-nav .swiper-button-next::after {
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .forthcoming-card {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* In Conversation: Swiper */
.conversation-swiper {
    overflow: hidden;
    padding-bottom: 0.25rem;
}

.conversation-swiper .swiper-slide {
    height: auto;
}

.conversation-nav .swiper-button-prev,
.conversation-nav .swiper-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-dark);
    border-radius: 0;
    color: var(--color-dark);
    margin-top: 0;
}

.conversation-nav .swiper-button-prev::after,
.conversation-nav .swiper-button-next::after {
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    #conversation .conversation-nav {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.25rem;
    }
}

@media (min-width: 992px) {
    .conversation-swiper .card-body {
        padding: 1rem 1rem 1.25rem !important;
    }

    .conversation-swiper .card-body .h5 {
        font-size: 1.05rem;
    }
}

/* In Conversation play button */
.conversation-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.conversation-play-icon {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid #ff0000;
}


.logo {
    width: 210px;
}

.border-bottom-1{
    border-bottom: 1px solid var(--color-dark);
}

.border-bottom-3{
    border-bottom: 3px solid var(--color-dark);
}

/* About Us page */
.about-kicker {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-dark);
}

.about-title {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.about-subtitle {
    font-weight: 600;
    color: var(--color-dark);
}

.about-position-punch {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.15;
}

.about-rich-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-quote-panel {
    background-color: #0d2137;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 55%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.about-quote-panel__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-quote-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.about-quote {
    position: relative;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 2.45rem;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Anant Samagam 2.0 hero */
.as2-hero.about-quote-panel {
    align-items: stretch;
    justify-content: center;
    min-height: 100vh;
}

.as2-hero .as2-hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(3.5rem, 10vh, 7rem);
    padding-bottom: clamp(3rem, 8vh, 6rem);
    min-height: min(100vh, 920px);
}

.as2-hero__head {
    width: 100%;
}

.as2-hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: normal;
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.as2-hero__locations-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-top: 1rem;
}

.as2-hero__locations-line {
    flex: 1 1 0;
    max-width: 7rem;
    min-width: 1.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.as2-hero__locations {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2.2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.as2-hero__tagline {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.35;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
    margin-top: clamp(3rem, 14vh, 9rem);
}

@media (max-width: 575.98px) {
    .as2-hero__locations {
        white-space: normal;
        max-width: 18rem;
        line-height: 1.4;
    }

    .as2-hero__locations-line {
        max-width: 3rem;
        min-width: 0.75rem;
    }
}

/* Anant Samagam 2 — Chapter Archive (Swiper) */
.as2-gallery-swiper {
    overflow: hidden;
    padding-bottom: 2.5rem;
}

.as2-gallery-swiper .swiper-slide {
    height: auto;
}

.as2-gallery-slide img {
    display: block;
}

.as2-gallery-nav .swiper-button-prev,
.as2-gallery-nav .swiper-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-dark);
    border-radius: 0;
    color: var(--color-dark);
    margin-top: 0;
}

.as2-gallery-nav .swiper-button-prev::after,
.as2-gallery-nav .swiper-button-next::after {
    font-size: 0.9rem;
}

.as2-gallery-swiper .swiper-pagination {
    bottom: 0;
}

.as2-gallery-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-dark);
    opacity: 0.25;
}

.as2-gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.as-lightbox-trigger {
    cursor: zoom-in;
}

@media (max-width: 767.98px) {
    .as2-gallery-nav {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Anant Samagam 2 — Fields of Cultural Practice accordion */
.as2-accordion {
    border-top: 1px solid #d9d9d9;
}

.as2-accordion__item {
    border-bottom: 1px solid #d9d9d9;
}

.as2-accordion__btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--color-dark);
    transition: color 0.15s ease;
}

.as2-accordion__btn:hover {
    color: var(--color-dark);
}

.as2-accordion__btn:focus-visible {
    outline: 2px solid var(--color-dark);
    outline-offset: 2px;
}

.as2-accordion__chevron {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    font-size: 0.65rem;
    color: var(--color-dark);
    transition: transform 0.25s ease;
}

.as2-accordion__btn:not(.collapsed) .as2-accordion__chevron {
    transform: rotate(180deg);
}

.as2-accordion__title {
    flex: 1;
    min-width: 0;
}

.as2-accordion__mark {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    color: #9a9a9a;
    line-height: 1;
}

.as2-accordion__body {
    padding: 0 0 1.25rem 2rem;
    font-family: var(--font-display);
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 500;
    color: #444;
}

@media (max-width: 575.98px) {
    .as2-accordion__body {
        padding-left: 0;
        padding-top: 0.25rem;
    }
}

/* Anant Samagam 2 — Visual Dialogues gallery */
.as2-visual-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1.35fr;
    gap: 0.65rem;
}

.as2-visual-gallery__right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.as2-visual-gallery__frame {
    overflow: hidden;
    background: #eee;
    border: 1px solid rgba(0, 0, 0, 0.05);
    aspect-ratio: 16 / 10;
}

.as2-visual-gallery__left .as2-visual-gallery__frame {
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
}

.as2-visual-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .as2-visual-gallery {
        grid-template-columns: 1fr;
    }

    .as2-visual-gallery__left .as2-visual-gallery__frame {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

/* Anant Samagam 2 — Photography section */
.as2-photo-hero__img,
.as2-photo-bottom__img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.as2-photo-hero__img {
    aspect-ratio: 16 / 7;
}

.as2-photo-bottom__img {
    aspect-ratio: 16 / 6;
}

.as2-photo-card__img-wrap {
    overflow: hidden;
    background: #eee;
    margin-bottom: 0.75rem;
}

.as2-photo-card__img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.as2-photo-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 0.55rem;
}

.as2-photo-card__text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.35;
    color: #333;
}

.as2-photo-quote {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.2;
    font-weight: 700;
}

.as2-photo-cta {
    background: #7b7b7b;
    border: 1px solid #7b7b7b;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.05;
}

.as2-photo-cta:hover {
    background: #646464;
    border-color: #646464;
    color: #fff;
}

@media (max-width: 991.98px) {
    .as2-photo-card__name {
        font-size: 1.45rem;
    }

    .as2-photo-card__text {
        font-size: 1rem;
    }

    .as2-photo-quote {
        font-size: 1.35rem;
    }

    .as2-photo-cta {
        font-size: 1.4rem;
    }
}

/* Anant Samagam 2 — Fashion & Textile section */
.as2-fashion-hero {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 1rem;
    align-items: start;
}

.as2-fashion-hero__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 8;
}

.as2-fashion-hero__copy {
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.45;
}

.as2-fashion-section-title,
.as2-fashion-closing-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.1;
}

.as2-fashion-card__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    margin-bottom: 0.6rem;
}

.as2-fashion-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.05;
    margin-bottom: 0.45rem;
}

.as2-fashion-card__text,
.as2-fashion-closing-copy {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

.as2-fashion-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.as2-fashion-gallery__item {
    overflow: hidden;
    background: #eee;
}

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

.as2-fashion-gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.as2-fashion-closing-quote {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.22;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .as2-fashion-hero {
        grid-template-columns: 1fr;
    }

    .as2-fashion-section-title,
    .as2-fashion-closing-title {
        font-size: 1.6rem;
    }

    .as2-fashion-card__name {
        font-size: 1.35rem;
    }

    .as2-fashion-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .as2-fashion-closing-quote {
        font-size: 1.2rem;
    }
}

/* Anant Samagam 2 — Music & Performance section */
.as2-music-section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.1;
}

.as2-music-card__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    margin-bottom: 0.65rem;
}

.as2-music-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.05;
    margin-bottom: 0.45rem;
}

.as2-music-card__text {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.38;
    color: #333;
}

.as2-music-moments {
    display: grid;
    gap: 0.35rem;
}

.as2-music-moments__top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: clamp(170px, 22vw, 260px);
    gap: 0.35rem;
}

.as2-music-moments__bottom {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, clamp(110px, 12vw, 160px));
    gap: 0.35rem;
}

.as2-music-moments__tile {
    overflow: hidden;
    background: #eee;
}

.as2-music-moments__tile--a {
    grid-column: 1 / span 4;
}

.as2-music-moments__tile--b {
    grid-column: 5 / span 4;
}

.as2-music-moments__tile--c {
    grid-column: 9 / span 2;
}

.as2-music-moments__stack {
    grid-column: 11 / span 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.35rem;
}

.as2-music-moments__bottom .as2-music-moments__tile {
    grid-column: span 2;
}

.as2-music-moments__tile--hero {
    grid-column: 7 / span 4 !important;
    grid-row: 1 / span 2;
}

.as2-music-moments__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

@media (max-width: 991.98px) {
    .as2-music-section-title {
        font-size: 1.6rem;
    }

    .as2-music-card__name {
        font-size: 1.35rem;
    }

    .as2-music-card__text {
        font-size: 0.98rem;
    }

    .as2-music-moments__top,
    .as2-music-moments__bottom {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .as2-music-moments__tile,
    .as2-music-moments__tile--a,
    .as2-music-moments__tile--b,
    .as2-music-moments__tile--c,
    .as2-music-moments__tile--hero,
    .as2-music-moments__stack {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .as2-music-moments__stack {
        grid-template-rows: none;
        grid-template-columns: 1fr;
    }
}

/* Anant Samagam 2 — Dialogues section */
.as2-dialogues-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.as2-dialogue-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.as2-dialogue-item--reverse {
    grid-template-columns: 1fr 1.1fr;
}

.as2-dialogue-item--reverse .as2-dialogue-item__media {
    order: 2;
}

.as2-dialogue-item--reverse .as2-dialogue-item__content {
    order: 1;
}

.as2-dialogue-item__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.as2-dialogue-item__title,
.as2-dialogue-gallery-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.as2-dialogue-item__meta {
    font-family: var(--font-display);
    font-size: 0.92rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

.as2-dialogue-item__desc,
.as2-dialogue-item__link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.45;
}

.as2-dialogue-item__desc {
    color: #333;
}

.as2-dialogue-item__link {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #999;
    padding-bottom: 1px;
}

.as2-dialogue-item__link:hover {
    color: #000;
    border-bottom-color: #000;
}

.as2-dialogue-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.4rem;
}

.as2-dialogue-gallery__item {
    overflow: hidden;
    background: #eee;
    grid-column: span 3;
}

.as2-dialogue-gallery__item--wide {
    grid-column: span 6;
}

.as2-dialogue-gallery__item--last {
    grid-column: span 4;
}

.as2-dialogue-gallery__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.as2-dialogue-gallery-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .as2-dialogue-item,
    .as2-dialogue-item--reverse {
        grid-template-columns: 1fr;
    }

    .as2-dialogue-item--reverse .as2-dialogue-item__media,
    .as2-dialogue-item--reverse .as2-dialogue-item__content {
        order: initial;
    }

    .as2-dialogue-item__title,
    .as2-dialogue-gallery-title {
        font-size: 1.6rem;
    }

    .as2-dialogue-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .as2-dialogue-gallery__item,
    .as2-dialogue-gallery__item--wide,
    .as2-dialogue-gallery__item--last {
        grid-column: span 1;
    }

    .as2-dialogue-gallery-quote {
        font-size: 1.05rem;
    }
}

/* Anant Samagam 2 — Food Courtyard section */
.as2-food-hero__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 8;
}

.as2-food-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.as2-food-gallery__item {
    overflow: hidden;
    background: #eee;
}

.as2-food-gallery__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.as2-food-caption,
.as2-food-kitchens-title,
.as2-food-kitchens-list {
    font-family: var(--font-display);
    color: #333;
}

.as2-food-caption {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.as2-food-kitchens-title {
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
}

.as2-food-kitchens-list {
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 500;
}

.as2-food-kitchens-list span {
    margin-left: 0.55rem;
    margin-right: 0.55rem;
    color: #7a7a7a;
}

.as2-food-quote {
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .as2-food-caption {
        font-size: 1.2rem;
    }

    .as2-food-kitchens-title {
        font-size: 1rem;
    }

    .as2-food-kitchens-list {
        font-size: 0.95rem;
    }

    .as2-food-quote {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .as2-food-gallery {
        grid-template-columns: 1fr;
    }

    .as2-food-kitchens-list {
        text-align: center;
        line-height: 1.55;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        overflow-wrap: anywhere;
    }

    .as2-visual-gallery__right {
        grid-template-columns: 1fr;
    }

    .as2-photo-card__name {
        font-size: 1.2rem;
    }

    .as2-photo-card__text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .as2-photo-quote {
        font-size: 1.1rem;
        line-height: 1.35;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .as2-photo-hero__img {
        aspect-ratio: 16 / 9;
    }

    .as2-photo-bottom__img {
        aspect-ratio: 16 / 9;
    }

    .as2-fashion-card__name {
        font-size: 1.15rem;
    }

    .as2-fashion-card__text {
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .as2-fashion-gallery {
        grid-template-columns: 1fr;
    }

    .as2-fashion-gallery__item--wide {
        grid-column: span 1;
    }

    .as2-music-moments__top,
    .as2-music-moments__bottom {
        grid-template-columns: 1fr;
    }

    .as2-music-moments__img {
        aspect-ratio: 16 / 10;
        min-height: 10rem;
    }

    .as2-music-card__text {
        font-size: 0.95rem;
    }

    .as2-dialogue-gallery {
        grid-template-columns: 1fr;
    }

    .as2-dialogue-item__title,
    .as2-dialogue-gallery-title {
        font-size: 1.35rem;
    }

    .as2-dialogue-item__desc,
    .as2-dialogue-item__link {
        font-size: 0.9rem;
    }

    .as2-dialogue-item__link {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .as2-dialogue-gallery-quote {
        font-size: 0.98rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Anant Samagam 1.0 page */
.as1-page {
    background: #f7f7f7;
}

.as1-banner-tagline {
    font-size: clamp(1.05rem, 3.5vw, 1.45rem);
    line-height: 1.45;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Anant Samagam 1.0 - smooth gallery zoom on hover */
.as1-page .as1-confluence-card__img,
.as1-page .as1-dialogue-feature__img,
.as1-page .as1-visual-gallery__img,
.as1-page .as1-fashion-gallery__img,
.as1-page .as1-music-gallery__img,
.as1-page .as1-handicraft-gallery__img,
.as1-page .as1-chapter-swiper .swiper-slide img {
    transform: scale(1);
    transition: transform 0.55s ease;
    will-change: transform;
}

.as1-page .as1-confluence-card:hover .as1-confluence-card__img,
.as1-page .as1-dialogue-feature:hover .as1-dialogue-feature__img,
.as1-page .as1-visual-gallery__item:hover .as1-visual-gallery__img,
.as1-page .as1-fashion-gallery__item:hover .as1-fashion-gallery__img,
.as1-page .as1-music-gallery__item:hover .as1-music-gallery__img,
.as1-page .as1-handicraft-gallery__item:hover .as1-handicraft-gallery__img,
.as1-page .as1-chapter-swiper .swiper-slide:hover img {
    transform: scale(1.08);
}

/* Anant Samagam 2.0 - smooth gallery zoom on hover */
.as2-visual-gallery__img,
.as2-photo-hero__img,
.as2-photo-card__img,
.as2-photo-bottom__img,
.as2-fashion-hero__img,
.as2-fashion-card__img,
.as2-fashion-gallery__img,
.as2-music-card__img,
.as2-music-moments__img,
.as2-dialogue-item__img,
.as2-dialogue-gallery__img,
.as2-food-hero__img,
.as2-food-gallery__img,
.as2-gallery-slide img {
    transform: scale(1);
    transition: transform 0.55s ease;
    will-change: transform;
}

.as2-visual-gallery__frame:hover .as2-visual-gallery__img,
.as2-photo-hero:hover .as2-photo-hero__img,
.as2-photo-card__img-wrap:hover .as2-photo-card__img,
.as2-photo-bottom:hover .as2-photo-bottom__img,
.as2-fashion-hero__image:hover .as2-fashion-hero__img,
.as2-fashion-card:hover .as2-fashion-card__img,
.as2-fashion-gallery__item:hover .as2-fashion-gallery__img,
.as2-music-card:hover .as2-music-card__img,
.as2-music-moments__tile:hover .as2-music-moments__img,
.as2-dialogue-item__media:hover .as2-dialogue-item__img,
.as2-dialogue-gallery__item:hover .as2-dialogue-gallery__img,
.as2-food-hero:hover .as2-food-hero__img,
.as2-food-gallery__item:hover .as2-food-gallery__img,
.as2-gallery-swiper .swiper-slide:hover .as2-gallery-slide img {
    transform: scale(1.08);
}

.as1-hero {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.as1-hero__inner {
    max-width: 58rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.as1-hero__kicker,
.as1-hero__sub,
.as1-meta,
.as1-body {
    font-family: var(--font-display);
}

.as1-hero__kicker {
    font-size: 1.15rem;
    font-weight: 600;
}

.as1-hero__title,
.as1-section-title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
}

.as1-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
}

.as1-hero__sub {
    font-size: 1.1rem;
}

.as1-meta {
    font-size: 1rem;
    font-weight: 600;
}

.as1-body {
    font-size: 1.04rem;
    line-height: 1.6;
}

.as1-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.as1-confluence-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}

.as1-confluence-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 0.5rem;
}

.as1-confluence-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.as1-confluence-card__text {
    font-family: var(--font-display);
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.as1-dialogue-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.as1-dialogue-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 0.4rem;
    min-height: 128px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.as1-dialogue-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0;
}

.as1-dialogue-card p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin: 0;
}

.as1-dialogue-feature__img {
    width: 100%;
    display: block;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.as1-dialogue-feature__caption {
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.5;
    margin: 0.65rem 0 0;
    text-align: center;
}

.as1-archive-nav {
    gap: 0.75rem;
}

.as1-archive-nav .swiper-button-prev,
.as1-archive-nav .swiper-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-dark);
    border-radius: 0;
    color: var(--color-dark);
    margin-top: 0;
}

.as1-archive-nav .swiper-button-prev::after,
.as1-archive-nav .swiper-button-next::after {
    font-size: 0.9rem;
}

.as1-chapter-swiper {
    padding-bottom: 2rem;
}

.as1-chapter-swiper .swiper-pagination-bullet {
    background: var(--color-dark);
}

.as1-visual-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.as1-visual-gallery__row {
    display: grid;
    gap: 0.85rem;
}

.as1-visual-gallery__row--top {
    grid-template-columns: repeat(3, 1fr);
}

.as1-visual-gallery__row--bottom {
    grid-template-columns: repeat(4, 1fr);
}

.as1-visual-gallery__item {
    overflow: hidden;
    background: #ece8e4;
}

.as1-visual-gallery__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.as1-fashion-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.85rem;
}

.as1-fashion-gallery__item {
    overflow: hidden;
    background: #ece8e4;
}

.as1-fashion-gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.as1-fashion-gallery__f1 { grid-column: 1 / span 6; grid-row: 1; }
.as1-fashion-gallery__f2 { grid-column: 7 / span 2; grid-row: 1 / span 2; }
.as1-fashion-gallery__f6 { grid-column: 9 / span 2; grid-row: 1; }
.as1-fashion-gallery__f7 { grid-column: 11 / span 2; grid-row: 1; }
.as1-fashion-gallery__f3 { grid-column: 1 / span 2; grid-row: 2; }
.as1-fashion-gallery__f4 { grid-column: 3 / span 3; grid-row: 2; }
.as1-fashion-gallery__f5 { grid-column: 6 / span 3; grid-row: 2; }
.as1-fashion-gallery__f8 { grid-column: 9 / span 4; grid-row: 2; }

.as1-music-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
}

.as1-music-gallery__item {
    overflow: hidden;
    background: #ece8e4;
}

.as1-music-gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.as1-music-gallery__m1 { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.as1-music-gallery__m10 { grid-column: 7 / span 3; grid-row: 1; }
.as1-music-gallery__m11 { grid-column: 10 / span 3; grid-row: 1; }
.as1-music-gallery__m12 { grid-column: 7 / span 3; grid-row: 2; }
.as1-music-gallery__m13 { grid-column: 10 / span 3; grid-row: 2; }

.as1-music-gallery__m2 { grid-column: 1 / span 3; grid-row: 3; }
.as1-music-gallery__m3 { grid-column: 4 / span 3; grid-row: 3; }
.as1-music-gallery__m14 { grid-column: 7 / span 6; grid-row: 3 / span 2; }

.as1-music-gallery__m4 { grid-column: 1 / span 2; grid-row: 4; }
.as1-music-gallery__m5 { grid-column: 3 / span 2; grid-row: 4; }
.as1-music-gallery__m6 { grid-column: 5 / span 2; grid-row: 4; }
.as1-music-gallery__m15 { grid-column: 7 / span 6; grid-row: 5; }

.as1-music-gallery__m7 { grid-column: 1 / span 4; grid-row: 5 / span 2; }
.as1-music-gallery__m8 { grid-column: 5 / span 2; grid-row: 5 / span 2; }
.as1-music-gallery__m9 { grid-column: 7 / span 3; grid-row: 6; }
.as1-music-gallery__m16 { grid-column: 10 / span 3; grid-row: 6; }

.as1-handicraft-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
}

.as1-handicraft-gallery__item {
    overflow: hidden;
    background: #ece8e4;
}

.as1-handicraft-gallery__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.as1-handicraft-gallery__h1 { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.as1-handicraft-gallery__h2 { grid-column: 7 / span 3; grid-row: 1; }
.as1-handicraft-gallery__h3 { grid-column: 10 / span 3; grid-row: 1; }
.as1-handicraft-gallery__h4 { grid-column: 7 / span 3; grid-row: 2; }
.as1-handicraft-gallery__h5 { grid-column: 10 / span 3; grid-row: 2; }

.as1-handicraft-gallery__h6 { grid-column: 1 / span 3; grid-row: 3; }
.as1-handicraft-gallery__h7 { grid-column: 4 / span 3; grid-row: 3; }
.as1-handicraft-gallery__h8 { grid-column: 7 / span 2; grid-row: 3; }
.as1-handicraft-gallery__h9 { grid-column: 9 / span 2; grid-row: 3; }
.as1-handicraft-gallery__h10 { grid-column: 11 / span 2; grid-row: 3; }

.as1-dialogues-subhead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.as1-dialogues-subhead__line {
    width: 5rem;
    max-width: 22vw;
    height: 1px;
    background: #777;
}

.as1-dialogues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 2.8rem;
    width: 100%;
    margin: 0 auto;
}

.as1-dialogues-card {
    background: #f3eceb;
    border: 1px solid #e3dddd;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
    min-height: 9.8rem;
    padding: 1.25rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.as1-dialogues-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    color: #4e5158;
}

.as1-dialogues-card__theme {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.78rem;
    line-height: 1.2;
    color: #4e5158;
}

.as1-dialogues-card__theme-spacer {
    height: 0.95rem;
}

.as1-dialogues-card__rule {
    width: 3.6rem;
    height: 1px;
    background: #8f9198;
    display: block;
}

.as1-dialogue-info__cta {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    background: #f3eceb;
    border: 1px solid #c8c2bf;
    color: #2f2f2f;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}

.as1-dialogue-info__cta:hover {
    background: #e9dfdb;
    color: #1f1f1f;
}

.as1-dialogue-info__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}

.as1-dialogue-info__image-wrap {
    overflow: hidden;
    background: #ece8e4;
}

.as1-dialogue-info__image {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.as1-dialogue-info__images--fireside {
    grid-template-columns: repeat(12, 1fr);
    gap: 0.8rem;
}

.as1-dialogue-info__images--fireside .as1-dialogue-info__image {
    height: 100%;
    aspect-ratio: auto;
}

.as1-dialogue-info__image-wrap--top-left {
    grid-column: 1 / span 6;
}

.as1-dialogue-info__image-wrap--top-right {
    grid-column: 7 / span 6;
}

.as1-dialogue-info__image-wrap--bottom-left {
    grid-column: 1 / span 4;
}

.as1-dialogue-info__image-wrap--bottom-center {
    grid-column: 5 / span 4;
}

.as1-dialogue-info__image-wrap--bottom-center .as1-dialogue-info__image {
    object-fit: contain;
    background: #ece8e4;
}

.as1-dialogue-info__image-wrap--bottom-right {
    grid-column: 9 / span 4;
}

.as1-dialogue-info__explore {
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1.12;
    font-weight: 600;
}

.as1-dialogue-info__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.as1-dialogue-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.2rem 0.4rem;
    background: #f3eceb;
    border: 1px solid #c8c2bf;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.2;
    color: #2f2f2f;
}

.as1-dialogue-chip--btn {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

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

    .as1-dialogue-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .as1-visual-gallery__row--bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .as1-fashion-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .as1-fashion-gallery__f1,
    .as1-fashion-gallery__f2,
    .as1-fashion-gallery__f6,
    .as1-fashion-gallery__f7,
    .as1-fashion-gallery__f3,
    .as1-fashion-gallery__f4,
    .as1-fashion-gallery__f5,
    .as1-fashion-gallery__f8 {
        grid-column: auto;
        grid-row: auto;
    }

    .as1-music-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .as1-music-gallery__m1,
    .as1-music-gallery__m10,
    .as1-music-gallery__m11,
    .as1-music-gallery__m12,
    .as1-music-gallery__m13,
    .as1-music-gallery__m2,
    .as1-music-gallery__m3,
    .as1-music-gallery__m14,
    .as1-music-gallery__m4,
    .as1-music-gallery__m5,
    .as1-music-gallery__m6,
    .as1-music-gallery__m15,
    .as1-music-gallery__m7,
    .as1-music-gallery__m8,
    .as1-music-gallery__m9,
    .as1-music-gallery__m16 {
        grid-column: auto;
        grid-row: auto;
    }

    .as1-handicraft-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .as1-handicraft-gallery__h1,
    .as1-handicraft-gallery__h2,
    .as1-handicraft-gallery__h3,
    .as1-handicraft-gallery__h4,
    .as1-handicraft-gallery__h5,
    .as1-handicraft-gallery__h6,
    .as1-handicraft-gallery__h7,
    .as1-handicraft-gallery__h8,
    .as1-handicraft-gallery__h9,
    .as1-handicraft-gallery__h10 {
        grid-column: auto;
        grid-row: auto;
    }

    .as1-dialogues-grid {
        width: 100%;
        gap: 1.4rem;
    }

    .as1-dialogue-info__cta {
        font-size: 1.45rem;
    }

    .as1-dialogue-info__explore {
        font-size: 1.55rem;
    }

    .as1-dialogue-chip {
        min-height: 2rem;
        padding: 0.3rem 0.72rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .as1-confluence-grid,
    .as1-dialogue-cards {
        grid-template-columns: 1fr;
    }

    .as1-visual-gallery__row--top,
    .as1-visual-gallery__row--bottom {
        grid-template-columns: 1fr;
    }

    .as1-music-gallery {
        grid-template-columns: 1fr;
    }

    .as1-handicraft-gallery {
        grid-template-columns: 1fr;
    }

    .as1-dialogues-subhead__line {
        width: 3rem;
    }

    .as1-dialogues-grid {
        grid-template-columns: 1fr;
        max-width: 16rem;
        gap: 1rem;
    }

    .as1-dialogue-info__images {
        grid-template-columns: 1fr;
    }

    .as1-dialogue-info__images--fireside {
        grid-template-columns: 1fr;
    }

    .as1-dialogue-info__image-wrap--top-left,
    .as1-dialogue-info__image-wrap--top-right,
    .as1-dialogue-info__image-wrap--bottom-left,
    .as1-dialogue-info__image-wrap--bottom-center,
    .as1-dialogue-info__image-wrap--bottom-right {
        grid-column: auto;
    }

    .as1-dialogue-chip {
        min-height: 1.85rem;
        font-size: 0.92rem;
        padding: 0.28rem 0.62rem;
    }
}

.about-card-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* About: Moment of Convergence + Our Approach (layout match) */
.about-convergence-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: var(--color-dark);
}

.about-convergence-closing {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-convergence-closing em {
    font-style: italic;
    font-weight: 700;
}

.about-section-rule {
    border: 0;
    border-top: 1px solid #d9d9d9;
    opacity: 1;
}

.about-approach-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--color-dark);
}

.about-approach-intro {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-dark);
    max-width: 58rem;
}

.about-approach-card {
    border: 0;
    text-align: center;
    padding: 2.5rem 1.75rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-approach-card .about-card-title {
    font-size: 1.2rem;
    margin-bottom: 1.15rem;
}

/* Short centered rule under every approach card title (orange: 1st & 3rd, dark: 2nd & 4th) */
.about-approach-card .about-card-title::after {
    content: "";
    display: block;
    width: 26.25rem;
    max-width: 32%;
    height: 3px;
    margin: 8px auto 14px;
    background: #c45c26;
}

.about-approach-card .about-card-title--rule-dark::after {
    background: var(--color-dark);
}

.about-card-body {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--color-dark);
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.about-card-chapters {
    background: #f7f4ec;
}

.about-card-dialogues {
    background: #e1e2ec;
}

.about-card-registry {
    background: #ece2d4;
}

.about-card-partnerships {
    background: #ebd4c6;
}

.about-approach-footnote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-dark);
    text-align: left;
    max-width: 58rem;
}

.about-approach-footnote em {
    font-style: italic;
    font-weight: 700;
}

.about-team-card {
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Leadership: uniform portrait frame + responsive stack */
.about-team-card-inner {
    min-height: 0;
}

.about-team-photo {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e9e9e9;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-team-photo__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%);
}

@media (min-width: 768px) {
    .about-team-photo {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        height: 250px;
        aspect-ratio: auto;
    }
}

.about-team-name {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-team-role {
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* About: Leadership & Advisory (updated structure) */
.about-leadership-intro {
    border-top: 1px solid #8f8f8f;
    padding-top: 0.85rem;
}

.about-leadership-intro__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.2rem, 4.2vw, 3.25rem);
    line-height: 1.1;
}

.about-leadership-intro__subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.35;
    font-weight: 600;
    color: #2f2f2f;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.about-leadership-head {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    border-top: 1px solid #d7d7d7;
    padding-top: 0.6rem;
    margin-bottom: 1.25rem;
}

.about-leadership-member {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.4rem;
    align-items: start;
}

.about-leadership-member__photo {
    background: #e9e9e9;
    overflow: hidden;
}

.about-leadership-member__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.about-leadership-member__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.75rem, 3.2vw, 2.2rem);
    line-height: 1.06;
    margin-bottom: 0.35rem;
}

.about-leadership-member__role {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #6f8fc9;
    display: inline-block;
}

.about-leadership-member p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.45;
}

.about-leadership-member--advisory .about-leadership-member__name {
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.about-leadership-member--advisory .about-leadership-member__role {
    font-size: 0.95rem;
}

@media (max-width: 1199.98px) {
    .about-leadership-member {
        grid-template-columns: 140px 1fr;
        gap: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .about-title.display-4 {
        font-size: clamp(1.85rem, 7vw, 2.65rem);
        line-height: 1.15;
    }

    .about-subtitle.lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .about-position .section-title.display-6,
    .about-vision .section-title.display-6 {
        font-size: clamp(1.65rem, 5.5vw, 2.25rem);
    }

    .about-position-punch {
        font-size: clamp(1.45rem, 5vw, 1.9rem);
        line-height: 1.2;
    }

    .about-rich-text p {
        font-size: 1rem;
    }

    .about-quote-panel {
        min-height: 260px;
        padding-top: 2rem;
        padding-bottom: 2rem;
        background-position: center center;
    }

    .about-quote {
        font-size: clamp(1.25rem, 4.5vw, 1.6rem);
        line-height: 1.3;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .about-convergence-heading {
        margin-bottom: 0.75rem !important;
    }

    .about-approach-card {
        padding: 1.5rem 1.15rem;
    }

    .about-approach-card .about-card-title::after {
        max-width: 72%;
    }

    .about-approach-intro,
    .about-approach-footnote {
        font-size: 1rem;
    }

    .about-leadership-member {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-width: 0;
    }

    /* Full-width portrait on small screens (avoid narrow strip + empty gutter) */
    .about-leadership-member__photo {
        width: 100%;
        max-width: none;
    }

    .about-leadership-member__img {
        width: 100%;
    }

    .about-leadership-member > div:last-child {
        width: 100%;
        min-width: 0;
    }

    .about-leadership-member__name {
        overflow-wrap: anywhere;
    }

    .about-leadership-intro__subtitle {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Cultural Registry page (layout match) */
.page-cultural-registry {
    --cr-bg: #f9f7f2;
    --cr-form-bg: #f1ede8;
    --cr-text: #333333;
    --cr-muted: #5c5c5c;
    --cr-divider: #d1d1d1;
    --cr-btn: #a66e5b;
    --cr-font-heading: 'Playfair Display', serif;
    --cr-font-body: 'Montserrat', sans-serif;
    background: var(--cr-bg);
    color: var(--cr-text);
    font-family: var(--font-body);
    font-weight: 400;
}

.page-cultural-registry .about-paragraph {
    color: var(--cr-text);
}

.page-cultural-registry .cr-page-y {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

@media (min-width: 992px) {
    .page-cultural-registry .cr-page-y {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important;
    }
}

/* Hero */
.cr-hero {
    background: var(--cr-bg);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .cr-hero {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.cr-kicker {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cr-text);
}

.cr-title {
    font-family: var(--cr-font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.85rem);
    letter-spacing: 0.02em;
    line-height: 1.12;
    color: var(--cr-text);
}

.cr-tagline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cr-muted);
}

.cr-hero-bold {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cr-text);
}

.cr-hero-links {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
}

.cr-hero-links a {
    color: var(--cr-text);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.cr-hero-links a:hover {
    color: var(--cr-btn);
}

.cr-hero-links .btn {
    text-decoration: none;
}

.cr-hero-links__sep {
    display: inline-block;
    width: 1.25rem;
}

.cr-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .cr-hero-grid {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}

.cr-hero-cell {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ddd;
}

.cr-hero-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

/* Sections + dividers */
.cr-section {
    background: var(--cr-bg);
}

.cr-section--ruled {
    border-top: 1px solid var(--cr-divider);
    border-bottom: 1px solid var(--cr-divider);
}

.cr-section--ruled + .cr-section--ruled {
    border-top: 0;
}

.cr-section--ruled-top-only {
    border-top: 1px solid var(--cr-divider);
    border-bottom: none;
}

.cr-section-title {
    font-family: var(--cr-font-heading);
    font-weight: 500;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    letter-spacing: 0.02em;
    color: var(--cr-text);
}

.cr-section-title--on-dark {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.cr-body {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--cr-text);
}

.cr-body--narrow {
    max-width: 46rem;
}

.cr-meta {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--cr-muted);
}

/* Icon pillars */
.cr-icon {
    color: var(--cr-muted);
}

.cr-icon--line svg {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.cr-pillar-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--color-dark);
}

.cr-pillar-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--color-dark);
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
}

/* Practices grid */
.cr-practices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem 1rem;
}

.cr-practice-card {
    grid-column: span 2;
    margin: 0;
}

/* Last row: two cards, same width as above, centered as a pair in the 6-col track */
.cr-practices-grid > .cr-practice-card:nth-child(7) {
    grid-column: 2 / span 2;
}

.cr-practices-grid > .cr-practice-card:nth-child(8) {
    grid-column: 4 / span 2;
}

/* Last row full width (100% of grid) — overrides nth-child(7) */
.cr-practices-grid > .cr-practice-card.cr-practice-card--full {
    grid-column: 1 / -1;
}

.cr-practice-img {
    overflow: hidden;
    background: #e5e2dc;
}

.cr-practice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr-practice-cap {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--color-dark);
}

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

    .cr-practice-card {
        grid-column: span 1;
    }

    .cr-practices-grid > .cr-practice-card:nth-child(7),
    .cr-practices-grid > .cr-practice-card:nth-child(8) {
        grid-column: span 1;
    }

    .cr-practices-grid > .cr-practice-card.cr-practice-card--full {
        grid-column: 1 / -1;
    }
}

/* Submit strip */
.cr-submit {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.cr-submit__bg {
    position: absolute;
    inset: 0;
    background-color: #6a6358;
    background-image: url('images/about/banner.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) brightness(0.85);
    transform: scale(1.04);
}

.cr-submit__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 36, 32, 0.45);
    backdrop-filter: blur(2px);
}

.cr-submit .container {
    position: relative;
    z-index: 1;
}

.cr-form-card {
    max-width: 640px;
    background: var(--cr-form-bg);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
    .cr-form-card {
        padding: 2.5rem 2.75rem;
    }
}

.cr-form .form-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

.cr-form .form-control,
.cr-form .form-select {
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: #fff;
    color: var(--color-dark);
}

.cr-form .form-control:focus,
.cr-form .form-select:focus {
    border-color: var(--cr-btn);
    box-shadow: 0 0 0 0.2rem rgba(166, 110, 91, 0.2);
}

.cr-form-block + .cr-form-block {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cr-form-block__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cr-form-block__icon {
    color: var(--cr-btn);
    font-size: 0.95rem;
}

.cr-form-block--plain {
    border-top: 0 !important;
    padding-top: 0 !important;
}

.cr-form .form-check-label {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-dark);
}

.cr-btn-submit {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    background: var(--color-dark);
    border: none;
    color: #fff;
    border-radius: 4px;
}

.cr-btn-submit:hover {
    background: #8f5d4d;
    color: #fff;
}

.cr-submit-foot {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    max-width: 36rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
    .page-cultural-registry .cr-page-y {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .cr-hero {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .cr-hero-bold {
        font-size: 1rem;
    }

    .cr-meta {
        font-size: 0.9rem;
        line-height: 1.55;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        overflow-wrap: anywhere;
    }

    .cr-pillar-text {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .cr-practice-cap {
        font-size: clamp(1.05rem, 3.5vw, 1.35rem);
    }

    .cr-form-card {
        padding: 1.5rem 1.15rem;
    }

    .cr-submit {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .cr-submit-foot {
        font-size: 0.8rem;
    }
}
