:root {
    --ivory: #f5f0e8;
    --paper: #ebe2d5;
    --ink: #231c18;
    --brown: #6c3d26;
    --copper: #a7663c;
    --line: rgba(245, 240, 232, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: "Helvetica Neue", Arial, sans-serif;
}
main {
    display: flex;
    flex-direction: column;
}
.hero { order: 1; }
.rug-showcase { order: 2; }
.categories { order: 3; }
.brand-story { order: 4; }
.room-marquee { order: 5; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 215px minmax(0, 1fr);
    align-items: center;
    padding: 0 2.7vw;
    color: var(--ivory);
    transition: background .35s ease, box-shadow .35s ease, min-height .35s ease;
}
.site-header.is-scrolled {
    position: fixed;
    min-height: 128px;
    color: #3b2b22;
    background: rgba(241, 235, 226, .96);
    box-shadow: 0 10px 32px rgba(58, 39, 28, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled .brand {
    height: 124px;
}
.site-header.is-scrolled .brand img {
    width: 180px;
    height: 180px;
    top: 58%;
}
.site-header.is-scrolled .desktop-nav {
    align-self: center;
}
.brand {
    justify-self: center;
    width: 195px;
    height: 96px;
    position: relative;
}
.brand img {
    position: absolute;
    width: 195px;
    height: 195px;
    max-width: none;
    left: 50%;
    top: 65%;
    object-fit: contain;
    transform: translate(-50%, -50%);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 38px);
}
.desktop-nav-left { justify-content: flex-end; }
.desktop-nav-right { justify-content: flex-start; }
.desktop-nav a {
    position: relative;
    padding: 10px 0;
    font-size: clamp(8px, .65vw, 11px);
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.header-actions {
    display: none;
    position: absolute;
    right: 18px;
    top: 24px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.header-actions button {
    width: 31px;
    height: 31px;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.header-actions svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    width: 100%;
}
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--ivory);
    background: #39251a;
}
.hero-video {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    object-fit: cover;
    animation: cinematicZoom 18s ease-in-out infinite alternate;
}
@keyframes cinematicZoom {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(27,13,7,.66) 0%, rgba(24,12,7,.2) 46%, rgba(14,9,6,.16) 100%),
        linear-gradient(0deg, rgba(17,9,5,.58) 0%, transparent 45%);
}
.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(52vw, 700px);
    margin: 0 0 clamp(82px, 12vh, 130px) clamp(28px, 7vw, 118px);
}
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 37px;
    height: 1px;
    background: currentColor;
}
.hero h1 {
    margin: 0;
    font: 600 clamp(28px, 3vw, 46px)/1.08 Georgia, "Times New Roman", serif;
    letter-spacing: -.03em;
    white-space: normal;
}
.hero h1 em {
    display: block;
    margin-top: .18em;
    color: #d9aa7d;
    font-weight: 400;
    font-size: .78em;
}
.hero-content > p {
    max-width: 455px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font: 15px/1.65 Georgia, serif;
}
.hero-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 31px;
}
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 15px 18px;
    color: #342116;
    background: var(--ivory);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: color .25s, background .25s;
}
.primary-cta:hover { color: white; background: var(--copper); }
.text-cta {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.text-cta span { margin-left: 10px; }
.hero-meta {
    position: absolute;
    right: 3vw;
    bottom: 32px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.hero-meta .line { width: 35px; height: 1px; background: var(--line); }
.scroll-cue {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.scroll-cue i { display: block; width: 1px; height: 32px; background: rgba(255,255,255,.65); }

.intro {
    min-height: 620px;
    padding: 120px 6vw;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(167,102,60,.08), transparent 44%),
        var(--ivory);
}
.section-kicker { color: var(--copper); }
.intro h2 {
    margin: 25px 0 24px;
    font: 400 clamp(37px, 4.2vw, 66px)/1.08 Georgia, serif;
}
.intro h2 em { color: var(--copper); font-weight: 400; }
.intro-copy {
    max-width: 530px;
    margin: 0 auto 31px;
    color: #75695f;
    font: 16px/1.7 Georgia, serif;
}
.intro > a {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid #9a8879;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.intro > a span { margin-left: 12px; }

.categories {
    padding: clamp(45px, 5vw, 75px) clamp(20px, 3vw, 50px) clamp(75px, 8vw, 115px);
    background: var(--ivory);
}
.categories-heading {
    display: none;
}
.categories-heading > p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0 0 18px;
    color: var(--copper);
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.categories-heading > p::before,
.categories-heading > p::after {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}
.categories-heading h2 {
    margin: 0 0 18px;
    font: 500 clamp(42px, 5vw, 72px)/1 Georgia, "Times New Roman", serif;
    letter-spacing: -.04em;
}
.categories-heading h2 em {
    color: var(--copper);
    font-weight: 400;
}
.categories-heading > span {
    color: #74665c;
    font: 15px/1.65 Georgia, "Times New Roman", serif;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.3vw, 22px);
    max-width: 1500px;
    margin: 0 auto;
}
.category-card {
    position: relative;
    min-height: 0;
    overflow: visible;
    isolation: isolate;
    background: transparent;
}
.category-card img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: opacity .3s ease;
}
.category-overlay {
    display: none;
}
.category-number {
    display: none;
}
.category-title {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    color: #5f3c29;
    font: 500 10px/1.3 "Helvetica Neue", Arial, sans-serif;
    letter-spacing: .04em;
    text-transform: none;
}
.category-title i {
    display: none;
}
.category-card:hover img,
.category-card:focus-visible img { opacity: .88; }
.category-card:hover .category-overlay,
.category-card:focus-visible .category-overlay {
    background: linear-gradient(0deg, rgba(78,43,26,.84) 0%, rgba(27,17,12,.04) 58%);
}
.category-card:hover .category-title i,
.category-card:focus-visible .category-title i {
    color: var(--brown);
    background: var(--ivory);
    transform: rotate(12deg);
}
.category-card:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

.room-marquee {
    width: 100%;
    overflow: hidden;
    background: #d7c2ad;
}
.room-marquee-track {
    display: flex;
    width: max-content;
    animation: roomMarquee 34s linear infinite;
    will-change: transform;
}
.room-marquee-track figure {
    width: 25vw;
    height: clamp(320px, 36vw, 520px);
    flex: 0 0 25vw;
    margin: 0;
    overflow: hidden;
}
.room-marquee-track img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.room-marquee-track figure:hover img { transform: scale(1.035); }
.room-marquee:hover .room-marquee-track { animation-play-state: paused; }
@keyframes roomMarquee {
    to { transform: translateX(-50%); }
}

.rug-showcase {
    padding: 0;
    overflow: hidden;
    background: #e8dfd3;
}
.showcase-intro {
    display: none;
}
.showcase-intro > p {
    margin: 0 0 15px;
    color: var(--copper);
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.showcase-intro h2 {
    margin: 0 0 18px;
    font: 500 clamp(40px, 4.8vw, 70px)/1 Georgia, "Times New Roman", serif;
    letter-spacing: -.045em;
}
.showcase-intro h2 em { color: var(--copper); font-weight: 400; }
.showcase-intro > span { color: #74665c; font: 15px/1.65 Georgia, serif; }
.showcase-slider {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-shadow: none;
}
.showcase-slides {
    position: relative;
    min-height: clamp(560px, 62vw, 900px);
    overflow: hidden;
    background: var(--ivory);
}
.showcase-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(3%);
    transition: opacity .65s ease, transform .75s cubic-bezier(.22,.75,.25,1), visibility .65s;
}
.showcase-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.showcase-room,
.showcase-product { position: relative; min-width: 0; overflow: hidden; }
.showcase-room {
    position: relative;
}
.showcase-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-room::after {
    content: none;
}
.showcase-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(35px, 4vw, 64px) clamp(34px, 5vw, 78px) 30px;
    background: #f6f1e9;
}
.showcase-product > img {
    width: min(58%, 420px);
    height: auto;
    max-height: 82%;
    min-height: 0;
    object-fit: contain;
    transform: scale(.96);
    transition: transform 1s cubic-bezier(.22,.75,.25,1);
}
.showcase-slide.is-active .showcase-product > img { transform: scale(1); }
.product-index {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #927d6d;
    font-size: 9px;
    letter-spacing: .18em;
}
.product-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding-top: 0;
    border: 0;
    width: min(58%, 420px);
}
.product-info h3 {
    margin: 0;
    color: #9b5d36;
    font: 500 11px/1.3 "Helvetica Neue", Arial, sans-serif;
    letter-spacing: .03em;
}
.showcase-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--ink);
    border: 0;
    border-radius: 50%;
    background: rgba(246,241,233,.92);
    box-shadow: 0 7px 20px rgba(28,16,10,.13);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color .25s, background .25s, transform .25s;
}
.showcase-arrow:hover { color: white; background: var(--copper); transform: translateY(-50%) scale(1.06); }
.showcase-prev { left: 18px; }
.showcase-next { right: 18px; }
.showcase-dots {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 25px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}
.showcase-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.62);
    cursor: pointer;
    transition: width .3s, border-radius .3s, background .3s;
}
.showcase-dots button.is-active { width: 25px; border-radius: 8px; background: #fff; }

.brand-story {
    display: grid;
    grid-template-columns: minmax(0, 430px) 240px;
    gap: clamp(55px, 6vw, 78px);
    align-items: center;
    justify-content: center;
    min-height: 527px;
    padding: 68px 28px;
    color: var(--ink);
    background: #f7f2eb;
}
.story-copy {
    order: 1;
    max-width: 430px;
}
.story-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 25px;
    color: var(--copper);
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.story-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}
.story-copy h2 {
    margin: 0 0 20px;
    color: #704125;
    font: 500 28px/1.1 Georgia, "Times New Roman", serif;
    letter-spacing: -.02em;
}
.story-copy h2 em { color: var(--copper); font-weight: 400; }
.story-lead {
    max-width: 430px;
    margin: 0 0 14px;
    padding: 0;
    color: #9a765d;
    border: 0;
    font: 400 12.5px/1.7 "Helvetica Neue", Arial, sans-serif;
}
.story-body {
    max-width: 430px;
    color: #9a765d;
    font: 12.5px/1.7 "Helvetica Neue", Arial, sans-serif;
}
.story-body p { margin: 0 0 13px; }
.story-body p:last-child { margin-bottom: 0; }
.story-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    margin-top: 18px;
    padding-bottom: 7px;
    color: var(--brown);
    border-bottom: 1px solid rgba(108,61,38,.55);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: gap .3s ease, color .3s ease;
}
.story-link:hover { gap: 36px; color: var(--copper); }
.story-visual {
    order: 2;
    position: relative;
    width: 240px;
    max-width: 240px;
    height: 292px;
    min-height: 292px;
    justify-self: end;
    padding: 18px;
    isolation: isolate;
    overflow: hidden;
    background: #dfcdb9;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
}
.story-visual::before {
    content: none;
}
.story-visual::after {
    content: none;
}
.story-logo {
    position: absolute;
    inset: 18px;
    display: grid;
    place-items: center;
    padding: 7%;
    overflow: hidden;
    background: rgba(250,247,242,.34);
}
.story-logo img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 22px rgba(31, 38, 43, .13));
}


.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #f7f0e7;
    background: #17120f url("../images/category-wall-decor.png") center 42% / cover no-repeat;
}
.footer-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16,12,10,.97), rgba(16,12,10,.82) 45%, rgba(16,12,10,.92)),
        linear-gradient(180deg, rgba(33,23,18,.2), rgba(10,8,7,.82));
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr .72fr .9fr .62fr 1.55fr;
    gap: clamp(35px, 4vw, 72px);
    padding: 82px max(clamp(28px, 7vw, 115px), calc((100vw - 1480px) / 2)) 68px;
}
.footer-intro img {
    display: block;
    width: 155px;
    height: 155px;
    margin: -34px 0 -14px;
    object-fit: contain;
    filter: brightness(1.15);
}
.footer-intro p {
    max-width: 245px;
    margin: 0;
    color: rgba(247,240,231,.65);
    font: italic 15px/1.7 Georgia, "Times New Roman", serif;
}
.footer-column h2 {
    margin: 0 0 25px;
    color: #fffaf4;
    font: 500 19px/1.2 Georgia, "Times New Roman", serif;
}
.footer-column h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin-top: 12px;
    background: var(--copper);
}
.footer-column nav {
    display: grid;
    gap: 14px;
}
.footer-column nav a,
.footer-contact a,
.footer-contact address {
    color: rgba(247,240,231,.72);
    font-size: 12px;
    line-height: 1.65;
    transition: color .25s ease, transform .25s ease;
}
.footer-column nav a:hover,
.footer-contact a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.footer-socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    font: 600 11px/1 Arial, sans-serif;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-socials a:hover {
    background: var(--copper);
    border-color: var(--copper);
    transform: translateY(-3px);
}
.footer-contact-group { margin-bottom: 17px; }
.footer-contact-group:last-child { margin-bottom: 0; }
.footer-contact h3 {
    margin: 0 0 4px;
    color: #fffaf4;
    font: 500 15px/1.3 Georgia, "Times New Roman", serif;
}
.footer-contact a { display: block; }
.footer-contact address {
    margin: 0;
    font-style: normal;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 18px max(clamp(28px, 7vw, 115px), calc((100vw - 1480px) / 2));
    color: rgba(247,240,231,.58);
    background: rgba(7,5,4,.56);
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 11px;
    letter-spacing: .04em;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
    color: rgba(247,240,231,.78);
    text-transform: uppercase;
}
.footer-bottom a span {
    margin-left: 9px;
    color: var(--copper);
}

@media (max-width: 1120px) {
    .site-header { grid-template-columns: minmax(0, 1fr) 165px minmax(0, 1fr); }
    .desktop-nav { gap: 13px; }
    .desktop-nav a { font-size: 7.5px; letter-spacing: .06em; }
    .brand { width: 150px; height: 92px; }
    .brand img { width: 150px; height: 150px; }
    .footer-inner { grid-template-columns: 1.1fr repeat(2, 1fr); }
    .footer-contact { grid-column: span 2; }
}
@media (max-width: 820px) {
    .room-marquee-track figure {
        width: 42vw;
        flex-basis: 42vw;
        height: 470px;
    }
    .site-header { min-height: 79px; display: flex; justify-content: center; padding: 0 18px; }
    .site-header.is-scrolled { min-height: 96px; }
    .site-header.is-scrolled .brand { height: 92px; }
    .site-header.is-scrolled .brand img {
        width: 132px;
        height: 132px;
        top: 60%;
    }
    .brand { width: 125px; height: 78px; }
    .brand img { width: 125px; height: 125px; }
    .desktop-nav, .header-actions > button:not(.menu-toggle) { display: none; }
    .header-actions { display: flex; }
    .menu-toggle { display: flex !important; flex-direction: column; justify-content: center; gap: 6px; }
    .menu-toggle span { display: block; width: 20px; height: 1px; background: currentColor; transition: transform .3s; }
    .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-menu {
        position: fixed;
        z-index: 15;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 112px 9vw 45px;
        color: var(--ink);
        background: var(--ivory);
        transform: translateY(-105%);
        transition: transform .5s cubic-bezier(.77,0,.18,1);
    }
    .menu-open .site-header { color: var(--ink); }
    .menu-open .mobile-menu { transform: translateY(0); }
    .mobile-menu nav { display: grid; }
    .mobile-menu nav a { padding: 8px 0; font: 29px/1.15 Georgia, serif; border-bottom: 1px solid rgba(35,28,24,.12); }
    .mobile-menu p { margin-top: auto; color: #8b7768; font: italic 14px Georgia, serif; }
    .hero-content { width: auto; margin: 0 24px 96px; }
    .hero h1 {
        margin-top: 17px;
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1;
        white-space: normal;
    }
    .hero-links { align-items: flex-start; flex-direction: column; gap: 22px; }
    .hero-meta { display: none; }
    .scroll-cue { left: auto; right: 18px; }
    .hero-video { animation-duration: 14s; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-card { min-height: 0; }
    .showcase-slides { min-height: 980px; }
    .showcase-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 52% 48%;
    }
    .showcase-product { padding: 30px 35px 24px; }
    .showcase-product > img,
    .product-info { width: min(72%, 420px); }
    .showcase-arrow { top: 52%; }
    .brand-story {
        grid-template-columns: 1fr;
        background: #f7f2eb;
    }
    .story-visual {
        width: 240px;
        height: 292px;
        min-height: 292px;
        justify-self: center;
    }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-intro,
    .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
    .room-marquee-track figure {
        width: 72vw;
        flex-basis: 72vw;
        height: 430px;
    }
    .categories { padding-inline: 14px; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 10px; }
    .category-card { min-height: 0; }
    .category-title { font-size: 9px; }
    .rug-showcase { padding-inline: 0; }
    .showcase-slides { min-height: 790px; }
    .showcase-slide { grid-template-rows: 48% 52%; }
    .showcase-product { padding: 28px 22px 20px; }
    .showcase-product > img,
    .product-info { width: 76%; }
    .showcase-arrow { top: 48%; width: 40px; height: 40px; }
    .showcase-prev { left: 10px; }
    .showcase-next { right: 10px; }
    .brand-story { min-height: 0; padding: 72px 20px; gap: 45px; }
    .story-visual { min-height: 292px; }
    .story-copy h2 { font-size: 28px; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 68px 24px 52px;
    }
    .footer-intro,
    .footer-contact { grid-column: auto; }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-video { animation: none; }
    * { transition-duration: .01ms !important; }
}
