/* ===================================================================
   FERN & CLAY — corporate token system
   60% dominant  : ivory / white
   30% secondary : ink (text, dark sections, footer)
   10% accent    : brass / gold (CTAs, active states, hairline rules)
=================================================================== */
:root {
    --ivory: #faf9f6;
    --white: #ffffff;
    --ink: #1b1a17;
    --ink-2: #26241f;
    --stone: #6f6d68;
    --gold: #a9863e;
    --gold-dim: #8a6c30;
    --line: rgba(27, 26, 23, 0.09);
    --line-strong: rgba(27, 26, 23, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-brd: rgba(255, 255, 255, 0.65);

    --font-display: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;

    --container: 1320px;
    --radius-s: 3px;
    --radius-m: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

input,
select {
    font: inherit;
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.eyebrow {
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-eyebrow {
    font-size: 11.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow.center {
    display: block;
    text-align: center;
}

.section-eyebrow.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 42px);
    letter-spacing: 0.2px;
}

.section-title.center {
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
    padding: 14px 30px;
    font-size: 12.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: background .2s;
}

.btn-primary:hover {
    background: var(--gold-dim);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    padding: 13px 30px;
    font-size: 12.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--white);
}

/* ===================== UTILITY BAR ===================== */
.utility-bar {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
}

.utility-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 9px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.utility-item:hover {
    color: var(--gold);
}

.utility-ship {
    display: none;
}

.utility-right {
    display: flex;
    gap: 22px;
}

@media (min-width: 760px) {
    .utility-ship {
        display: flex;
    }
}

/* ===================== HEADER — glass ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--glass-brd);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 3px;
    text-align: center;
}

.main-nav {
    display: flex;
    gap: 26px;
}

.main-nav a {
    font-size: 12.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, color .2s;
}

.main-nav a:hover {
    border-color: var(--gold);
    color: var(--gold-dim);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    position: relative;
    transition: background .2s;
}

.icon-btn:hover {
    background: rgba(27, 26, 23, 0.06);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    display: none;
}

.search-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid transparent;
}

.search-panel.open {
    max-height: 70px;
    border-top: 1px solid var(--line);
}

.search-panel-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-panel.open .search-panel-inner {
    padding-top: 16px;
    padding-bottom: 16px;
}

.search-panel input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 15px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 10px 28px 20px;
    border-top: 1px solid var(--line);
}

.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 600;
}

.mobile-nav.open {
    display: flex;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
    position: relative;
    height: 82vh;
    min-height: 480px;
    overflow: hidden;
}

.hero-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.65, 0, .35, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(27, 26, 23, 0.5) 0%, rgba(27, 26, 23, 0.25) 55%, rgba(27, 26, 23, 0.12) 100%);
}

.hero-glass {
    position: relative;
    z-index: 2;
    margin-left: max(28px, calc((100vw - var(--container)) / 2 + 28px));
    max-width: 480px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-m);
    padding: 40px 38px;
    color: var(--white);
}

.hero-glass h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.hero-glass h1 em {
    font-style: italic;
    color: #f1e3c2;
}

.hero-copy {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
    max-width: 400px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background .2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 3;
}

.hero-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background .2s, transform .2s;
}

.hero-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===================== CATEGORY GRID ===================== */
.category-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 90px 28px 70px;
}

.category-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-tile {
    position: relative;
    aspect-ratio: 1/1.05;
    border-radius: var(--radius-m);
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 19, 16, 0.6) 100%);
}

.category-glass {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-s);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .2s;
}

.category-tile:hover .category-glass {
    background: rgba(255, 255, 255, 0.28);
}

/* ===================== SPOTLIGHT ===================== */
.spotlight {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 28px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-media {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-m);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.spotlight-text {
    color: var(--stone);
    margin: 18px 0 30px;
    max-width: 480px;
}

/* ===================== SHOP SECTION ===================== */
.shop-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 28px 90px;
}

.shop-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sort-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--stone);
}

.sort-select select {
    background: var(--white);
    border: 1px solid var(--line-strong);
    color: var(--ink);
    padding: 9px 12px;
    border-radius: var(--radius-s);
    outline: none;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.chip {
    padding: 9px 18px;
    border-radius: 30px;
    border: 1px solid var(--line-strong);
    font-size: 12.5px;
    letter-spacing: .3px;
    font-weight: 600;
    color: var(--stone);
    transition: background .2s, color .2s, border-color .2s;
}

.chip:hover {
    border-color: var(--gold);
}

.chip.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.product-card:hover {
    box-shadow: 0 18px 40px rgba(27, 26, 23, 0.09);
    transform: translateY(-4px);
}

.card-media {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--ivory);
    cursor: pointer;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .card-media img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--ink);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
}

.quick-view-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.card-body {
    padding: 15px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-cat {
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.card-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.card-material {
    font-size: 12px;
    color: var(--stone);
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.card-price {
    font-size: 14px;
    font-weight: 700;
}

.add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background .2s, border-color .2s, color .2s;
}

.add-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 70px 20px;
    color: var(--stone);
}

.empty-state i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 44px;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 4px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--stone);
    transition: background .2s, color .2s;
}

.page-btn:hover {
    background: var(--white);
    color: var(--ink);
}

.page-btn.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.page-btn[disabled] {
    opacity: .35;
    pointer-events: none;
}

/* ===================== SHOWROOM/STOCKIST CAROUSEL ===================== */
.showroom-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 28px 90px;
}

.collection-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .2s, border-color .2s;
}

.carousel-btn:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--gold-dim);
}

.showroom-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.showroom-track::-webkit-scrollbar {
    display: none;
}

.showroom-card {
    position: relative;
    min-width: 320px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-m);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.showroom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 19, 16, 0.1), rgba(20, 19, 16, 0.6));
}

.showroom-glass {
    position: relative;
    z-index: 2;
    margin: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-s);
    padding: 14px 16px;
    color: var(--white);
    width: calc(100% - 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showroom-glass h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
}

.showroom-glass span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================== NEWSLETTER ===================== */
.newsletter {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px 100px;
}

.newsletter-card {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-m);
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-card .section-title {
    color: var(--white);
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    padding: 13px 14px;
    border-radius: 2px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-note {
    margin-top: 14px;
    font-size: 13px;
    color: #d9c791;
    grid-column: 1/-1;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--ink-2);
    color: rgba(255, 255, 255, 0.72);
}

.footer-top {
    max-width: var(--container);
    margin: 0 auto;
    padding: 70px 28px 44px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 20px;
    letter-spacing: 2.5px;
    text-align: left;
    display: block;
}

.footer-brand p {
    margin: 14px 0 18px;
    font-size: 13px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s, border-color .2s;
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-col h4 {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    padding: 5px 0;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col a i {
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================== MODAL ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 16, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 200;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-m);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(10px);
    transition: transform .2s;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-media {
    position: relative;
    background: var(--ivory);
}

.modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 30px 28px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin: 6px 0 8px;
}

.modal-body .modal-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0 16px;
}

.modal-body p.desc {
    color: var(--stone);
    font-size: 13.5px;
    margin-bottom: 22px;
}

.modal-cta {
    display: flex;
    gap: 10px;
}

.modal-cta .btn-primary {
    flex: 1;
}

.btn-secondary {
    width: 46px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo {
        text-align: left;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .spotlight {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-glass {
        margin: 0 16px;
        padding: 28px 24px;
        max-width: none;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 50px 20px;
    }

    .category-section,
    .shop-section,
    .spotlight,
    .showroom-section,
    .newsletter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-card {
        padding: 40px 26px;
    }

    .modal {
        grid-template-columns: 1fr;
    }

    .modal-media {
        aspect-ratio: 4/3;
    }
}