        :root {
            --ink: #1d1a17;
            --muted: #756e66;
            --line: #dfd9d1;
            --paper: #f7f3ee;
            --white: #fffdf9;
            --accent: #8b6f4e;
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            color: var(--ink);
            background: var(--white);
            font-family: Inter, Arial, sans-serif;
            font-size: 15px;
            line-height: 1.6;
        }

        body.drawer-open {
            overflow: hidden;
        }

        img { display: block; width: 100%; height: 100%; object-fit: cover; }
        a { color: inherit; text-decoration: none; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 40;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
            min-height: 78px;
            padding: 0 42px;
            background: rgba(255, 253, 249, 0.94);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(16px);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: clamp(14px, 1.6vw, 26px);
            color: #3b352f;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .nav:last-child { justify-content: flex-end; }
        .nav a.active { border-bottom: 1px solid currentColor; }

        .header-left {
            justify-self: start;
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .desktop-nav {
            min-width: 0;
        }

        .header-action {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: max-content;
            border: 0;
            background: transparent;
            color: var(--ink);
            font: inherit;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            cursor: pointer;
        }

        .menu-toggle {
            display: none;
            justify-self: start;
            padding: 0;
        }

        .menu-icon {
            display: grid;
            gap: 5px;
            width: 22px;
        }

        .menu-icon span {
            display: block;
            height: 1px;
            background: currentColor;
        }

        .menu-label {
            display: inline-block;
        }

        .header-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: clamp(14px, 1.6vw, 26px);
            min-width: 0;
        }

        .brand {
            font-family: "Cormorant Garamond", Georgia, serif;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 500;
            letter-spacing: .08em;
            text-align: center;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .search-wrap {
            position: relative;
        }

        .search-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: 0;
            background: transparent;
            color: inherit;
            cursor: pointer;
        }

        .search-toggle svg {
            width: 19px;
            height: 19px;
            stroke: currentColor;
        }

        .search-panel {
            position: absolute;
            top: 34px;
            right: 0;
            width: min(360px, calc(100vw - 44px));
            padding: 16px;
            background: var(--white);
            border: 1px solid var(--line);
            box-shadow: 0 18px 50px rgba(29,26,23,.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: .2s ease;
        }

        .search-panel.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .search-panel input {
            width: 100%;
            height: 42px;
            padding: 0 12px;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            font: inherit;
        }

        .search-results {
            display: grid;
            gap: 10px;
            margin-top: 12px;
        }

        .search-result {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid var(--line);
            text-transform: none;
            letter-spacing: 0;
        }

        .search-result strong {
            display: block;
            font-size: 14px;
        }

        .search-result span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 400;
        }

        .drawer-overlay {
            position: fixed;
            inset: 0;
            z-index: 45;
            background: rgba(29, 26, 23, .28);
            opacity: 0;
            visibility: hidden;
            transition: opacity .25s ease, visibility .25s ease;
        }

        .drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .side-drawer {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 50;
            width: min(420px, 88vw);
            height: 100vh;
            padding: 28px 34px 34px;
            background: var(--white);
            border-right: 1px solid var(--line);
            box-shadow: 24px 0 70px rgba(29, 26, 23, .14);
            transform: translateX(-100%);
            transition: transform .28s ease;
            overflow-y: auto;
        }

        .side-drawer.open {
            transform: translateX(0);
        }

        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--line);
        }

        .drawer-title {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .drawer-close {
            width: 36px;
            height: 36px;
            justify-content: center;
            padding: 0;
            font-size: 24px;
            line-height: 1;
            letter-spacing: 0;
        }

        .drawer-nav {
            display: grid;
            padding: 26px 0;
        }

        .drawer-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 54px;
            border-bottom: 1px solid var(--line);
            color: var(--ink);
            font-family: "Cormorant Garamond", Georgia, serif;
            font-size: 28px;
            font-weight: 500;
            line-height: 1.1;
        }

        .drawer-nav a::after {
            content: "";
            width: 8px;
            height: 8px;
            border-top: 1px solid currentColor;
            border-right: 1px solid currentColor;
            transform: rotate(45deg);
        }

        .drawer-nav a.active {
            color: var(--accent);
        }

        .drawer-contact {
            display: grid;
            gap: 8px;
            color: var(--muted);
            font-size: 14px;
        }

        .drawer-contact strong {
            color: var(--ink);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .hero {
            position: relative;
            min-height: calc(100vh - 78px);
            display: grid;
            align-items: end;
            padding: 72px 42px;
            color: #fff;
            isolation: isolate;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background: url("/website/images/slider/slider-decor1.jpg") center / cover no-repeat;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(90deg, rgba(20, 16, 12, .62), rgba(20, 16, 12, .18) 58%, rgba(20, 16, 12, .08));
        }

        .hero-content {
            width: min(720px, 100%);
        }

        .eyebrow {
            margin: 0 0 18px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        h1, h2, h3 {
            margin: 0;
            font-family: "Cormorant Garamond", Georgia, serif;
            font-weight: 500;
            line-height: .96;
        }

        h1 { font-size: clamp(54px, 8vw, 112px); }
        h2 { font-size: clamp(38px, 5.8vw, 76px); }
        h3 { font-size: clamp(25px, 3vw, 40px); }

        .hero p {
            width: min(520px, 100%);
            margin: 24px 0 34px;
            color: rgba(255,255,255,.9);
            font-size: 17px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 28px;
            border: 1px solid currentColor;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            transition: .2s ease;
        }

        .btn:hover {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
        }

        .hero .btn:hover {
            background: #fff;
            border-color: #fff;
            color: var(--ink);
        }

        .page-hero {
            padding: clamp(74px, 10vw, 140px) 42px;
            background: var(--paper);
            border-bottom: 1px solid var(--line);
        }

        .page-hero-inner {
            max-width: 1040px;
            margin: 0 auto;
        }

        .page-hero p {
            max-width: 720px;
            margin: 24px 0 0;
            color: var(--muted);
            font-size: 18px;
        }

        .page-content {
            max-width: 1040px;
            margin: 0 auto;
            padding: clamp(56px, 8vw, 100px) 42px;
        }

        .page-content p {
            color: var(--muted);
            font-size: 18px;
        }

        .content-section {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 38px;
            align-items: center;
            margin-top: 54px;
            padding-top: 54px;
            border-top: 1px solid var(--line);
        }

        .content-section:nth-of-type(even) .content-section-media {
            order: 2;
        }

        .content-section-media {
            min-height: 360px;
            background: var(--paper);
        }

        .content-section-copy h2 {
            margin-bottom: 20px;
            font-size: clamp(32px, 4vw, 56px);
        }

        .content-section-copy p {
            margin: 0 0 16px;
        }

        .contact-panel {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            margin-top: 34px;
        }

        .contact-box {
            padding: 28px;
            border: 1px solid var(--line);
            background: var(--white);
        }

        .contact-box h3 {
            margin-bottom: 10px;
            font-family: Inter, Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .contact-box p, .contact-box a {
            margin: 0;
            color: var(--muted);
        }

        .custom-rug-options {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 58px;
        }

        .custom-rug-option {
            min-height: 240px;
            padding: 28px 22px;
            border: 1px solid var(--line);
            background: var(--paper);
        }

        .custom-rug-option span {
            display: block;
            margin-bottom: 52px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .custom-rug-option h3 {
            margin-bottom: 14px;
            font-family: Inter, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.35;
        }

        .custom-rug-option p {
            margin: 0;
            color: var(--muted);
            font-size: 15px;
        }

        .custom-rug-process {
            display: grid;
            grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
            gap: clamp(32px, 5vw, 72px);
            align-items: start;
            margin-top: 64px;
            padding: 58px;
            border: 1px solid var(--line);
            background: var(--ink);
            color: var(--white);
        }

        .custom-rug-process h2 {
            font-size: clamp(34px, 4.6vw, 64px);
        }

        .custom-rug-accordion {
            border-top: 1px solid rgba(255,255,255,.18);
        }

        .custom-rug-accordion-item {
            border-bottom: 1px solid rgba(255,255,255,.18);
        }

        .custom-rug-accordion-item summary {
            display: grid;
            grid-template-columns: 74px minmax(0, 1fr) 24px;
            align-items: center;
            gap: 18px;
            padding: 24px 0;
            cursor: pointer;
            list-style: none;
        }

        .custom-rug-accordion-item summary::-webkit-details-marker {
            display: none;
        }

        .custom-rug-accordion-item .step-number {
            color: rgba(255,255,255,.42);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
        }

        .custom-rug-accordion-item .step-title {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }

        .custom-rug-accordion-item .step-icon {
            position: relative;
            width: 18px;
            height: 18px;
        }

        .custom-rug-accordion-item .step-icon::before,
        .custom-rug-accordion-item .step-icon::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 18px;
            height: 1px;
            background: rgba(255,255,255,.78);
            transition: transform .24s ease;
        }

        .custom-rug-accordion-item .step-icon::after {
            transform: rotate(90deg);
        }

        .custom-rug-accordion-item[open] .step-icon::after {
            transform: rotate(0deg);
        }

        .custom-rug-accordion-item .step-content {
            padding: 0 42px 24px 92px;
        }

        .custom-rug-accordion-item .step-content p {
            max-width: 560px;
            margin: 0;
            color: rgba(255,255,255,.72);
            font-size: 15px;
            line-height: 1.8;
        }

        .custom-rug-cta {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: end;
            gap: 34px;
            margin-top: 64px;
            padding: clamp(32px, 5vw, 56px);
            border: 1px solid var(--line);
            background: linear-gradient(135deg, var(--paper), #fffaf4);
        }

        .custom-rug-cta h2 {
            margin-bottom: 16px;
            font-size: clamp(34px, 4.8vw, 64px);
        }

        .custom-rug-cta p:last-child {
            margin: 0;
            max-width: 620px;
        }

        .custom-rug-cta .btn {
            border-color: var(--ink);
            background: var(--ink);
            color: var(--white);
            white-space: nowrap;
        }

        .contact-form-map {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 28px;
            margin-top: 34px;
            align-items: stretch;
        }

        .contact-form-card,
        .contact-map-card {
            min-width: 0;
            border: 1px solid var(--line);
            background: var(--white);
        }

        .contact-form-card {
            padding: clamp(28px, 4vw, 44px);
        }

        .contact-form-card h2 {
            margin-bottom: 24px;
            font-size: clamp(32px, 4vw, 56px);
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form .full {
            grid-column: 1 / -1;
        }

        .contact-form label {
            display: block;
            margin-bottom: 7px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            font: inherit;
        }

        .contact-form input {
            height: 46px;
            padding: 0 12px;
        }

        .contact-form textarea {
            padding: 12px;
            resize: vertical;
        }

        .contact-form small {
            display: block;
            margin-top: 5px;
            color: #a33;
        }

        .contact-form button {
            grid-column: 1 / -1;
            width: max-content;
            background: var(--ink);
            color: var(--white);
        }

        .contact-map-card {
            min-height: 100%;
            overflow: hidden;
            background: var(--paper);
        }

        .contact-map-card iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 560px;
            border: 0;
        }

        .section {
            padding: clamp(70px, 9vw, 124px) 42px;
        }

        .section.soft { background: var(--paper); }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 28px;
            max-width: 1360px;
            margin: 0 auto 38px;
        }

        .section-head p {
            max-width: 440px;
            margin: 0;
            color: var(--muted);
        }

        .grid {
            display: grid;
            max-width: 1360px;
            margin: 0 auto;
            gap: 22px;
        }

        .section-carousel {
            max-width: 1360px;
            margin: 0 auto;
        }

        .carousel-window {
            overflow: hidden;
        }

        .collections {
            display: flex;
            gap: 22px;
            margin: 0;
            transition: transform .42s ease;
            will-change: transform;
        }

        .collection-card {
            position: relative;
            flex: 0 0 calc((100% - 44px) / 3);
            min-height: 520px;
            overflow: hidden;
            background: #ddd;
        }

        .collection-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.54));
        }

        .collection-card .label {
            position: absolute;
            left: 26px;
            right: 26px;
            bottom: 24px;
            z-index: 1;
            color: #fff;
        }

        .collection-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 24px;
        }

        .carousel-buttons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .carousel-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            background: var(--white);
            color: var(--ink);
            cursor: pointer;
        }

        .carousel-btn:disabled {
            opacity: .42;
            cursor: default;
        }

        .carousel-btn svg {
            width: 17px;
            height: 17px;
            stroke: currentColor;
        }

        .carousel-dots {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .carousel-dot {
            width: 7px;
            height: 7px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: #c8beb3;
            cursor: pointer;
        }

        .carousel-dot.active {
            background: var(--ink);
        }

        .label span {
            display: block;
            margin-bottom: 7px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .product-grid {
            display: flex;
            gap: 22px;
            margin: 0;
            transition: transform .42s ease;
            will-change: transform;
        }

        .product {
            flex: 0 0 calc((100% - 66px) / 4);
            border-bottom: 1px solid var(--line);
            padding-bottom: 18px;
        }

        .product-img {
            aspect-ratio: 4 / 5;
            margin-bottom: 18px;
            background: var(--paper);
            overflow: hidden;
        }

        .product h3 {
            margin-bottom: 6px;
            font-family: Inter, Arial, sans-serif;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.35;
        }

        .product p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .collection-title {
            position: relative;
            min-height: 310px;
            display: grid;
            place-items: center;
            padding: 70px 42px;
            color: #fff;
            text-align: center;
            isolation: isolate;
        }

        .collection-title::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background: var(--collection-hero) center / cover no-repeat;
        }

        .collection-title::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: rgba(22, 18, 14, .48);
        }

        .collection-title h1 {
            margin-bottom: 20px;
            font-size: clamp(48px, 7vw, 94px);
        }

        .collection-title nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: rgba(255,255,255,.86);
            font-size: 13px;
        }

        .collection-title strong {
            color: #fff;
            font-weight: 500;
        }

        .collection-categories {
            padding: 48px 42px 34px;
        }

        .collection-mini-track {
            display: flex;
            gap: 20px;
            margin: 0;
            transition: transform .42s ease;
            will-change: transform;
        }

        .collection-mini-card {
            position: relative;
            flex: 0 0 calc((100% - 80px) / 5);
            min-height: 190px;
            overflow: hidden;
            background: var(--paper);
        }

        .collection-mini-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.48));
        }

        .collection-mini-card span {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 16px;
            z-index: 1;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .collection-mini-card.active {
            outline: 2px solid var(--ink);
            outline-offset: -2px;
        }

        .collection-shop {
            max-width: 1360px;
            margin: 0 auto;
            padding: 28px 42px 98px;
        }

        .collection-shop-control {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 28px;
            margin-bottom: 36px;
            padding: 28px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .collection-shop-control h2 {
            font-size: clamp(36px, 5vw, 64px);
        }

        .collection-shop-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--muted);
            font-size: 13px;
        }

        .collection-shop-meta span {
            display: inline-flex;
            min-height: 34px;
            align-items: center;
            padding: 0 14px;
            border: 1px solid var(--line);
            background: var(--white);
        }

        .collection-filter-bar {
            display: grid;
            grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
            align-items: center;
            gap: 28px;
            margin-bottom: 34px;
        }

        .collection-filter-left {
            display: flex;
            align-items: center;
            gap: 24px;
            min-width: 0;
        }

        .collection-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 22px;
            border: 1px solid var(--line);
            background: var(--white);
            color: var(--ink);
            font: inherit;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: inset 0 0 0 1px rgba(29,26,23,.03);
        }

        .collection-filter-btn svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
        }

        .collection-sale-note {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #2f2b27;
            font: inherit;
            white-space: nowrap;
            cursor: pointer;
        }

        .collection-sale-note span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border: 2px solid #bab7b0;
            border-radius: 50%;
            color: #9c9992;
            font-size: 18px;
            line-height: 1;
        }

        .collection-sale-note p {
            margin: 0;
            font-size: 17px;
            font-weight: 600;
        }

        .collection-sale-note.active span {
            border-color: var(--ink);
            background: var(--ink);
            color: var(--white);
        }

        .collection-layout-switcher {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .collection-layout-switcher button {
            display: grid;
            gap: 4px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        }

        .collection-layout-switcher button:nth-child(1) {
            grid-template-columns: repeat(2, 8px);
        }

        .collection-layout-switcher button:nth-child(2) {
            grid-template-columns: repeat(2, 7px);
        }

        .collection-layout-switcher button:nth-child(3) {
            grid-template-columns: repeat(3, 7px);
        }

        .collection-layout-switcher button:nth-child(4) {
            grid-template-columns: repeat(4, 7px);
        }

        .collection-layout-switcher button:nth-child(5) {
            grid-template-columns: repeat(5, 7px);
        }

        .collection-layout-switcher span {
            width: 7px;
            height: 7px;
            border: 2px solid var(--ink);
            border-radius: 50%;
        }

        .collection-layout-switcher button.active span {
            background: var(--ink);
        }

        .collection-sort {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 18px;
        }

        .collection-sort > span {
            color: #2f2b27;
            font-size: 17px;
            font-weight: 600;
            white-space: nowrap;
        }

        .collection-sort-dropdown {
            position: relative;
            min-width: 250px;
        }

        .collection-sort-dropdown > button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            width: 100%;
            min-width: 250px;
            min-height: 54px;
            padding: 0 18px 0 20px;
            border: 1px solid var(--line);
            background: var(--white);
            color: var(--ink);
            font: inherit;
            font-size: 16px;
            cursor: pointer;
        }

        .collection-sort-dropdown svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            transition: transform .2s ease;
        }

        .collection-sort-dropdown.open svg {
            transform: rotate(180deg);
        }

        .collection-sort-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            z-index: 12;
            width: 100%;
            min-width: 250px;
            padding: 8px;
            border: 1px solid var(--line);
            background: var(--white);
            box-shadow: 0 18px 50px rgba(29,26,23,.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: .2s ease;
        }

        .collection-sort-dropdown.open .collection-sort-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .collection-sort-menu button {
            display: block;
            width: 100%;
            min-height: 40px;
            padding: 0 12px;
            border: 0;
            background: transparent;
            color: var(--muted);
            font: inherit;
            font-size: 14px;
            text-align: left;
            cursor: pointer;
        }

        .collection-sort-menu button:hover,
        .collection-sort-menu button.active {
            background: var(--paper);
            color: var(--ink);
        }

        .collection-product-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 34px 22px;
        }

        .collection-product-grid[data-layout="2"] {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .collection-product-grid[data-layout="3"] {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .collection-product-grid[data-layout="5"] {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }

        .collection-product-grid[data-layout="list"] {
            grid-template-columns: 1fr;
        }

        .collection-product-grid[data-layout="list"] .collection-product-card {
            display: grid;
            grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
            gap: 24px;
            align-items: center;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--line);
        }

        .collection-product-grid[data-layout="list"] .collection-product-image {
            margin-bottom: 0;
        }

        .collection-product-card {
            min-width: 0;
        }

        .collection-product-card.hidden {
            display: none !important;
        }

        .collection-product-image {
            position: relative;
            display: block;
            aspect-ratio: 4 / 5;
            margin-bottom: 16px;
            background: var(--paper);
            overflow: hidden;
        }

        .collection-product-image img {
            transition: transform .36s ease;
        }

        .collection-product-card:hover .collection-product-image img {
            transform: scale(1.04);
        }

        .collection-product-info p {
            margin: 0 0 6px;
            color: var(--muted);
            font-size: 12px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .collection-product-info h3 {
            margin-bottom: 8px;
            font-family: Inter, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.35;
        }

        .collection-product-info > span {
            display: block;
            margin-bottom: 14px;
            color: var(--muted);
            font-size: 14px;
        }

        .collection-enquire-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 42px;
            border: 1px solid var(--ink);
            background: var(--ink);
            color: var(--white);
            font-family: inherit;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: .2s ease;
        }

        .collection-enquire-btn:hover {
            background: transparent;
            color: var(--ink);
        }

        .collection-pagination {
            margin-top: 42px;
        }

        .collection-empty {
            padding: 60px 24px;
            border: 1px solid var(--line);
            background: var(--paper);
            text-align: center;
        }

        .collection-no-results {
            padding: 52px 24px;
            border: 1px solid var(--line);
            background: var(--paper);
            text-align: center;
        }

        .collection-no-results h2 {
            margin-bottom: 10px;
            font-size: clamp(30px, 4vw, 48px);
        }

        .collection-no-results p {
            margin: 0;
            color: var(--muted);
        }

        .collection-empty h2 {
            margin-bottom: 12px;
            font-size: clamp(34px, 4vw, 56px);
        }

        .collection-empty p {
            margin: 0 auto 24px;
            max-width: 520px;
            color: var(--muted);
        }

        .filter-drawer-overlay {
            position: fixed;
            inset: 0;
            z-index: 70;
            background: rgba(29, 26, 23, .34);
            opacity: 0;
            visibility: hidden;
            transition: opacity .25s ease, visibility .25s ease;
        }

        .filter-drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .filter-drawer {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 75;
            width: min(430px, 90vw);
            height: 100vh;
            padding: 28px 30px 34px;
            background: var(--white);
            border-right: 1px solid var(--line);
            box-shadow: 24px 0 70px rgba(29, 26, 23, .16);
            transform: translateX(-100%);
            transition: transform .28s ease;
            overflow-y: auto;
        }

        .filter-drawer.open {
            transform: translateX(0);
        }

        .filter-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--line);
        }

        .filter-drawer-head h2 {
            font-family: Inter, Arial, sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.2;
        }

        .filter-drawer-head button {
            width: 34px;
            height: 34px;
            border: 0;
            background: transparent;
            color: var(--ink);
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .filter-group {
            padding: 26px 0;
            border-bottom: 1px solid var(--line);
        }

        .filter-group h3 {
            margin-bottom: 16px;
            font-family: Inter, Arial, sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .filter-group a,
        .filter-group label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 34px;
            margin: 0 0 8px;
            color: var(--muted);
            font-size: 15px;
        }

        .filter-group a.active {
            color: var(--ink);
            font-weight: 600;
        }

        .filter-group input {
            margin-right: 8px;
        }

        .filter-apply-btn {
            width: 100%;
            margin-top: 26px;
            background: var(--ink);
            color: var(--white);
        }

        .product-breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 1360px;
            margin: 0 auto;
            padding: 28px 42px;
            color: var(--muted);
            font-size: 13px;
        }

        .product-breadcrumb strong {
            color: var(--ink);
            font-weight: 500;
        }

        .product-detail {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
            gap: clamp(38px, 6vw, 84px);
            max-width: 1360px;
            margin: 0 auto;
            padding: 24px 42px 78px;
        }

        .product-media {
            position: sticky;
            top: 104px;
            display: grid;
            grid-template-columns: 92px minmax(0, 1fr);
            gap: 18px;
            align-self: start;
        }

        .product-thumbs {
            display: grid;
            gap: 12px;
            align-content: start;
        }

        .product-thumb {
            aspect-ratio: 1;
            padding: 0;
            border: 1px solid transparent;
            background: var(--paper);
            cursor: pointer;
            overflow: hidden;
        }

        .product-thumb.active {
            border-color: var(--ink);
        }

        .product-main-image {
            display: block;
            aspect-ratio: 4 / 5;
            background: var(--paper);
            overflow: hidden;
        }

        .product-summary h1 {
            margin-bottom: 16px;
            font-size: clamp(42px, 5.4vw, 74px);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
            color: var(--muted);
            font-size: 13px;
        }

        .product-rating span {
            color: var(--accent);
            letter-spacing: .08em;
        }

        .product-price {
            margin-bottom: 18px;
            font-size: 22px;
            font-weight: 500;
        }

        .product-summary > p {
            margin: 0 0 28px;
            color: var(--muted);
            font-size: 16px;
        }

        .product-options {
            display: grid;
            gap: 24px;
            padding: 28px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .product-options label, .product-quantity label {
            display: block;
            margin-bottom: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .swatches, .size-options {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .swatch {
            width: 34px;
            height: 34px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: var(--swatch);
            cursor: pointer;
        }

        .swatch.active {
            outline: 1px solid var(--ink);
            outline-offset: 3px;
        }

        .size-options button {
            min-width: 54px;
            min-height: 42px;
            padding: 0 16px;
            border: 1px solid var(--line);
            background: transparent;
            color: var(--ink);
            cursor: pointer;
        }

        .size-options button.active {
            border-color: var(--ink);
            background: var(--ink);
            color: var(--white);
        }

        .product-quantity {
            padding: 26px 0 10px;
        }

        .quantity-control {
            display: inline-grid;
            grid-template-columns: 42px 58px 42px;
            min-height: 42px;
            border: 1px solid var(--line);
        }

        .quantity-control button, .quantity-control input {
            border: 0;
            background: transparent;
            color: var(--ink);
            font: inherit;
            text-align: center;
        }

        .quantity-control button {
            cursor: pointer;
        }

        .product-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 24px 0;
        }

        .product-actions .primary {
            background: var(--ink);
            color: var(--white);
        }

        .product-help {
            display: grid;
            gap: 12px;
            padding: 22px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .product-help div {
            display: grid;
            grid-template-columns: 130px 1fr;
            gap: 16px;
            color: var(--muted);
            font-size: 14px;
        }

        .product-help strong {
            color: var(--ink);
        }

        .product-meta {
            display: grid;
            gap: 8px;
            margin: 22px 0 0;
            padding: 0;
            color: var(--muted);
            font-size: 14px;
            list-style: none;
        }

        .product-meta span {
            color: var(--ink);
            font-weight: 600;
        }

        .product-tabs {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 42px 86px;
        }

        .product-tab-menu {
            display: flex;
            gap: 28px;
            border-bottom: 1px solid var(--line);
            overflow-x: auto;
        }

        .product-tab-menu button {
            min-height: 56px;
            padding: 0;
            border: 0;
            border-bottom: 1px solid transparent;
            background: transparent;
            color: var(--muted);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            white-space: nowrap;
            cursor: pointer;
        }

        .product-tab-menu button.active {
            border-bottom-color: var(--ink);
            color: var(--ink);
        }

        .product-tab-panel {
            display: none;
            max-width: 820px;
            padding-top: 30px;
        }

        .product-tab-panel.active {
            display: block;
        }

        .product-tab-panel h2 {
            margin-bottom: 16px;
            font-size: clamp(32px, 4vw, 52px);
        }

        .product-tab-panel p {
            margin: 0;
            color: var(--muted);
            font-size: 16px;
        }

        .lead-modal {
            position: fixed;
            inset: 0;
            z-index: 80;
            display: grid;
            place-items: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity .2s ease, visibility .2s ease;
        }

        .lead-modal.open {
            opacity: 1;
            visibility: visible;
        }

        .lead-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(29, 26, 23, .42);
        }

        .lead-modal-panel {
            position: relative;
            width: min(680px, 100%);
            max-height: calc(100vh - 40px);
            padding: 38px;
            background: var(--white);
            overflow-y: auto;
            box-shadow: 0 28px 80px rgba(29, 26, 23, .18);
        }

        .lead-modal-panel h2 {
            margin-bottom: 24px;
            font-size: clamp(34px, 4.2vw, 58px);
        }

        .lead-modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 34px;
            height: 34px;
            border: 0;
            background: transparent;
            color: var(--ink);
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
        }

        .lead-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .lead-form .full {
            grid-column: 1 / -1;
        }

        .lead-form label {
            display: block;
            margin-bottom: 7px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .lead-form input, .lead-form textarea {
            width: 100%;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            font: inherit;
        }

        .lead-form input {
            height: 46px;
            padding: 0 12px;
        }

        .lead-form textarea {
            padding: 12px;
            resize: vertical;
        }

        .lead-form small {
            display: block;
            margin-top: 5px;
            color: #a33;
        }

        .lead-form button {
            grid-column: 1 / -1;
            width: max-content;
        }

        .thank-you-page {
            display: grid;
            align-content: center;
            min-height: 62vh;
            max-width: 900px;
            margin: 0 auto;
            padding: 90px 42px;
            text-align: center;
        }

        .thank-you-page h1 {
            margin-bottom: 22px;
        }

        .thank-you-page p {
            margin: 0 auto 30px;
            max-width: 560px;
            color: var(--muted);
            font-size: 17px;
        }

        .thank-you-page .btn {
            justify-self: center;
        }

        .story {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
            align-items: center;
            max-width: 1360px;
            margin: 0 auto;
            gap: clamp(42px, 7vw, 96px);
        }

        .story-image {
            min-height: 650px;
            background: var(--paper);
        }

        .story-copy p {
            margin: 22px 0 30px;
            color: var(--muted);
            font-size: 17px;
        }

        .services {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .service {
            padding: 34px 24px;
            border-right: 1px solid var(--line);
        }

        .service:last-child { border-right: 0; }
        .service h3 {
            margin-bottom: 12px;
            font-family: Inter, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .service p {
            margin: 0;
            color: var(--muted);
        }

        .journal {
            grid-template-columns: 1.2fr .8fr;
            align-items: stretch;
        }

        .journal-card {
            min-height: 520px;
            background: var(--paper);
        }

        .journal-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(36px, 6vw, 76px);
            background: #342d26;
            color: #fff;
        }

        .journal-copy p {
            color: rgba(255,255,255,.78);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
            max-width: 1360px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--white);
        }

        .blog-card-image {
            display: block;
            aspect-ratio: 1.24 / 1;
            background: var(--paper);
            overflow: hidden;
        }

        .blog-card-image img {
            transition: transform .35s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.04);
        }

        .blog-card-content {
            padding: 24px 0 0;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
            color: var(--muted);
            font-size: 12px;
        }

        .blog-meta.center {
            justify-content: center;
        }

        .blog-card h2 {
            margin-bottom: 12px;
            font-family: Inter, Arial, sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.35;
        }

        .blog-card p {
            margin: 0;
            color: var(--muted);
        }

        .blog-pagination {
            max-width: 1360px;
            margin: 34px auto 0;
        }

        .blog-detail-page {
            padding: 64px 42px 90px;
        }

        .blog-detail-hero {
            max-width: 980px;
            margin: 0 auto 42px;
            text-align: center;
        }

        .blog-detail-hero h1 {
            margin-bottom: 22px;
            font-size: clamp(46px, 6.5vw, 86px);
        }

        .blog-detail-image {
            max-width: 1120px;
            aspect-ratio: 16 / 8.5;
            margin: 0 auto 48px;
            background: var(--paper);
            overflow: hidden;
        }

        .blog-detail-content {
            max-width: 820px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 17px;
        }

        .blog-detail-content p {
            margin: 0 0 20px;
        }

        .blog-detail-content h2, .blog-detail-content h3 {
            margin: 34px 0 16px;
            color: var(--ink);
        }

        .footer-blogs {
            max-width: 1360px;
            margin: 0 auto;
            padding: 62px 42px 54px;
            border-bottom: 1px solid var(--line);
        }

        .footer-blog-grid .blog-card {
            background: transparent;
        }

        .icon-collections {
            margin: -34px auto 0;
            padding-top: 84px;
            padding-bottom: 92px;
            background: var(--white);
        }

        .icon-collection-grid {
            display: flex;
            gap: 24px;
            margin: 0;
            transition: transform .42s ease;
            will-change: transform;
        }

        .icon-collection-card {
            display: flex;
            flex: 0 0 calc((100% - 96px) / 5);
            min-height: 270px;
            padding: 34px 24px 28px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #f5f3ee;
            color: var(--ink);
            text-align: center;
            transition: background .2s ease, transform .2s ease;
        }

        .icon-collection-card:hover {
            background: #ede4dc;
            transform: translateY(-2px);
        }

        .icon-collection-card svg {
            width: 86px;
            height: 86px;
            margin-bottom: 24px;
            fill: none;
            stroke: #4f4b45;
            stroke-width: 1.45;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-collection-card h3 {
            margin-bottom: 14px;
            font-family: Inter, Arial, sans-serif;
            font-size: clamp(24px, 2.2vw, 34px);
            font-weight: 400;
            line-height: 1.1;
        }

        .icon-collection-card span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid transparent;
            font-size: 16px;
            line-height: 1.4;
        }

        .icon-collection-card:hover span {
            border-bottom-color: currentColor;
        }

        footer {
            background: #f5f1eb;
            color: var(--ink);
            border-top: 1px solid var(--line);
        }

        .footer-newsletter {
            display: grid;
            grid-template-columns: 1fr minmax(320px, 520px);
            gap: 42px;
            align-items: end;
            max-width: 1360px;
            margin: 0 auto;
            padding: 62px 42px 54px;
            border-bottom: 1px solid var(--line);
        }

        .footer-newsletter h2 {
            font-size: clamp(36px, 5vw, 76px);
            max-width: 760px;
        }

        .footer-newsletter p {
            margin: 18px 0 0;
            max-width: 540px;
            color: var(--muted);
        }

        .signup {
            display: grid;
            grid-template-columns: 1fr auto;
            border-bottom: 1px solid var(--ink);
        }

        .signup input {
            min-height: 48px;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--ink);
            font: inherit;
        }

        .signup button {
            border: 0;
            background: transparent;
            color: var(--ink);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
        }

        .newsletter-error {
            grid-column: 2;
            margin-top: -32px;
            color: #9a2f21;
            font-size: 13px;
        }

        .site-toast {
            position: fixed;
            top: 22px;
            right: 22px;
            z-index: 1200;
            max-width: min(360px, calc(100vw - 32px));
            padding: 15px 18px;
            border: 1px solid rgba(32, 48, 42, .14);
            background: #20302a;
            color: #fff;
            font-size: 14px;
            line-height: 1.5;
            box-shadow: 0 18px 45px rgba(0,0,0,.16);
            transition: opacity .28s ease, transform .28s ease;
            animation: toastIn .28s ease both;
        }

        .site-toast.is-hiding {
            opacity: 0;
            transform: translateY(-8px);
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr repeat(4, 1fr);
            gap: 40px;
            max-width: 1360px;
            margin: 0 auto;
            padding: 54px 42px;
        }

        .footer-logo {
            font-family: "Cormorant Garamond", Georgia, serif;
            font-size: clamp(28px, 3.2vw, 48px);
            font-weight: 500;
            line-height: 1;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        footer h3 {
            margin: 0 0 18px;
            font-family: Inter, Arial, sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .footer-toggle {
            display: none;
        }

        .footer-title-text {
            display: inline;
        }

        .footer-links {
            display: block;
        }

        footer p, footer a {
            display: block;
            margin: 0 0 10px;
            color: var(--muted);
            font-size: 14px;
        }

        .footer-strip {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .footer-strip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            max-width: 1360px;
            margin: 0 auto;
            padding: 18px 42px;
            color: var(--muted);
            font-size: 13px;
        }

        .country-select {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--ink);
        }

        .socials {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            margin: 0;
            border: 1px solid var(--line);
            color: var(--ink);
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .socials a:hover {
            border-color: var(--ink);
            background: var(--ink);
            color: var(--white);
        }

        .socials svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .socials svg path {
            fill: none;
        }

        .copyright {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            max-width: 1360px;
            margin: 0 auto;
            padding: 22px 42px 30px;
            color: var(--muted);
            font-size: 13px;
        }

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

        @media (max-width: 980px) {
            .site-header {
                grid-template-columns: 1fr auto 1fr;
                min-height: 70px;
                padding: 0 22px;
            }

            .nav {
                gap: 14px;
                font-size: 11px;
                letter-spacing: .06em;
            }

            .side-drawer {
                padding: 24px 26px 30px;
            }

            .hero, .section, .page-hero, .page-content, .collection-title, .collection-categories, .collection-shop { padding-left: 22px; padding-right: 22px; }
            .section-head { display: block; }
            .section-head p { margin-top: 16px; }
            .services, .story, .journal, .footer-newsletter, .footer-main, .contact-panel, .contact-form-map, .content-section {
                grid-template-columns: 1fr;
            }

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

            .custom-rug-options {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .custom-rug-process {
                grid-template-columns: 1fr;
                padding: 38px 28px;
            }

            .custom-rug-cta {
                display: block;
            }

            .custom-rug-cta .btn {
                margin-top: 24px;
            }

            .footer-blogs {
                padding-left: 22px;
                padding-right: 22px;
            }

            .blog-detail-page {
                padding-left: 22px;
                padding-right: 22px;
            }
            .content-section:nth-of-type(even) .content-section-media {
                order: 0;
            }
            .footer-newsletter, .footer-main, .footer-strip-inner, .copyright {
                padding-left: 22px;
                padding-right: 22px;
            }
            .footer-strip-inner, .copyright {
                align-items: flex-start;
                flex-direction: column;
            }
            .collection-card, .story-image, .journal-card {
                min-height: 420px;
            }

            .collection-card {
                flex-basis: calc((100% - 22px) / 2);
            }

            .product {
                flex-basis: calc((100% - 22px) / 2);
            }

            .collection-mini-card {
                flex-basis: calc((100% - 60px) / 4);
            }

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

            .collection-product-grid[data-layout="5"] {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .collection-filter-bar {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .collection-filter-left {
                justify-content: space-between;
                gap: 16px;
            }

            .collection-layout-switcher {
                order: 3;
            }

            .collection-sort {
                justify-content: space-between;
            }

            .collection-sort-dropdown,
            .collection-sort-dropdown > button {
                min-width: 0;
            }

            .product-breadcrumb {
                padding-left: 22px;
                padding-right: 22px;
            }

            .product-detail {
                grid-template-columns: 1fr;
                padding-left: 22px;
                padding-right: 22px;
            }

            .product-media {
                position: static;
            }

            .product-tabs {
                padding-left: 22px;
                padding-right: 22px;
            }

            .icon-collections {
                margin-top: 0;
                padding-top: 64px;
                padding-bottom: 70px;
            }

            .icon-collection-card {
                flex-basis: calc((100% - 16px) / 2);
            }

            .service {
                border-right: 0;
                border-bottom: 1px solid var(--line);
            }
        }

        @media (max-width: 640px) {
            .site-header {
                grid-template-columns: 48px 1fr 48px;
                gap: 8px;
                min-height: 62px;
                padding: 0 14px;
                background: rgba(255, 253, 249, .98);
            }

            .desktop-nav {
                display: none;
            }

            .brand {
                font-size: 20px;
                letter-spacing: .055em;
                line-height: 1.05;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .menu-toggle {
                display: inline-flex;
                justify-content: flex-start;
                width: 44px;
                height: 44px;
                gap: 0;
                font-size: 0;
            }

            .menu-icon {
                width: 24px;
                gap: 6px;
            }

            .menu-label {
                display: none;
            }

            .header-actions {
                justify-content: flex-end;
                gap: 0;
            }

            .search-toggle {
                width: 44px;
                height: 44px;
            }

            .search-toggle svg {
                width: 21px;
                height: 21px;
            }

            .side-drawer {
                width: min(390px, 88vw);
                padding: 22px 24px 30px;
                box-shadow: 22px 0 60px rgba(29, 26, 23, .16);
            }

            .drawer-head {
                padding-bottom: 22px;
            }

            .drawer-title {
                font-family: "Cormorant Garamond", Georgia, serif;
                font-size: 22px;
                font-weight: 500;
                letter-spacing: .08em;
            }

            .drawer-nav a {
                min-height: 56px;
                font-size: 27px;
            }

            .search-panel {
                position: fixed;
                top: 62px;
                left: 14px;
                right: 14px;
                width: auto;
                padding: 14px;
            }

            .hero {
                min-height: 620px;
                padding-top: 56px;
                padding-bottom: 56px;
            }

            h1 {
                font-size: clamp(46px, 15vw, 68px);
            }

            .carousel-window {
                overflow: hidden;
            }

            .collections, .product-grid {
                gap: 14px;
            }

            .collection-card {
                flex-basis: 82%;
                min-height: 430px;
            }

            .product {
                flex-basis: 78%;
            }

            .collection-title {
                min-height: 260px;
                padding-top: 54px;
                padding-bottom: 54px;
            }

            .collection-title nav {
                flex-wrap: wrap;
            }

            .collection-categories {
                padding-top: 34px;
                padding-bottom: 24px;
            }

            .collection-mini-track {
                gap: 14px;
            }

            .collection-mini-card {
                flex-basis: 70%;
                min-height: 176px;
            }

            .collection-shop {
                padding-top: 18px;
                padding-bottom: 62px;
            }

            .collection-shop-control {
                display: block;
                margin-bottom: 26px;
            }

            .collection-shop-meta {
                margin-top: 18px;
                flex-wrap: wrap;
            }

            .collection-filter-bar {
                grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
                gap: 10px;
                align-items: center;
            }

            .collection-product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 28px;
            }

            .collection-product-grid[data-layout],
            .collection-product-grid[data-layout="2"],
            .collection-product-grid[data-layout="3"],
            .collection-product-grid[data-layout="5"],
            .collection-product-grid[data-layout="list"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .collection-product-grid[data-layout="list"] .collection-product-card {
                display: block;
            }

            .collection-filter-left {
                display: flex;
                min-width: 0;
            }

            .collection-filter-btn {
                min-height: 48px;
                padding: 0 12px;
                gap: 8px;
                font-size: 14px;
            }

            .collection-filter-btn,
            .collection-sort-dropdown,
            .collection-sort-dropdown > button {
                width: 100%;
                min-width: 0;
            }

            .collection-sale-note {
                display: none;
            }

            .collection-layout-switcher {
                display: none;
            }

            .collection-sort {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 10px;
                min-width: 0;
            }

            .collection-sort > span {
                display: none;
            }

            .collection-sort-dropdown > button {
                min-height: 48px;
                padding: 0 12px;
                font-size: 14px;
            }

            .filter-drawer {
                width: min(390px, 90vw);
                padding: 24px 22px 30px;
            }

            .product-breadcrumb {
                padding: 20px 16px;
                overflow-x: auto;
                white-space: nowrap;
            }

            .product-detail {
                padding: 10px 16px 56px;
            }

            .product-media {
                grid-template-columns: 1fr;
            }

            .product-thumbs {
                display: flex;
                order: 2;
                overflow-x: auto;
            }

            .product-thumb {
                flex: 0 0 78px;
            }

            .product-summary h1 {
                font-size: clamp(38px, 11vw, 54px);
            }

            .product-actions {
                grid-template-columns: 1fr;
            }

            .product-help div {
                grid-template-columns: 1fr;
                gap: 2px;
            }

            .product-tabs {
                padding: 0 16px 58px;
            }

            .lead-modal {
                padding: 12px;
            }

            .lead-modal-panel {
                padding: 30px 18px 22px;
            }

            .lead-form {
                grid-template-columns: 1fr;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .custom-rug-options {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .custom-rug-option {
                min-height: auto;
            }

            .custom-rug-option span {
                margin-bottom: 28px;
            }

            .custom-rug-process {
                margin-top: 44px;
                padding: 32px 20px;
            }

            .custom-rug-accordion-item summary {
                grid-template-columns: 54px minmax(0, 1fr) 22px;
                gap: 12px;
                padding: 20px 0;
            }

            .custom-rug-accordion-item .step-content {
                padding: 0 34px 22px 66px;
            }

            .custom-rug-cta {
                margin-top: 44px;
                padding: 28px 20px;
            }

            .contact-form button {
                width: 100%;
            }

            .contact-map-card iframe {
                min-height: 360px;
            }

            .lead-form button {
                width: 100%;
            }

            .thank-you-page {
                padding: 70px 16px;
            }

            .collection-controls {
                margin-top: 18px;
            }

            .icon-collections {
                padding-top: 52px;
                padding-bottom: 58px;
            }

            .icon-collection-grid {
                gap: 14px;
            }

            .icon-collection-card {
                flex-basis: 74%;
                min-height: 250px;
            }

            .icon-collection-card svg {
                width: 78px;
                height: 78px;
                margin-bottom: 22px;
            }

            .footer-newsletter {
                padding-top: 44px;
                padding-bottom: 34px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .blog-detail-page {
                padding: 44px 16px 58px;
            }

            .blog-detail-image {
                aspect-ratio: 4 / 3;
                margin-bottom: 32px;
            }

            .footer-blogs {
                padding: 44px 16px 38px;
            }

            .signup {
                grid-template-columns: 1fr;
                gap: 8px;
                border-bottom: 0;
            }

            .signup input {
                border-bottom: 1px solid var(--ink);
            }

            .signup button {
                justify-self: start;
                padding: 0;
                min-height: 36px;
            }

            .footer-main {
                display: block;
                padding-top: 34px;
                padding-bottom: 22px;
            }

            .footer-brand-col {
                margin-bottom: 26px;
            }

            .footer-col {
                border-top: 1px solid var(--line);
            }

            .footer-col:last-child {
                border-bottom: 1px solid var(--line);
            }

            .footer-col h3 {
                margin: 0;
            }

            .footer-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                min-height: 54px;
                padding: 0;
                border: 0;
                background: transparent;
                color: var(--ink);
                font: inherit;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: .14em;
                text-align: left;
                text-transform: uppercase;
                cursor: pointer;
            }

            .footer-title-text {
                display: none;
            }

            .footer-toggle::after {
                content: "+";
                font-size: 20px;
                font-weight: 400;
                letter-spacing: 0;
            }

            .footer-col.open .footer-toggle::after {
                content: "-";
            }

            .footer-links {
                max-height: 0;
                overflow: hidden;
                padding-bottom: 0;
                transition: max-height .25s ease, padding-bottom .25s ease;
            }

            .footer-col.open .footer-links {
                max-height: 340px;
                padding-bottom: 18px;
            }

            .footer-strip-inner {
                gap: 12px;
            }

            .socials {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 420px) {
            .collection-filter-bar {
                grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
            }

            .collection-sort {
                justify-content: flex-end;
            }

            .collection-product-grid,
            .collection-product-grid[data-layout],
            .collection-product-grid[data-layout="2"],
            .collection-product-grid[data-layout="3"],
            .collection-product-grid[data-layout="5"],
            .collection-product-grid[data-layout="list"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
