@font-face {
    font-family: "Avenir Book";
    src: url("../fonts/Avenir-Book.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Regular";
    src: url("../fonts/Avenir-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --ivory: #faf8f5;
    --paper: #ebe2d5;
    --ink: #231c18;
    --brown: #6c3d26;
    --copper: #a7663c;
    --line: rgba(245, 240, 232, .28);
    --font-heading: "Avenir Regular", Avenir, "Avenir Next", "Century Gothic", Arial, sans-serif;
    --font-body: "Avenir Book", Avenir, "Avenir Next", "Century Gothic", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--font-body);
    font-weight: 400;
}
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(250, 248, 245, .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; }
.header-socials {
    position: absolute;
    right: 1.6vw;
    top: 50%;
    display: flex;
    gap: 8px;
    transform: translateY(-50%);
}
.header-socials a {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .82;
    transition: color .25s ease, background .25s ease, opacity .25s ease, transform .25s ease;
}
.header-socials a:hover { color: #fff; background: var(--copper); border-color: var(--copper); opacity: 1; transform: translateY(-2px); }
.header-socials svg, .footer-socials svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.header-socials a[aria-label="Instagram"] svg, .header-socials a[aria-label="LinkedIn"] svg,
.footer-socials a[aria-label="Instagram"] svg, .footer-socials a[aria-label="LinkedIn"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-socials .social-dot, .footer-socials .social-dot { fill: currentColor; stroke: none; }
.mobile-socials { display: flex; gap: 18px; margin-top: 22px; color: var(--copper); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.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;
    padding: clamp(8px, .85vw, 13px) clamp(8px, .85vw, 13px) 12px;
    border: 1px solid rgba(83, 65, 52, .09);
    background: #DFDACF;
    box-shadow: 0 12px 30px rgba(52, 38, 29, .07);
    transition: transform .35s ease, box-shadow .35s ease;
}
.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 clamp(12px, .92vw, 14px)/1.35 "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-card:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(52, 38, 29, .12); }
.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: grid;
    grid-template-columns: minmax(170px, .8fr) minmax(220px, 1.2fr);
    gap: clamp(25px, 4vw, 64px);
    align-items: center;
    justify-content: center;
    padding: clamp(35px, 4vw, 64px) clamp(34px, 5vw, 78px) 30px;
    background: #a99c93;
}
.showcase-product::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 13%;
    right: 5%;
    bottom: 13%;
    width: 47%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,250,244,.2) 0%, rgba(255,250,244,.09) 43%, transparent 72%);
    pointer-events: none;
}
.showcase-product > * { position: relative; z-index: 1; }
.showcase-product > img {
    width: 100%;
    height: auto;
    max-height: 78%;
    min-height: 0;
    object-fit: contain;
    filter: drop-shadow(0 22px 18px rgba(38,25,18,.25)) drop-shadow(0 4px 4px rgba(38,25,18,.2));
    transform: translateY(7px) scale(.955);
    transition: transform 1s cubic-bezier(.22,.75,.25,1), filter .6s ease;
}
.showcase-slide.is-active .showcase-product > img { filter: drop-shadow(0 25px 20px rgba(38,25,18,.28)) drop-shadow(0 5px 5px rgba(38,25,18,.2)); transform: translateY(-4px) scale(.985); }
.showcase-feature-copy { color: #fffaf4; }
.showcase-feature-copy > span { display: block; margin-bottom: 38px; color: rgba(255,250,244,.8); font: 600 9px/1 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.showcase-feature-copy h3 { margin: 0 0 22px; color: #fffaf4; font: 400 clamp(30px, 3vw, 48px)/1.05 Georgia, serif; }
.showcase-feature-copy p { margin: 0 0 34px; color: rgba(255,250,244,.88); font: 400 clamp(13px, 1.25vw, 17px)/1.55 Georgia, serif; }
.showcase-feature-copy a { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 155px; padding: 15px 17px; border: 1px solid rgba(255,250,244,.62); color: #fffaf4; text-decoration: none; font: 600 8px/1 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.showcase-feature-copy a:hover { background: #fffaf4; color: #5a4034; }
.product-index {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(255, 250, 244, .78);
    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: #fffaf4;
    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: 440px;
    padding: 42px 28px;
    color: var(--ink);
    background: #faf8f5;
}
.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: #262626;
    font: 500 28px/1.1 Georgia, "Times New Roman", serif;
    letter-spacing: -.02em;
}
.story-copy h2 em { color: #4d403a; font-weight: 400; }
.story-lead {
    max-width: 430px;
    margin: 0 0 14px;
    padding: 0;
    color: #262626;
    border: 0;
    font: 400 12.5px/1.7 "Helvetica Neue", Arial, sans-serif;
}
.story-body {
    max-width: 430px;
    color: #262626;
    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: #262626;
    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: #262626; }
.story-visual {
    order: 2;
    position: relative;
    width: 240px;
    max-width: 240px;
    height: 292px;
    min-height: 292px;
    justify-self: end;
    padding: 12px;
    isolation: isolate;
    overflow: hidden;
    background: #4d403a;
    border: 1px solid rgba(83, 65, 52, .09);
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(52, 38, 29, .07);
}
.story-visual::before {
    content: none;
}
.story-visual::after {
    content: none;
}
.story-logo {
    position: absolute;
    inset: 12px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    background: #DFDACF;
}
.story-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
}


.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fffaf4;
    background: #9b9189;
}
.footer-overlay {
    display: none;
}
.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: drop-shadow(0 8px 18px rgba(77,49,34,.08));
}
.footer-intro p {
    max-width: 245px;
    margin: 0;
    color: #fffaf4;
    font: italic 15px/1.75 Georgia, "Times New Roman", serif;
}
.footer-column h2 {
    margin: 0 0 25px;
    color: #fffaf4;
    font: 600 18px/1.25 Georgia, "Times New Roman", serif;
    letter-spacing: -.01em;
}
.footer-column h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin-top: 12px;
    background: rgba(255, 250, 244, .58);
}
.footer-column nav {
    display: grid;
    gap: 14px;
}
.footer-column nav a,
.footer-contact a,
.footer-contact address {
    color: #fffaf4;
    font-size: 12.5px;
    line-height: 1.7;
    letter-spacing: .005em;
    transition: color .25s ease, transform .25s ease;
}
.footer-column nav a:hover,
.footer-contact a:hover {
    color: #ffffff;
    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: #fffaf4;
    border: 1px solid rgba(255,250,244,.5);
    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);
    color: #fffaf5;
    transform: translateY(-3px);
}
.footer-socials svg { width: 15px; height: 15px; }
.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: #fffaf4;
    background: #4d403a;
    border-top: 1px solid rgba(255,250,244,.14);
    font-size: 11px;
    letter-spacing: .04em;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
    color: #fffaf4;
    text-transform: uppercase;
}
.footer-bottom a span {
    margin-left: 9px;
    color: #fffaf4;
}

@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; }
    .header-socials { display: none; }
    .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 { grid-template-columns: minmax(150px,.8fr) minmax(180px,1.2fr); padding: 30px 45px 24px; }
    .showcase-product > img { width: 100%; }
    .showcase-arrow { top: 52%; }
    .brand-story {
        grid-template-columns: 1fr;
        background: #faf8f5;
    }
    .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: 11px; }
    .rug-showcase { padding-inline: 0; }
    .showcase-slides { min-height: 790px; }
    .showcase-slide { grid-template-rows: 48% 52%; }
    .showcase-product { grid-template-columns: minmax(125px,.9fr) minmax(140px,1.1fr); gap: 16px; padding: 28px 32px 20px; }
    .showcase-product > img { width: 100%; }
    .showcase-feature-copy > span { margin-bottom: 18px; font-size: 7px; }
    .showcase-feature-copy h3 { margin-bottom: 12px; font-size: 26px; }
    .showcase-feature-copy p { margin-bottom: 17px; font-size: 11px; }
    .showcase-feature-copy a { min-width: 0; gap: 10px; padding: 11px 10px; font-size: 7px; }
    .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;
    }
}

/* Care page */
.care-main { display: block; background: #f5f0e8; }
.care-hero { position: relative; height: 78vh; min-height: 600px; overflow: hidden; color: #fffaf3; }
.care-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.care-hero > span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(27,16,10,.67), rgba(27,16,10,.04) 67%); }
.care-hero > div { position: absolute; z-index: 1; right: 7vw; bottom: 8vh; left: 7vw; }
.care-hero p,
.care-intro > div > p,
.care-note > p { margin: 0 0 15px; color: #dfa06f; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .23em; text-transform: uppercase; }
.care-hero h1 { margin: 0; font: 500 clamp(50px, 6.8vw, 92px)/.92 Georgia, serif; letter-spacing: -.05em; }
.care-hero h1 em,
.care-intro h2 em { color: #e1a171; font-weight: inherit; }
.care-intro { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(88px, 11vw, 145px) 0 74px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 10vw, 145px); align-items: end; }
.care-intro h2 { margin: 0; color: #3f291e; font: 500 clamp(40px, 5vw, 68px)/1 Georgia, serif; letter-spacing: -.045em; }
.care-intro > p { margin: 0; color: #80614e; font: 15px/1.85 Arial, sans-serif; }
.care-guide { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding-bottom: clamp(95px, 11vw, 145px); border-top: 1px solid rgba(112,65,37,.17); }
.care-guide article { display: grid; grid-template-columns: 66px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(112,65,37,.17); }
.care-guide article > span { padding-top: 5px; color: #b77a51; font: 600 10px/1 Arial, sans-serif; letter-spacing: .16em; }
.care-guide h3 { margin: 0; color: #573522; font: 500 clamp(19px, 1.9vw, 25px)/1.35 Georgia, serif; }
.care-guide article p { max-width: 880px; margin: 8px 0 0; color: #8d6d55; font: 14px/1.75 Arial, sans-serif; }
.care-guide article.care-important { background: rgba(234,220,202,.52); padding-right: 25px; padding-left: 20px; }
.care-guide article.care-important h3 { color: #8f4f2d; font-weight: 600; }
.care-note { padding: clamp(80px, 10vw, 125px) 24px; background: #eadcca; text-align: center; }
.care-note h2 { margin: 0 0 33px; color: #4a2e20; font: 500 clamp(37px, 5vw, 64px)/1 Georgia, serif; letter-spacing: -.04em; }
.care-note a { display: inline-flex; gap: 20px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid rgba(112,65,37,.38); color: #704125; font: 600 10px/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }

@media (max-width: 800px) {
    .care-hero { height: 70vh; min-height: 520px; }
    .care-intro { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 520px) {
    .care-hero > div { right: 22px; bottom: 48px; left: 22px; }
    .care-hero h1 { font-size: 49px; }
    .care-intro,
    .care-guide { width: calc(100% - 40px); }
    .care-intro { padding-top: 70px; }
    .care-guide article { grid-template-columns: 36px 1fr; gap: 12px; }
    .care-guide article.care-important { padding-left: 10px; padding-right: 12px; }
}

/* Showroom page */
.showroom-main { display: block; background: #DFDACF; }
.showroom-hero { position: relative; height: 82vh; min-height: 620px; overflow: hidden; color: #fffaf3; }
.showroom-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.showroom-hero > span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(25,15,9,.68), rgba(25,15,9,.03) 66%); }
.showroom-hero > div { position: absolute; z-index: 1; right: 7vw; bottom: 8vh; left: 7vw; }
.showroom-hero p,
.showroom-details-copy > p { margin: 0 0 15px; color: #e0a374; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .23em; text-transform: uppercase; }
.showroom-hero h1 { margin: 0; font: 500 clamp(52px, 7vw, 94px)/.91 Georgia, serif; letter-spacing: -.05em; }
.showroom-hero h1 em,
.showroom-details-copy h2 em { color: #e1a171; font-weight: inherit; }
.showroom-details { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: clamp(90px, 11vw, 150px) 0; display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; align-items: stretch; }
.showroom-details-image { min-width: 0; aspect-ratio: 2 / 1; margin: 0; overflow: hidden; background: #DFDACF; }
.showroom-details-image img { width: 100%; height: 100%; display: block; object-fit: contain; background: #DFDACF; }
.showroom-details-copy h2 { margin: 0 0 28px; color: #3f291e; font: 500 clamp(40px, 5vw, 67px)/1 Georgia, serif; letter-spacing: -.045em; }
.showroom-details-copy > span { display: block; max-width: 590px; color: #80614e; font: 15px/1.8 Arial, sans-serif; }
.showroom-address-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4.5vw, 58px); background: #DFDACF; box-shadow: none; }
.showroom-address-card > span { display: block; margin-bottom: 19px; color: #ad673a; font: 600 10px/1 Arial, sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.showroom-address-card h3 { margin: 0 0 20px; color: #4e3021; font: 500 clamp(28px, 3vw, 40px)/1.12 Georgia, serif; }
.showroom-company { margin: -7px 0 12px; color: #4e3021; font: 600 17px/1.4 Arial, sans-serif; }
.showroom-address-card address { margin: 0; color: #80614e; font: normal 15px/1.8 Arial, sans-serif; }
.showroom-actions { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 36px; }
.showroom-actions a { padding-bottom: 5px; border-bottom: 1px solid rgba(112,65,37,.35); color: #704125; font: 600 9px/1.2 Arial, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.showroom-actions b { margin-left: 9px; color: #ad673a; font-weight: 400; }
.showroom-details-bhadohi {
    padding-top: 0;
    background: #FAF8F5;
    box-shadow: 0 0 0 100vmax #FAF8F5;
    clip-path: inset(0 -100vmax);
}
.showroom-details-bhadohi .showroom-address-card,
.showroom-details-bhadohi .showroom-details-image,
.showroom-details-bhadohi .showroom-details-image img { background: #FAF8F5; }
.showroom-details-bhadohi .showroom-address-card > span,
.showroom-details-bhadohi .showroom-address-card h3 { color: #4d403a; }
.showroom-details-bhadohi .showroom-company,
.showroom-details-bhadohi .showroom-address-card address { color: #262626; }
.showroom-details-bhadohi .showroom-actions a { color: #4d403a; border-bottom-color: rgba(77,64,58,.38); }
.showroom-details-bhadohi .showroom-actions b { color: #4d403a; }

@media (max-width: 800px) {
    .showroom-hero { height: 70vh; min-height: 520px; }
    .showroom-details { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 520px) {
    .showroom-hero > div { right: 22px; bottom: 48px; left: 22px; }
    .showroom-hero h1 { font-size: 52px; }
    .showroom-details { width: calc(100% - 40px); padding: 72px 0; }
    .showroom-address-card { padding: 36px 25px; }
    .showroom-actions { flex-direction: column; align-items: flex-start; }
}
.about-main { display: block; }
.about-page { background: #faf8f5; }
.about-page .desktop-nav a[aria-current="page"]::after { width: 100%; }
.about-hero {
    position: relative;
    height: clamp(520px, 56vw, 760px);
    overflow: hidden;
    color: #fffaf1;
    background: #4d3425;
}
.about-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,19,12,.55), rgba(31,19,12,.05) 62%), linear-gradient(0deg, rgba(31,19,12,.4), transparent 55%);
}
.about-hero-copy {
    position: absolute;
    z-index: 1;
    left: clamp(28px, 8vw, 130px);
    bottom: clamp(55px, 9vw, 120px);
}
.about-hero-copy p,
.about-eyebrow {
    margin: 0 0 15px;
    color: #b06b3e;
    font-size: 9px;
    letter-spacing: .26em;
    text-transform: uppercase;
}
.about-hero-copy p { color: #f0c39d; }
.about-hero-copy h1 {
    margin: 0;
    font: 500 clamp(45px, 5.5vw, 82px)/.98 Georgia, "Times New Roman", serif;
    letter-spacing: -.045em;
}
.about-intro {
    padding: clamp(65px, 8vw, 110px) 24px;
    background: #faf8f5;
}
.about-intro p {
    max-width: 690px;
    margin: 0 auto;
    color: #4d403a;
    text-align: center;
    font: 16px/1.7 Georgia, "Times New Roman", serif;
}
.about-editorial {
    padding: 0 max(28px, calc((100vw - 1160px) / 2));
    background: #faf8f5;
    overflow: hidden;
}
.about-row {
    --section-bg: #faf8f5;
    --section-heading: #4d403a;
    --section-text: #262626;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
    gap: clamp(60px, 9vw, 135px);
    align-items: center;
    margin-bottom: 0;
    padding-block: clamp(58px, 7vw, 96px);
    background: var(--section-bg);
    box-shadow: 0 0 0 100vmax var(--section-bg);
    clip-path: inset(0 -100vmax);
}
.about-row:last-child { margin-bottom: 0; }
.about-row:nth-child(2) { --section-bg: #d7d0ca; }
.about-row:nth-child(2),
.about-row:nth-child(3),
.about-row:nth-child(4),
.about-row:nth-child(5),
.about-row:nth-child(6),
.about-row:nth-child(7),
.about-row:nth-child(8),
.about-row:nth-child(9) {
    padding-block: clamp(26px, 3.4vw, 48px);
}
.about-row:nth-child(2) .about-image,
.about-row:nth-child(3) .about-image,
.about-row:nth-child(4) .about-image,
.about-row:nth-child(5) .about-image,
.about-row:nth-child(6) .about-image,
.about-row:nth-child(7) .about-image,
.about-row:nth-child(8) .about-image {
    width: min(100%, 380px);
    height: auto;
    aspect-ratio: 4 / 5;
    justify-self: center;
    padding: clamp(16px, 2vw, 24px);
    background: #f4eee7;
    box-shadow: 0 14px 30px rgba(57, 45, 38, .16);
}
.about-row:nth-child(2) .about-image img,
.about-row:nth-child(3) .about-image img,
.about-row:nth-child(4) .about-image img,
.about-row:nth-child(5) .about-image img,
.about-row:nth-child(6) .about-image img,
.about-row:nth-child(7) .about-image img,
.about-row:nth-child(8) .about-image img {
    border: 9px solid #302b28;
    box-sizing: border-box;
}
.about-row:nth-child(2) .about-copy,
.about-row:nth-child(3) .about-copy,
.about-row:nth-child(4) .about-copy,
.about-row:nth-child(5) .about-copy,
.about-row:nth-child(6) .about-copy,
.about-row:nth-child(7) .about-copy,
.about-row:nth-child(8) .about-copy,
.about-row:nth-child(9) .about-copy {
    padding-block: clamp(32px, 4vw, 58px);
}
.about-row:nth-child(9) .about-image {
    width: min(100%, 500px);
    height: auto;
    aspect-ratio: 16 / 10;
    justify-self: center;
    padding: clamp(16px, 2vw, 24px);
    background: #f4eee7;
    box-shadow: 0 14px 30px rgba(57, 45, 38, .16);
}
.about-row:nth-child(9) .about-image img {
    border: 9px solid #302b28;
    box-sizing: border-box;
}
.about-row:nth-child(3) { --section-bg: #f5f1ec; }
.about-row:nth-child(4) { --section-bg: #d2cbc5; }
.about-row:nth-child(5) { --section-bg: #e8dfd1; }
.about-row:nth-child(6) { --section-bg: #f7f4f0; }
.about-row:nth-child(7) { --section-bg: #e8dfd1; }
.about-row:nth-child(8) {
    --section-bg: #6f625b;
    --section-heading: #fffaf4;
    --section-text: #fffaf4;
}
.about-row:nth-child(9) { --section-bg: #efebe6; }
.about-row:first-child {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, .55fr);
    gap: clamp(48px, 7vw, 96px);
    padding-block: clamp(30px, 3.6vw, 52px);
}
.about-row-reverse { grid-template-columns: minmax(340px, .88fr) minmax(0, 1fr); }
.about-copy h2 {
    margin: 0 0 24px;
    color: var(--section-heading);
    font: 700 clamp(28px, 3vw, 43px)/1.05 Georgia, "Times New Roman", serif;
    letter-spacing: -.025em;
    text-transform: none;
}
.about-copy h2 em {
    color: var(--section-heading);
    font-weight: inherit;
}
.about-image-logo {
    width: min(100%, 255px);
    justify-self: center;
    aspect-ratio: 4 / 4.45;
    background: #A3968D;
    padding: clamp(18px, 2.2vw, 30px);
}
.about-image-logo img {
    object-fit: contain;
}
.about-image-logo-hanging {
    padding: 0;
    background: #A3968D;
}
.about-image-logo-hanging img {
    object-fit: cover;
}
.about-copy > p:not(.about-eyebrow) {
    margin: 0 0 15px;
    color: var(--section-text);
    font: 14px/1.75 "Helvetica Neue", Arial, sans-serif;
}
.about-image {
    margin: 0;
    overflow: hidden;
    background: #d5b990;
}
.about-image-portrait { aspect-ratio: 4 / 5; }
.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.about-image-wall-decor {
    background: transparent;
}
.about-image-wall-decor img {
    transform: none;
}
.about-image-wall-decor:hover img {
    transform: scale(1.015);
}
.about-image:hover img { transform: scale(1.025); }
.about-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about-craft-points {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-craft-points li {
    position: relative;
    padding-left: 24px;
    color: #8d6d55;
    font: 15px/1.65 "Helvetica Neue", Arial, sans-serif;
}
.about-craft-points li::before {
    content: "";
    position: absolute;
    top: .78em;
    left: 0;
    width: 11px;
    height: 1px;
    background: #ad673a;
}
.about-link {
    display: inline-flex;
    gap: 24px;
    margin-top: 12px;
    padding-bottom: 6px;
    color: #704125;
    border-bottom: 1px solid rgba(112,65,37,.45);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.about-closing {
    position: relative;
    height: clamp(480px, 58vw, 760px);
    overflow: hidden;
    color: #fff;
}
.about-closing > img { width: 100%; height: 100%; object-fit: cover; }
.about-closing::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28,16,10,.58), transparent 58%);
}
.about-closing > div {
    position: absolute;
    z-index: 1;
    right: 7vw;
    bottom: 7vw;
    left: 7vw;
}
.about-closing p { margin: 0 0 10px; font-size: 9px; letter-spacing: .24em; text-transform: uppercase; }
.about-closing h2 { margin: 0; font: 500 clamp(34px, 4vw, 62px)/1 Georgia, serif; }

@media (max-width: 820px) {
    .about-row,
    .about-row-reverse { grid-template-columns: 1fr; gap: 42px; }
    .about-row:first-child { grid-template-columns: 1fr; }
    .about-row-reverse .about-image { order: 2; }
    .about-row-reverse .about-copy { order: 1; }
    .about-image { width: min(100%, 560px); justify-self: center; }
    .about-editorial { padding-inline: 24px; }
}
@media (max-width: 520px) {
    .about-hero { height: 560px; }
    .about-hero-copy h1 { font-size: 45px; }
    .about-intro { padding: 60px 24px; }
    .about-row { margin-bottom: 0; }
    .about-copy h2 { font-size: 30px; }
    .about-closing { height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-video { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* Global APCO typography */
body,
body :where(p, a, span, li, address, label, input, textarea, select, button, small, strong, b) {
    font-family: var(--font-body) !important;
}
body :where(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
}
body :where(h1, h2, h3, h4, h5, h6) em {
    font-family: inherit !important;
    font-weight: inherit !important;
}

/* Contact page */
.contact-main { background: #f5f0e8; }
.contact-hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fffaf3;
}
.contact-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-hero > span { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,15,10,.72), rgba(24,15,10,.18) 68%), linear-gradient(0deg, rgba(24,15,10,.55), transparent 55%); }
.contact-hero > div { position: relative; z-index: 1; width: min(1180px, 88vw); margin: 0 auto; padding: 190px 0 76px; }
.contact-hero p,
.contact-heading > p,
.faq-intro > p,
.form-title > p { margin: 0 0 16px; color: #c9895d; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .24em; text-transform: uppercase; }
.contact-hero h1 { max-width: 760px; margin: 0; font: 500 clamp(44px, 6.2vw, 84px)/.96 Georgia, serif; letter-spacing: -.045em; }
.contact-hero h1 em,
.contact-heading h2 em,
.faq-intro h2 em { color: #d49668; font-weight: inherit; }
.contact-section { padding: clamp(85px, 10vw, 145px) max(6vw, 24px); }
.contact-heading { width: min(1180px, 100%); margin: 0 auto 66px; display: grid; grid-template-columns: 1fr .72fr; column-gap: 10%; align-items: end; }
.contact-heading > p { grid-column: 1 / -1; }
.contact-heading h2,
.faq-intro h2 { margin: 0; color: #3b261c; font: 500 clamp(39px, 5vw, 68px)/1 Georgia, serif; letter-spacing: -.04em; }
.contact-heading > span,
.faq-intro > span { max-width: 440px; color: #8d6d55; font: 15px/1.75 Arial, sans-serif; }
.contact-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.35fr; gap: clamp(46px, 8vw, 110px); align-items: start; }
.contact-details { border-top: 1px solid rgba(108,61,38,.22); }
.contact-details article { padding: 27px 0; border-bottom: 1px solid rgba(108,61,38,.18); }
.contact-details small { display: block; margin-bottom: 10px; color: #ad673a; font: 600 9px/1 Arial, sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.contact-details h3 { margin: 0 0 7px; color: #4a2d20; font: 500 20px/1.3 Georgia, serif; }
.contact-details p,
.contact-details address,
.contact-details article > a { margin: 0; color: #8d6d55; font: normal 14px/1.65 Arial, sans-serif; }
.contact-details a { transition: color .2s ease; }
.contact-details a:hover { color: #ad673a; }
.contact-form { padding: clamp(34px, 5vw, 62px); background: #eadcca; box-shadow: 0 24px 70px rgba(68,42,27,.08); }
.form-title h2 { margin: 0 0 36px; color: #4a2d20; font: 500 clamp(29px, 3.5vw, 43px)/1.1 Georgia, serif; }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 26px; }
.form-fields label { display: grid; gap: 10px; }
.form-fields label.full { grid-column: 1 / -1; }
.form-fields label > span { color: #80553d; font: 600 9px/1 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.form-fields input,
.form-fields textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(91,54,34,.3); border-radius: 0; outline: 0; padding: 7px 0 12px; color: #37251c; background: transparent; font: 15px/1.5 Arial, sans-serif; resize: vertical; }
.form-fields input:focus,
.form-fields textarea:focus { border-color: #ad673a; }
.contact-form button { margin-top: 34px; border: 0; padding: 15px 22px; background: #704125; color: #fffaf3; font: 600 10px/1 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.contact-form button span { margin-left: 18px; }
.contact-honeypot { position: absolute; left: -9999px; }
.form-message { margin: -18px 0 28px; padding: 12px 15px; font: 13px/1.5 Arial, sans-serif; }
.form-message.success { color: #31563a; background: rgba(71,121,80,.1); }
.form-message.error { color: #833b2d; background: rgba(153,70,51,.1); }
.contact-faq { padding: clamp(85px, 10vw, 145px) max(6vw, 24px); background: #e9ddcd; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 130px); }
.faq-intro { max-width: 440px; margin-left: auto; }
.faq-intro > span { display: block; margin-top: 26px; }
.faq-list { max-width: 760px; }
.faq-list details { border-top: 1px solid rgba(108,61,38,.2); }
.faq-list details:last-child { border-bottom: 1px solid rgba(108,61,38,.2); }
.faq-list summary { position: relative; display: grid; grid-template-columns: 38px 1fr 22px; gap: 14px; align-items: center; padding: 25px 0; color: #4a2d20; font: 500 clamp(17px, 1.7vw, 21px)/1.35 Georgia, serif; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #b07a58; font: 600 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.faq-list summary i::before,
.faq-list summary i::after { content: ""; position: absolute; right: 2px; top: 50%; width: 14px; height: 1px; background: #80553d; transition: transform .25s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { margin: -6px 36px 26px 52px; color: #8d6d55; font: 14px/1.78 Arial, sans-serif; }

@media (max-width: 850px) {
    .contact-heading { grid-template-columns: 1fr; gap: 25px; }
    .contact-grid,
    .contact-faq { grid-template-columns: 1fr; }
    .faq-intro { margin-left: 0; }
    .contact-hero { min-height: 620px; }
}
@media (max-width: 560px) {
    .contact-hero > div { width: calc(100% - 40px); padding-bottom: 48px; }
    .contact-hero h1 { font-size: 43px; }
    .contact-section,
    .contact-faq { padding-left: 20px; padding-right: 20px; }
    .form-fields { grid-template-columns: 1fr; }
    .form-fields label.full { grid-column: auto; }
    .contact-form { padding: 34px 24px; }
    .faq-list summary { grid-template-columns: 30px 1fr 20px; gap: 9px; }
    .faq-list details p { margin-left: 39px; margin-right: 12px; }
}

/* Product gallery */
.products-page { background: #f4efe8; color: #352218; }
.products-hero { position: relative; height: min(78vh, 790px); min-height: 570px; overflow: hidden; background: #2c211b; }
.products-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,20,15,.72) 0%, rgba(31,20,15,.28) 52%, rgba(31,20,15,.08) 100%); }
.products-hero > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); filter: saturate(.78); }
.products-hero-copy { position: absolute; z-index: 1; left: max(7vw, 48px); bottom: 12%; color: #fffaf3; }
.products-hero-copy p, .products-intro > p, .products-cta > p { margin: 0 0 22px; color: #c8804c; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .27em; text-transform: uppercase; }
.products-hero-copy p { color: #f0c59d; }
.products-hero-copy h1 { margin: 0; font: 400 clamp(48px, 5.4vw, 82px)/.98 Georgia, serif; letter-spacing: -.035em; }
.products-hero-copy h1 em, .products-intro h2 em, .products-cta h2 em { color: #dc9562; font-weight: 400; }
.products-intro h2, .products-cta h2 { margin: 0; font: 400 clamp(40px, 4.1vw, 62px)/1.04 Georgia, serif; letter-spacing: -.035em; }
.products-filter { padding: 76px max(24px, 5vw) 62px; background: #f4efe8; }
.products-filter form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 18px; align-items: end; max-width: 1180px; margin: 0 auto; }
.products-filter-field label { display: block; margin: 0 0 12px; color: #a7643d; font: 600 9px/1 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.products-filter-field select { width: 100%; height: 52px; padding: 0 42px 0 2px; border: 0; border-bottom: 1px solid rgba(83,51,34,.34); border-radius: 0; outline: 0; background: transparent; color: #43291c; font: 400 15px/1 Georgia, serif; cursor: pointer; }
.products-filter button { height: 52px; padding: 0 27px; border: 1px solid #6f4129; background: #6f4129; color: #fff9f2; font: 600 9px/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; cursor: pointer; transition: background .25s ease, color .25s ease; }
.products-filter button span { margin-left: 14px; }
.products-filter button:hover { background: transparent; color: #6f4129; }
.product-gallery {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 20px 0 120px;
}
.product-card {
    min-width: 0;
    padding: 12px 12px 14px;
    color: inherit;
    text-decoration: none;
    background: #DFDACF;
    border: 1px solid rgba(77,64,58,.13);
    transition: transform .35s ease, box-shadow .35s ease;
}
.product-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    padding: 0;
    overflow: hidden;
    background: #FAF8F5;
    border: 0;
    box-shadow: none;
    transition: box-shadow .35s ease;
}
.product-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center;
    background: #FAF8F5;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.product-card-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-top: 0; padding: 13px 2px 0; border-top: 0; }
.product-card-meta strong { display: block; color: #4d403a; font: 400 15px/1.25 var(--font-body); }
.product-card-meta small,
.product-card-meta > span:last-child { display: none; }
.product-card:hover .product-card-image img { transform: scale(1.035); filter: saturate(1.08); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(52,38,29,.16); }
.product-card:hover .product-card-image { box-shadow: none; }
.product-card:hover .product-card-meta > span:last-child { transform: translate(3px,-3px); }
.products-cta { margin: 0 max(24px, 3vw) 110px; padding: 92px max(30px, 8vw); text-align: center; background: #e8dac7; }
.products-cta h2 { margin-bottom: 34px; }
.products-cta a { display: inline-block; padding-bottom: 7px; border-bottom: 1px solid rgba(91,50,29,.38); color: #5b321d; text-decoration: none; font: 600 10px/1 Arial, sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.products-cta a span { margin-left: 18px; }

@media (max-width: 1000px) {
    .products-filter form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .products-filter button { grid-column: 1 / -1; justify-self: end; }
    .product-gallery { width: min(940px, calc(100% - 36px)); grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .products-hero { height: 72vh; min-height: 520px; }
    .products-hero-copy { left: 24px; right: 24px; bottom: 9%; }
    .products-hero-copy h1 { font-size: clamp(42px, 13vw, 62px); }
    .products-filter { padding: 50px 24px 42px; }
    .products-filter form { grid-template-columns: 1fr; gap: 26px; }
    .products-filter button { grid-column: auto; justify-self: stretch; margin-top: 4px; }
    .product-gallery { width: calc(100% - 24px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; padding: 10px 0 78px; }
    .product-card-image { height: auto; aspect-ratio: 3 / 4; }
    .product-card-meta { padding-top: 12px; }
    .product-card-meta strong { font-size: 16px; }
    .products-cta { margin: 0 12px 70px; padding: 64px 20px; }
    .products-cta h2 { font-size: 38px; }
}

/* Collection detail */
.collection-page { background:#f4efe8; color:#3c2519; }
.collection-heading { display:flex; align-items:baseline; gap:14px; padding:190px max(28px,6vw) 54px; border-bottom:1px solid rgba(83,51,34,.18); }
.collection-heading a,.collection-heading span { color:#aa6840; font:600 9px/1 Arial,sans-serif; letter-spacing:.2em; text-decoration:none; text-transform:uppercase; }
.collection-heading h1 { margin:0; font:400 clamp(48px,6vw,86px)/1 Georgia,serif; }
.collection-filter { padding:30px max(28px,6vw); }
.collection-filter form { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:28px; max-width:1240px; margin:auto; }
.collection-filter label span { display:block; margin-bottom:10px; color:#aa6840; font:600 8px/1 Arial,sans-serif; letter-spacing:.2em; text-transform:uppercase; }
.collection-filter select { width:100%; padding:0 28px 10px 0; border:0; border-bottom:1px solid rgba(83,51,34,.3); border-radius:0; outline:0; background:transparent; color:#43291c; font:14px Georgia,serif; }
.collection-grid { width:min(1420px,calc(100% - 48px)); margin:0 auto; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px 18px; padding:36px 0 110px; }
.collection-design { min-width:0; padding:12px 12px 14px; color:inherit; text-decoration:none; background:#DFDACF; border:1px solid rgba(77,64,58,.13); transition:transform .35s ease,box-shadow .35s ease; }
.collection-design > span { display:flex; align-items:center; justify-content:center; width:100%; height:auto; aspect-ratio:3 / 4; background:#FAF8F5; overflow:hidden; }
.collection-design img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .5s ease; }
.collection-design:hover img { transform:scale(1.025); }
.collection-design:hover { transform:translateY(-5px); box-shadow:0 18px 38px rgba(52,38,29,.16); }
.collection-design strong { display:block; margin-top:13px; color:#4d403a; font:400 15px/1.25 var(--font-body); }
.collection-design small { display:block; margin-top:5px; color:#6f625b; font:400 10px/1.25 var(--font-body); letter-spacing:.1em; text-transform:uppercase; }
.collection-empty { grid-column:1/-1; display:grid; grid-template-columns:minmax(260px,440px) minmax(260px,430px); justify-content:center; align-items:center; gap:70px; }
.collection-empty > img { width:100%; max-height:560px; object-fit:contain; }
.collection-empty h2 { margin:0 0 20px; font:400 48px Georgia,serif; }.collection-empty p{color:#765b4b;line-height:1.7}.collection-empty a{color:#6f4129;text-transform:uppercase;font:600 9px Arial,sans-serif;letter-spacing:.17em}
@media(max-width:1000px){.collection-grid{width:min(940px,calc(100% - 36px));grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:850px){.collection-filter form{grid-template-columns:repeat(2,1fr)}.collection-grid{width:calc(100% - 24px);grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 12px}.collection-empty{grid-template-columns:1fr;gap:30px}.collection-heading{padding-top:145px}}
@media(max-width:520px){.collection-heading{padding:125px 20px 34px}.collection-heading h1{font-size:44px}.collection-filter{padding:28px 20px}.collection-filter form{grid-template-columns:1fr}.collection-grid{padding:20px 0 70px;gap:20px 10px}.collection-design{padding:8px 8px 11px}.collection-design>span{height:auto;aspect-ratio:3 / 4}}

/* Product detail */
.product-page{background:#f4efe8;color:#3c2519}.product-breadcrumb{display:flex;gap:12px;padding:165px max(28px,6vw) 30px;color:#a76640;font:600 8px Arial,sans-serif;letter-spacing:.17em;text-transform:uppercase}.product-breadcrumb a{color:inherit;text-decoration:none}.product-breadcrumb strong{color:#4a2d1e}.product-detail{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);min-height:690px;border-top:1px solid rgba(83,51,34,.16);border-bottom:1px solid rgba(83,51,34,.16)}.product-detail-image{display:flex;align-items:center;justify-content:center;padding:55px;background:#ebe0d1}.product-detail-image img{width:100%;height:620px;object-fit:contain}.product-detail-copy{padding:72px clamp(38px,6vw,92px)}.product-detail-copy>p,.related-products>p{margin:0 0 18px;color:#aa6840;font:600 9px Arial,sans-serif;letter-spacing:.22em;text-transform:uppercase}.product-detail-copy h1{margin:0 0 30px;font:400 clamp(52px,5.5vw,78px)/.95 Georgia,serif}.product-detail-copy h1 em{color:#dc9562;font-weight:400}.product-description{margin-bottom:35px;color:#765b4b;font:14px/1.75 Arial,sans-serif}.product-detail-copy dl{margin:0;border-top:1px solid rgba(83,51,34,.18)}.product-detail-copy dl div{display:grid;grid-template-columns:130px 1fr;padding:15px 0;border-bottom:1px solid rgba(83,51,34,.18)}.product-detail-copy dt{color:#aa6840;font:600 8px Arial,sans-serif;letter-spacing:.18em;text-transform:uppercase}.product-detail-copy dd{margin:0;font:14px Georgia,serif}.product-sizes{margin-top:28px}.product-sizes h2{font:400 21px Georgia,serif}.product-sizes span{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid rgba(83,51,34,.13);font:13px Arial,sans-serif}.product-sizes small{color:#9a725b}.product-enquire{display:inline-block;margin-top:38px;padding:16px 22px;background:#6f4129;color:#fff;text-decoration:none;font:600 9px Arial,sans-serif;letter-spacing:.16em;text-transform:uppercase}.product-enquire span{margin-left:20px}.related-products{padding:100px max(20px,4vw)}.related-products h2{margin:0 0 40px;font:400 46px Georgia,serif}.related-products>div{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.related-products a{color:inherit;text-decoration:none}.related-products a>span{display:flex;height:390px;background:#ebe0d1;overflow:hidden}.related-products img{width:100%;height:100%;object-fit:contain;transition:transform .45s ease}.related-products a:hover img{transform:scale(1.025)}.related-products strong{display:block;margin-top:14px;font:400 17px Georgia,serif}.related-products small{color:#aa6840;font:600 8px Arial,sans-serif;letter-spacing:.15em}
@media(max-width:850px){.product-detail{grid-template-columns:1fr}.product-detail-image img{height:520px}.related-products>div{grid-template-columns:repeat(2,1fr)}}@media(max-width:520px){.product-breadcrumb{padding:125px 20px 24px;overflow:auto}.product-detail-image{padding:25px 10px}.product-detail-image img{height:115vw}.product-detail-copy{padding:48px 24px}.product-detail-copy h1{font-size:52px}.related-products{padding:70px 10px}.related-products a>span{height:68vw}}

.product-detail{grid-template-columns:minmax(0,1.12fr) minmax(380px,.88fr);min-height:0;padding:56px max(28px,7vw);gap:clamp(45px,7vw,110px);background:#f7f3ed}.product-slider{min-width:0}.product-slider-stage{position:relative;display:flex;align-items:center;justify-content:center;height:min(66vw,680px);background:#ebe0d1;overflow:hidden}.product-slider-stage>img{width:100%;height:100%;object-fit:contain;opacity:1;transform:scale(1);transition:opacity .28s ease,transform .45s ease}.product-slider-stage>img.is-changing{opacity:.25;transform:scale(.985)}.product-slider-arrow{position:absolute;top:50%;width:46px;height:46px;border:1px solid rgba(83,51,34,.2);border-radius:50%;background:rgba(248,244,238,.88);color:#4c2d1c;cursor:pointer;transform:translateY(-50%);transition:background .2s ease,transform .2s ease}.product-slider-arrow:hover{background:#fff;transform:translateY(-50%) scale(1.06)}.product-slider-arrow.prev{left:18px}.product-slider-arrow.next{right:18px}.product-thumbnails{display:flex;gap:10px;overflow-x:auto;padding:14px 1px 4px;scrollbar-width:thin}.product-thumbnails button{flex:0 0 72px;width:72px;height:86px;padding:4px;border:1px solid transparent;background:#e9dfd2;cursor:pointer;opacity:.62;transition:opacity .2s ease,border-color .2s ease}.product-thumbnails button.is-active{border-color:#8d5536;opacity:1}.product-thumbnails img{width:100%;height:100%;object-fit:contain}.product-detail-copy{align-self:center;padding:20px 0}.product-details-title{margin:0 0 16px;font:400 22px Georgia,serif}.product-description{margin:28px 0 0}.related-products{padding:92px max(28px,7vw) 110px}.related-heading{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:35px}.related-heading p{margin:0 0 13px;color:#aa6840;font:600 9px Arial,sans-serif;letter-spacing:.22em;text-transform:uppercase}.related-heading h2{margin:0}.related-heading button{width:45px;height:45px;margin-left:7px;border:1px solid rgba(83,51,34,.25);border-radius:50%;background:transparent;color:#4d2d1b;cursor:pointer;transition:background .2s ease,color .2s ease}.related-heading button:hover{background:#6f4129;color:#fff}.related-track{display:flex!important;gap:18px!important;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none}.related-track::-webkit-scrollbar{display:none}.related-track>a{flex:0 0 calc((100% - 54px)/4);scroll-snap-align:start}.related-track a>span{height:clamp(340px,35vw,500px)}
@media(max-width:850px){.product-detail{grid-template-columns:1fr;padding:40px 24px;gap:42px}.product-slider-stage{height:min(112vw,650px)}.product-detail-copy{padding:0}.related-track>a{flex-basis:calc((100% - 18px)/2)}}@media(max-width:520px){.product-detail{padding:24px 10px 45px}.product-slider-stage{height:120vw}.product-slider-arrow{width:40px;height:40px}.product-thumbnails button{flex-basis:60px;width:60px;height:72px}.related-products{padding:65px 10px}.related-heading{align-items:center}.related-heading h2{font-size:36px}.related-heading>div:last-child{display:flex}.related-track>a{flex-basis:76vw}.related-track a>span{height:98vw}}

/* Projects page */
.projects-main { display: block; background: #f5f0e8; }
.projects-hero { position: relative; height: 82vh; min-height: 620px; overflow: hidden; color: #fffaf3; }
.projects-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.projects-hero > span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(27,16,10,.64), rgba(27,16,10,.04) 68%); }
.projects-hero > div { position: absolute; z-index: 1; right: 7vw; bottom: 8vh; left: 7vw; }
.projects-hero p,
.projects-intro-heading > p,
.projects-cta > p { margin: 0 0 15px; color: #d99160; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.projects-hero h1 { max-width: 900px; margin: 0; font: 500 clamp(46px, 6vw, 84px)/.96 Georgia, serif; letter-spacing: -.048em; }
.projects-hero h1 em,
.projects-intro h2 em { color: #e2a372; font-weight: inherit; }
.projects-intro { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(88px, 11vw, 150px) 0 78px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 145px); align-items: end; }
.projects-intro h2 { margin: 0; color: #3f291e; font: 500 clamp(40px, 5vw, 68px)/1 Georgia, serif; letter-spacing: -.045em; }
.projects-intro-copy p { margin: 0 0 20px; color: #80614e; font: 16px/1.8 Arial, sans-serif; }
.projects-intro-copy p:last-child { margin-bottom: 0; color: #704125; font: 500 22px/1.45 Georgia, serif; }
.projects-process { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding-bottom: clamp(95px, 11vw, 150px); border-top: 1px solid rgba(112,65,37,.18); }
.projects-process article { display: grid; grid-template-columns: 70px minmax(220px, .75fr) 1fr; gap: 32px; align-items: start; padding: 34px 0; border-bottom: 1px solid rgba(112,65,37,.18); }
.projects-process article > span { padding-top: 7px; color: #b77a51; font: 600 10px/1 Arial, sans-serif; letter-spacing: .17em; }
.projects-process h3 { margin: 0; color: #573522; font: 500 clamp(23px, 2.3vw, 32px)/1.2 Georgia, serif; }
.projects-process article > p { max-width: 530px; margin: 0; color: #8d6d55; font: 14px/1.75 Arial, sans-serif; }
.projects-cta { padding: clamp(82px, 10vw, 130px) 24px; background: #eadcca; text-align: center; }
.projects-cta h2 { margin: 0 0 34px; color: #4a2e20; font: 500 clamp(38px, 5vw, 66px)/1 Georgia, serif; letter-spacing: -.04em; }
.projects-cta a { display: inline-flex; gap: 22px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid rgba(112,65,37,.4); color: #704125; font: 600 10px/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }

@media (max-width: 800px) {
    .projects-hero { height: 70vh; min-height: 520px; }
    .projects-intro { grid-template-columns: 1fr; gap: 35px; }
    .projects-process article { grid-template-columns: 45px 1fr; gap: 18px; }
    .projects-process article > p { grid-column: 2; }
}
@media (max-width: 520px) {
    .projects-hero > div { right: 22px; bottom: 48px; left: 22px; }
    .projects-hero h1 { font-size: 44px; }
    .projects-intro,
    .projects-process { width: calc(100% - 40px); }
    .projects-intro { padding-top: 70px; }
    .projects-process article { grid-template-columns: 30px 1fr; padding: 28px 0; }
    .projects-process h3 { font-size: 23px; }
}

/* Customization page */
.custom-main { display: block; padding-top: 0; background: #faf8f5; }
.custom-hero { position: relative; height: 82vh; min-height: 620px; overflow: hidden; color: #fffaf3; }
.custom-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.custom-hero > span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,16,10,.62), rgba(26,16,10,.05) 66%); }
.custom-hero > div { position: absolute; z-index: 1; right: 7vw; bottom: 8vh; left: 7vw; }
.custom-hero p { margin: 0 0 15px; color: #efc49f; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .24em; text-transform: uppercase; }
.custom-hero h1 { max-width: 820px; margin: 0; font: 500 clamp(46px, 6.3vw, 86px)/.95 Georgia, serif; letter-spacing: -.048em; }
.custom-hero h1 em { color: #e3a675; font-weight: inherit; }
.custom-intro { width: min(1220px, 100%); min-height: 720px; margin: 0 auto; display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: stretch; background: #faf8f5; }
.custom-intro-image { min-height: 720px; margin: 0; overflow: hidden; }
.custom-intro-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.custom-intro-copy { padding: clamp(65px, 8vw, 115px) clamp(38px, 7vw, 92px); align-self: center; }
.custom-kicker { margin: 0 0 17px; color: #ad673a; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.custom-intro-copy h2,
.custom-options h2 { margin: 0 0 34px; color: #3f291e; font: 500 clamp(40px, 5.1vw, 68px)/.99 Georgia, serif; letter-spacing: -.045em; text-transform: none; }
.custom-intro-copy h2 em,
.custom-options h2 em { color: #ad673a; font-weight: inherit; }
.custom-intro-copy > p:not(.custom-kicker) { max-width: 600px; margin: 0 0 19px; color: #80614e; font: 15px/1.75 Arial, sans-serif; }
.custom-enquire { display: inline-flex; gap: 22px; align-items: center; margin-top: 19px; padding-bottom: 6px; border-bottom: 1px solid rgba(112,65,37,.4); color: #704125; font: 600 10px/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.custom-options { padding: clamp(90px, 11vw, 150px) max(6vw, 24px); background: #d7d0ca; }
.custom-options > header { width: min(1120px, 100%); margin: 0 auto 62px; text-align: center; }
.custom-options h2 { margin-bottom: 0; font-size: clamp(36px, 4.6vw, 62px); }
.custom-option-grid { width: min(1080px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.custom-option-grid article { position: relative; padding: clamp(35px, 5vw, 58px); background: #faf8f5; }
.custom-option-grid article > span { position: absolute; top: 28px; right: 30px; color: rgba(112,65,37,.34); font: 600 10px/1 Arial, sans-serif; letter-spacing: .15em; }
.custom-option-grid h3 { margin: 0 0 11px; color: #5c3724; font: 500 clamp(24px, 2.7vw, 34px)/1.15 Georgia, serif; }
.custom-option-grid article > p { max-width: 390px; margin: 0 0 27px; color: #8d6d55; font: 14px/1.65 Arial, sans-serif; }
.custom-option-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; margin: 0; padding: 0; list-style: none; }
.custom-option-grid li { position: relative; padding: 12px 0 12px 18px; border-top: 1px solid rgba(112,65,37,.13); color: #704125; font: 13px/1.35 Arial, sans-serif; }
.custom-option-grid li::before { content: ""; position: absolute; top: 18px; left: 0; width: 7px; height: 1px; background: #ad673a; }
.custom-closing { width: min(820px, 100%); margin: 68px auto 0; color: #704125; text-align: center; font: 500 clamp(21px, 2.2vw, 30px)/1.45 Georgia, serif; }

@media (max-width: 860px) {
    .custom-intro { grid-template-columns: 1fr; }
    .custom-intro-image { min-height: 620px; }
    .custom-intro-copy { padding: 68px 35px 82px; }
    .custom-option-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .custom-hero { height: 70vh; min-height: 520px; }
    .custom-hero > div { right: 22px; bottom: 48px; left: 22px; }
    .custom-hero h1 { font-size: 45px; }
    .custom-intro-image { min-height: 470px; }
    .custom-intro-copy { padding: 52px 22px 65px; }
    .custom-intro-copy h2 { font-size: 43px; }
    .custom-options { padding-left: 20px; padding-right: 20px; }
    .custom-options h2 { font-size: 36px; }
    .custom-option-grid article { padding: 34px 24px; }
    .custom-option-grid ul { grid-template-columns: 1fr; }
    .custom-closing { margin-top: 48px; }
}

/* Loom-inspired support layout */
.support-main { display: block; background: #f5f0e8; }
.support-hero { position: relative; height: 85vh; min-height: 620px; overflow: hidden; }
.support-hero img { width: 100%; height: 100%; display: block; object-fit: cover; }
.support-hero span { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,15,10,.42), rgba(24,15,10,.03) 60%); }
.support-help { padding: 54px 24px 56px; }
.support-help > h1,
.support-faq > h2 { margin: 0 0 42px; color: #704125; text-align: center; font: 700 clamp(25px, 2.6vw, 34px)/1.15 Georgia, serif; letter-spacing: .015em; text-transform: uppercase; }
.support-welcome {
    width: min(780px, 100%);
    margin: 0 auto 48px;
    color: #704125;
    text-align: center;
    font: 500 clamp(22px, 2.5vw, 34px)/1.35 Georgia, serif;
    letter-spacing: -.015em;
}
.support-cards { width: min(1050px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.support-card { min-height: 330px; padding: 38px 30px 34px; display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(255,255,255,.58); border-radius: 7px; }
.support-card > svg { width: 34px; height: 34px; margin-bottom: 22px; fill: none; stroke: rgba(112,65,37,.45); stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.support-card h2 { margin: 0 0 14px; color: #704125; font: 700 19px/1.2 Georgia, serif; letter-spacing: .035em; text-transform: uppercase; }
.support-card > p { max-width: 280px; margin: 0 auto 18px; color: rgba(112,65,37,.65); font: 13px/1.7 Arial, sans-serif; }
.support-links { display: flex; flex-direction: column; gap: 5px; margin: 0 0 19px; color: rgba(112,65,37,.78); font: 13px/1.35 Arial, sans-serif; }
.support-links a:hover { color: #704125; }
.support-action { margin-top: auto; padding-bottom: 3px; border-bottom: 1px solid rgba(112,65,37,.32); color: #704125; font: 600 10px/1.2 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; transition: border-color .2s ease; }
.support-action:hover { border-color: #704125; }
.support-faq { padding: 20px 24px 110px; }
.support-faq > h2 { margin-bottom: 42px; }
.support-faq-list { width: min(1020px, 100%); max-width: none; margin: 0 auto; }
.support-faq-list details { border-color: rgba(112,65,37,.17); }
.support-faq-list summary { grid-template-columns: 1fr 24px; gap: 20px; padding: 25px 0; color: #704125; font: 700 clamp(13px, 1.35vw, 16px)/1.45 Arial, sans-serif; letter-spacing: .075em; text-transform: uppercase; }
.support-faq-list summary > span { display: none; }
.support-faq-list details p { max-width: 850px; margin: -2px 48px 30px 0; color: rgba(112,65,37,.7); font: 14px/1.8 Arial, sans-serif; }

@media (max-width: 850px) {
    .support-hero { height: 70vh; min-height: 520px; }
    .support-cards { grid-template-columns: 1fr; max-width: 520px; }
    .support-card { min-height: 0; }
}
@media (max-width: 560px) {
    .support-hero { height: 68vh; min-height: 480px; }
    .support-help { padding: 44px 18px 46px; }
    .support-help > h1,
    .support-faq > h2 { margin-bottom: 32px; font-size: 24px; }
    .support-card { padding: 34px 24px 30px; }
    .support-faq { padding: 12px 20px 78px; }
    .support-faq-list summary { padding: 22px 0; font-size: 12px; }
.support-faq-list details p { margin-right: 24px; }
}

@media (hover: hover) and (pointer: fine) {
    .product-slider-stage > img[data-slider-main] { cursor: zoom-in; will-change: transform; }
    .product-slider-stage > img[data-slider-main].is-zoomed {
        cursor: zoom-out;
        transform: scale(2.35);
        transition: transform .18s ease-out, opacity .28s ease;
    }
}

/* B2B registration */
.b2b-page { background: #f4efe8; color: #3c2519; }
.b2b-main { display: block; }
.b2b-visual { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; color: #fffaf3; }
.b2b-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b2b-visual > span { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(25,15,10,.73),rgba(25,15,10,.1) 72%),linear-gradient(0deg,rgba(25,15,10,.55),transparent 55%); }
.b2b-visual > div { position: relative; z-index: 1; width: min(1180px,88vw); margin: 0 auto; padding: 190px 0 76px; }
.b2b-visual p,.b2b-intro > p,.b2b-form-heading > p { margin: 0 0 16px; color: #e0a374; font: 600 10px/1.2 var(--font-body); letter-spacing: .23em; text-transform: uppercase; }
.b2b-visual h1 { max-width: 850px; margin: 0 0 25px; font: 400 clamp(48px,6.2vw,86px)/.95 Georgia,serif; letter-spacing: -.045em; }
.b2b-visual h1 em,.b2b-intro h2 em { color: #e1a171; font-weight: inherit; }
.b2b-visual > div > span { display: block; max-width: 570px; color: rgba(255,250,243,.8); font: 15px/1.7 var(--font-body); }
.b2b-registration { width: min(1200px,calc(100% - 48px)); margin: 0 auto; padding: clamp(90px,10vw,145px) 0; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px,8vw,105px); align-items: start; }
.b2b-intro h2 { margin: 0 0 30px; color: #262626; font: 400 clamp(42px,5vw,68px)/1 Georgia,serif; letter-spacing: -.045em; }
.b2b-intro > span { display: block; color: #80614e; font: 15px/1.8 var(--font-body); }
.b2b-intro ul { margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(108,61,38,.18); }
.b2b-intro li { padding: 15px 0 15px 18px; border-bottom: 1px solid rgba(108,61,38,.18); color: #704125; font-size: 13px; position: relative; }
.b2b-intro li::before { content: ""; position: absolute; left: 0; top: 23px; width: 7px; height: 1px; background: #ad673a; }
.b2b-form { padding: clamp(35px,5vw,62px); background: #DFDACF; box-shadow: 0 24px 70px rgba(68,42,27,.08); }
.b2b-form-heading h2 { margin: 0 0 38px; color: #4D403A; font: 400 clamp(30px,3.5vw,44px)/1.1 Georgia,serif; }
.b2b-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 26px; }
.b2b-fields label { display: grid; gap: 10px; margin: 0; }
.b2b-fields label.full { grid-column: 1/-1; }
.b2b-fields label > span { color: #80553d; font: 600 9px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; }
.b2b-fields input,.b2b-fields select,.b2b-fields textarea { width: 100%; min-height: 43px; padding: 7px 0 11px; border: 0; border-bottom: 1px solid rgba(91,54,34,.3); border-radius: 0; outline: 0; color: #37251c; background: transparent; font: 15px/1.5 var(--font-body); resize: vertical; }
.b2b-fields input:focus,.b2b-fields select:focus,.b2b-fields textarea:focus { border-color: #ad673a; }
.b2b-message { margin: -15px 0 28px; padding: 12px 15px; color: #833b2d; background: rgba(153,70,51,.1); font-size: 13px; }
.b2b-submit { margin-top: 35px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.b2b-submit button { border: 0; padding: 16px 22px; background: #704125; color: #fffaf3; font: 600 9px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.b2b-submit button span { margin-left: 18px; }
.b2b-submit p { margin: 0; color: #80614e; font-size: 12px; }
.b2b-submit a { color: #704125; border-bottom: 1px solid rgba(112,65,37,.35); }
@media(max-width:850px){.b2b-registration{grid-template-columns:1fr}.b2b-visual{min-height:620px}}
@media(max-width:560px){.b2b-visual>div{width:calc(100% - 40px);padding-bottom:48px}.b2b-visual h1{font-size:44px}.b2b-registration{width:calc(100% - 40px);padding:70px 0}.b2b-form{padding:34px 24px}.b2b-fields{grid-template-columns:1fr}.b2b-fields label.full{grid-column:auto}.b2b-submit{align-items:flex-start;flex-direction:column}}

.about-row[id] { scroll-margin-top: 125px; }
@media(max-width:850px){.about-row[id]{scroll-margin-top:90px}}
