:root {
    --bg: #f7f0e7;
    --bg-soft: #fbf6f0;
    --paper: rgba(255, 252, 247, 0.88);
    --paper-strong: #fffaf4;
    --card: rgba(255, 249, 242, 0.78);
    --text: #28433f;
    --muted: #6f7f77;
    --line: rgba(40, 67, 63, 0.14);
    --teal: #275e5d;
    --teal-deep: #1f4a49;
    --sage: #d9e4dc;
    --coral: #d78972;
    --coral-soft: #f5ddd2;
    --sand: #ead8c2;
    --shadow: 0 22px 50px rgba(106, 85, 59, 0.10);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 14%, rgba(215, 137, 114, 0.16), transparent 20%),
        radial-gradient(circle at 88% 18%, rgba(39, 94, 93, 0.11), transparent 20%),
        linear-gradient(180deg, #fdf9f3 0%, var(--bg) 52%, #f4ede4 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

body::before {
    top: 8rem;
    left: -7rem;
    width: 20rem;
    height: 20rem;
    background: rgba(215, 137, 114, 0.12);
}

body::after {
    right: -6rem;
    bottom: 8rem;
    width: 18rem;
    height: 18rem;
    background: rgba(39, 94, 93, 0.10);
}

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

img {
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 240, 231, 0.74);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(40, 67, 63, 0.07);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    gap: 0.22rem;
}

.brand-mark__chip {
    width: fit-content;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid rgba(40, 67, 63, 0.08);
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark__title {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 0.95;
}

.brand-mark__tag {
    color: var(--muted);
    font-size: 0.9rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--teal);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 6px auto;
    background: var(--text);
}

.button,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--teal);
    color: #fefaf4;
    font-weight: 700;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.button:hover,
.filter-chip:hover {
    transform: translateY(-2px);
    background: var(--teal-deep);
    box-shadow: 0 10px 20px rgba(39, 94, 93, 0.14);
}

.button--ghost {
    background: rgba(255, 252, 247, 0.55);
    border-color: var(--line);
    color: var(--text);
}

.button--ghost:hover {
    background: var(--paper-strong);
}

.button--small {
    min-height: 42px;
    padding: 0 1rem;
    font-size: 0.94rem;
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Newsreader", Georgia, serif;
    line-height: 1.02;
}

h1 {
    font-size: clamp(2.75rem, 5vw, 4.6rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(1.95rem, 3.3vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    line-height: 1.72;
}

.hero-copy,
.page-intro,
.split-copy {
    position: relative;
}

.hero-copy::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: -1.4rem;
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(215, 137, 114, 0.32);
    border-radius: 38% 62% 56% 44% / 44% 45% 55% 56%;
}

.hero-text,
.section-copy,
.page-intro p {
    max-width: 60ch;
    color: var(--muted);
    font-size: 0.98rem;
}

.hero-actions,
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin: 2rem 0 1.4rem;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
    color: var(--muted);
}

.hero-note p {
    margin: 0;
    max-width: 34rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stats article,
.hero-card,
.category-card,
.content-card,
.review-preview,
.review-card,
.story-panel,
.value-card,
.page-intro,
.filter-bar,
.flash {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.88), rgba(255, 248, 241, 0.72));
    border: 1px solid rgba(40, 67, 63, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-stats article {
    padding: 1.2rem 1.2rem 1.1rem;
}

.hero-stats strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--teal);
    font-size: 1.18rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.93rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 1.8rem 2rem auto auto;
    width: 9rem;
    height: 9rem;
    background: rgba(234, 216, 194, 0.52);
    border-radius: 56% 44% 58% 42% / 41% 61% 39% 59%;
}

.hero-card {
    position: absolute;
    overflow: hidden;
}

.hero-card p,
.review-brand,
.footer-copy,
.disclosure {
    color: var(--muted);
}

.hero-card--primary {
    inset: 0 2.5rem 6rem 0;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(39, 94, 93, 0.28), rgba(39, 94, 93, 0.18)),
        url("/images/livingroom.png") center/cover;
    color: #fff7f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-card--primary::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(37, 57, 54, 0.78));
}

.hero-card--primary > * {
    position: relative;
    z-index: 1;
}

.hero-card--primary p,
.hero-card--primary span {
    color: rgba(255, 247, 240, 0.88);
}

.hero-card--secondary {
    right: 0;
    bottom: 4.2rem;
    width: 260px;
    padding: 1.35rem 1.4rem;
    transform: rotate(-4deg);
}

.hero-card--accent {
    left: 2rem;
    bottom: 0;
    width: 230px;
    padding: 1.2rem 1.3rem;
    background: rgba(245, 221, 210, 0.86);
}

.section {
    padding: 2.2rem 0 5rem;
}

.section--tinted,
.site-footer {
    background:
        radial-gradient(circle at 90% 30%, rgba(215, 137, 114, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 250, 245, 0.22), rgba(233, 223, 208, 0.14));
}

.section--compact {
    padding-top: 2.5rem;
}

.section-heading,
.meta-row,
.review-card__top,
.rating-row,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    max-width: 12ch;
}

.text-link {
    color: var(--teal);
    font-weight: 800;
}

.text-link:hover {
    color: var(--teal-deep);
}

.room-card .text-link:hover {
    color: #fffaf5;
}

.category-grid,
.card-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.room-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.room-card {
    display: block;
    position: relative;
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow);
    border: 1px solid rgba(40, 67, 63, 0.10);
    transform: translateY(0) scale(1);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.room-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 56px rgba(106, 85, 59, 0.16);
}

.room-card__media,
.room-card__overlay,
.room-card__content {
    position: absolute;
    inset: 0;
}

.room-card__media {
    z-index: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transition: transform 320ms ease;
}

.room-card:hover .room-card__media {
    transform: scale(1.05);
}

.room-card__overlay {
    z-index: 0;
    background: linear-gradient(180deg, rgba(30, 41, 40, 0.08), rgba(30, 41, 40, 0.68));
}

.room-card__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1.4rem;
    color: #fffaf5;
    z-index: 1;
    pointer-events: none;
}

.room-card__content .eyebrow,
.room-card__content p,
.room-card__content .text-link {
    color: rgba(255, 250, 245, 0.9);
}

.room-card__content h3 {
    font-size: 1.7rem;
}

.room-card__content p:last-of-type {
    margin: 0;
}


.category-card,
.content-card,
.review-card,
.story-panel,
.value-card,
.page-intro {
    overflow: hidden;
}

.category-card,
.story-panel,
.value-card,
.page-intro {
    padding: 1.5rem;
}

.category-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.category-card__image {
    height: 180px;
    margin: -1.5rem -1.5rem 1.1rem;
    border-radius: 28px 28px 20px 20px;
    border-bottom: 1px solid rgba(40, 67, 63, 0.08);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 26% 28%, rgba(39, 94, 93, 0.16), transparent 18%),
        radial-gradient(circle at 72% 70%, rgba(215, 137, 114, 0.18), transparent 20%),
        linear-gradient(140deg, rgba(255, 252, 247, 0.94), rgba(234, 216, 194, 0.60));
}

.category-card__image::before,
.category-card__image::after {
    content: "";
    position: absolute;
    inset: auto;
}

.category-card__image::before {
    left: 1.25rem;
    bottom: 1rem;
    width: 42%;
    height: 44%;
    border-radius: 46% 54% 35% 65% / 44% 33% 67% 56%;
    background: rgba(255, 251, 246, 0.68);
    box-shadow:
        0 0 0 1px rgba(40, 67, 63, 0.06),
        18px -18px 0 -8px rgba(215, 137, 114, 0.18);
}

.category-card__image::after {
    right: 1.25rem;
    top: 1rem;
    width: 28%;
    height: 56%;
    border-radius: 58% 42% 50% 50% / 36% 58% 42% 64%;
    background: rgba(39, 94, 93, 0.12);
}

.category-card--living-room .category-card__image {
    background:
        radial-gradient(circle at 28% 24%, rgba(215, 137, 114, 0.20), transparent 16%),
        linear-gradient(145deg, #f5ede2 0%, #e4ece5 52%, #d6e0db 100%);
}

.category-card--living-room .category-card__image::before {
    width: 54%;
    height: 42%;
    left: 1.1rem;
    bottom: 1rem;
    border-radius: 42px 42px 22px 22px;
    background:
        linear-gradient(180deg, rgba(245, 247, 244, 0.92), rgba(227, 233, 228, 0.96));
    box-shadow:
        0 0 0 1px rgba(40, 67, 63, 0.05),
        inset 0 -10px 24px rgba(39, 94, 93, 0.08);
}

.category-card--living-room .category-card__image::after {
    right: 1.15rem;
    bottom: 1rem;
    top: auto;
    width: 22%;
    height: 36%;
    border-radius: 48% 52% 44% 56% / 34% 35% 65% 66%;
    background:
        radial-gradient(circle at 45% 30%, rgba(245, 221, 210, 0.88), rgba(215, 137, 114, 0.42));
}

.category-card--bedroom .category-card__image {
    background:
        radial-gradient(circle at 72% 28%, rgba(215, 137, 114, 0.18), transparent 18%),
        linear-gradient(145deg, #f8f2ea 0%, #edf0ea 46%, #e7e0d8 100%);
}

.category-card--bedroom .category-card__image::before {
    left: 1rem;
    right: 1rem;
    width: auto;
    height: 42%;
    bottom: 0.95rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0.95), rgba(228, 235, 231, 0.96));
    box-shadow: 0 0 0 1px rgba(40, 67, 63, 0.05);
}

.category-card--bedroom .category-card__image::after {
    right: 1.35rem;
    top: 1.15rem;
    width: 18%;
    height: 24%;
    border-radius: 50%;
    background: rgba(39, 94, 93, 0.14);
    box-shadow: -76px 54px 0 12px rgba(245, 221, 210, 0.62);
}

.category-card--kitchen .category-card__image {
    background:
        radial-gradient(circle at 24% 18%, rgba(215, 137, 114, 0.18), transparent 16%),
        linear-gradient(145deg, #f7f2ec 0%, #e3ece6 48%, #f0e4d5 100%);
}

.category-card--kitchen .category-card__image::before {
    left: 1rem;
    bottom: 1rem;
    width: 68%;
    height: 46%;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(245, 242, 236, 0.95), rgba(227, 233, 228, 0.96));
    box-shadow:
        0 0 0 1px rgba(40, 67, 63, 0.05),
        0 -34px 0 -18px rgba(255, 251, 246, 0.78);
}

.category-card--kitchen .category-card__image::after {
    right: 1rem;
    bottom: 1.15rem;
    top: auto;
    width: 18%;
    height: 40%;
    border-radius: 10px 10px 18px 18px;
    background: rgba(39, 94, 93, 0.18);
    box-shadow: -96px 0 0 -22px rgba(215, 137, 114, 0.42);
}

.category-card--dining-room .category-card__image {
    background:
        radial-gradient(circle at 78% 28%, rgba(215, 137, 114, 0.18), transparent 18%),
        linear-gradient(145deg, #faf4ed 0%, #e7ece5 42%, #e9dccd 100%);
}

.category-card--dining-room .category-card__image::before {
    left: 14%;
    right: 14%;
    width: auto;
    height: 20%;
    bottom: 2.1rem;
    border-radius: 999px;
    background: rgba(166, 128, 86, 0.46);
    box-shadow: 0 18px 0 -10px rgba(39, 94, 93, 0.10);
}

.category-card--dining-room .category-card__image::after {
    left: 50%;
    top: 24%;
    width: 12%;
    height: 34%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(39, 94, 93, 0.16);
    box-shadow:
        -62px 24px 0 8px rgba(255, 251, 246, 0.78),
        62px 24px 0 8px rgba(245, 221, 210, 0.56);
}

.category-card--bathroom .category-card__image {
    background:
        radial-gradient(circle at 22% 24%, rgba(215, 137, 114, 0.16), transparent 16%),
        linear-gradient(145deg, #f7f4ef 0%, #ebf0eb 48%, #dfe8e2 100%);
}

.category-card--bathroom .category-card__image::before {
    left: 1.2rem;
    bottom: 1rem;
    width: 30%;
    height: 50%;
    border-radius: 18px;
    background: rgba(255, 251, 246, 0.78);
    box-shadow:
        62px 8px 0 -10px rgba(39, 94, 93, 0.12),
        124px 18px 0 -28px rgba(215, 137, 114, 0.38);
}

.category-card--bathroom .category-card__image::after {
    right: 1.15rem;
    top: 1rem;
    width: 24%;
    height: 42%;
    border-radius: 999px 999px 38% 38%;
    background: rgba(39, 94, 93, 0.14);
}

.category-card--home-office .category-card__image {
    background:
        radial-gradient(circle at 75% 20%, rgba(215, 137, 114, 0.18), transparent 18%),
        linear-gradient(145deg, #f7f1ea 0%, #e3ebe6 42%, #e9dfd2 100%);
}

.category-card--home-office .category-card__image::before {
    left: 1rem;
    bottom: 1rem;
    width: 60%;
    height: 18%;
    border-radius: 16px;
    background: rgba(169, 133, 95, 0.46);
    box-shadow:
        0 -58px 0 -26px rgba(255, 251, 246, 0.92),
        84px -30px 0 -34px rgba(39, 94, 93, 0.20);
}

.category-card--home-office .category-card__image::after {
    right: 1.15rem;
    bottom: 1.05rem;
    top: auto;
    width: 20%;
    height: 44%;
    border-radius: 20px 20px 12px 12px;
    background: rgba(39, 94, 93, 0.14);
}

.category-card--entryway .category-card__image {
    background:
        radial-gradient(circle at 20% 22%, rgba(215, 137, 114, 0.16), transparent 16%),
        linear-gradient(145deg, #f8f2eb 0%, #e9eee8 44%, #eadfcf 100%);
}

.category-card--entryway .category-card__image::before {
    left: 1rem;
    bottom: 1rem;
    width: 64%;
    height: 14%;
    border-radius: 10px;
    background: rgba(171, 137, 99, 0.44);
    box-shadow:
        0 -52px 0 -30px rgba(255, 251, 246, 0.94),
        96px -26px 0 -40px rgba(39, 94, 93, 0.18);
}

.category-card--entryway .category-card__image::after {
    right: 1.1rem;
    top: 1rem;
    width: 28%;
    height: 52%;
    border-radius: 48% 52% 52% 48% / 42% 42% 58% 58%;
    background: rgba(255, 251, 246, 0.72);
    box-shadow: inset 0 0 0 1px rgba(40, 67, 63, 0.05);
}

.category-card--kids-room .category-card__image {
    background:
        radial-gradient(circle at 72% 24%, rgba(215, 137, 114, 0.18), transparent 18%),
        linear-gradient(145deg, #fbf5ee 0%, #e6ede9 40%, #f0e6da 100%);
}

.category-card--kids-room .category-card__image::before {
    left: 1rem;
    bottom: 1rem;
    width: 46%;
    height: 42%;
    border-radius: 26px;
    background: rgba(255, 251, 246, 0.86);
    box-shadow:
        92px 0 0 -28px rgba(39, 94, 93, 0.12),
        148px -6px 0 -44px rgba(215, 137, 114, 0.42);
}

.category-card--kids-room .category-card__image::after {
    right: 1.2rem;
    top: 1rem;
    width: 16%;
    height: 22%;
    border-radius: 50%;
    background: rgba(39, 94, 93, 0.14);
    box-shadow:
        -26px 32px 0 6px rgba(245, 221, 210, 0.72),
        -82px 54px 0 0 rgba(255, 251, 246, 0.82);
}

.content-card {
    display: flex;
    flex-direction: column;
}

.content-card__image {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) contrast(0.95);
}

.content-card__body {
    padding: 1.35rem;
}

.room-landing {
    margin: 1.4rem 0 2rem;
}

.room-landing__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.room-landing__copy,
.room-landing__image,
.room-product-card {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.88), rgba(255, 248, 241, 0.72));
    border: 1px solid rgba(40, 67, 63, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.room-landing__copy {
    padding: 1.7rem;
}

.room-landing__image {
    min-height: 320px;
    background-position: center;
    background-size: cover;
}

.section-heading--room {
    margin-top: 0.8rem;
}

.room-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.room-product-card {
    overflow: hidden;
}

.room-product-card__media {
    height: 180px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.room-product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.06), rgba(39, 94, 93, 0.18));
}

.room-product-card__body {
    padding: 1.2rem;
}

.room-product-card__stats {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    margin: 0.9rem 0 0.65rem;
}

.room-product-card__stats strong {
    font-size: 1.05rem;
    color: var(--teal);
}

.room-product-card__stats span,
.room-product-card__reviews {
    color: var(--muted);
    font-size: 0.9rem;
}

.room-product-card__reviews {
    margin-top: 0.55rem;
}

.content-card h2,
.content-card h3,
.review-preview h3,
.review-card h2,
.story-panel h2,
.value-card h3 {
    text-wrap: balance;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: var(--coral-soft);
    color: #9e5b48;
    font-size: 0.78rem;
    font-weight: 800;
}

.pill--soft {
    background: rgba(39, 94, 93, 0.10);
    color: var(--teal);
}

.split-layout,
.about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.5rem;
    align-items: start;
}

.review-stack {
    display: grid;
    gap: 1rem;
}

.review-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem;
}

.review-preview__media {
    width: 136px;
    min-width: 136px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid rgba(40, 67, 63, 0.08);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 252, 247, 0.76);
}

.review-preview__media--soft,
.review-card__image--soft {
    background:
        radial-gradient(circle at 24% 30%, rgba(39, 94, 93, 0.18), transparent 20%),
        radial-gradient(circle at 74% 70%, rgba(215, 137, 114, 0.18), transparent 22%),
        linear-gradient(145deg, rgba(255, 252, 247, 0.94), rgba(234, 216, 194, 0.56));
}

.review-preview__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.page-intro {
    margin-bottom: 1.7rem;
}

.page-intro h1 {
    font-size: clamp(2.8rem, 6vw, 4.7rem);
    max-width: 12ch;
}

.filter-bar {
    margin-bottom: 1.35rem;
    padding: 0.9rem;
}

.filter-chip {
    min-height: 42px;
    background: rgba(255, 251, 246, 0.78);
    color: var(--text);
    border-color: var(--line);
}

.filter-chip.is-active {
    background: var(--teal);
    color: #fff;
    border-color: transparent;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.review-card {
    padding: 1.45rem;
}

.review-card__image {
    height: 240px;
    margin: -1.45rem -1.45rem 1.15rem;
    border-radius: 28px 28px 20px 20px;
    border-bottom: 1px solid rgba(40, 67, 63, 0.08);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 252, 247, 0.72);
    position: relative;
}

.review-card__image::after,
.review-preview__media::after,
.product-article__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.16), rgba(255, 251, 246, 0.36));
}

.review-copy {
    max-width: 34rem;
}

.review-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.price-block {
    text-align: right;
    flex-shrink: 0;
}

.price-block strong {
    display: block;
    font-size: 1.5rem;
    color: var(--teal);
}

.price-block span,
.best-for,
.review-note,
.review-source {
    color: var(--muted);
}

.review-source,
.review-note {
    margin: 0.45rem 0 0;
}

.stars {
    position: relative;
    width: 112px;
    height: 12px;
    background: rgba(40, 67, 63, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.stars span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #d78972, #ebb78f);
}

.review-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.3rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(40, 67, 63, 0.14);
}

ul {
    margin: 0.55rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.site-footer {
    margin-top: 2rem;
    padding: 4rem 0 2rem;
}

.product-article {
    display: grid;
    gap: 1.25rem;
}

.product-article__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 1.2rem;
}

.product-article__image,
.product-article__summary {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.88), rgba(255, 248, 241, 0.72));
    border: 1px solid rgba(40, 67, 63, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.product-article__image {
    min-height: 380px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 252, 247, 0.76);
    position: relative;
    overflow: hidden;
}

.product-article__summary {
    padding: 1.45rem;
}

.product-article__body {
    display: grid;
    gap: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: end;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.newsletter-form input {
    min-width: min(100%, 340px);
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.95);
    font: inherit;
    color: var(--text);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(40, 67, 63, 0.1);
    align-items: start;
}

.flash {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    font-weight: 700;
}

.flash--success {
    color: var(--teal);
}

.flash--error {
    color: #9f5947;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[data-category].is-hidden {
    display: none;
}

@media (max-width: 960px) {
    .hero-grid,
    .split-layout,
    .about-grid,
    .footer-grid,
    .review-grid,
    .product-article__hero,
    .room-landing__hero,
    .category-grid,
    .room-card-grid,
    .room-product-grid,
    .card-grid,
    .values-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-card--primary {
        inset: 0 1rem 5.5rem 0;
    }

    .hero-card--secondary {
        right: 0;
        width: min(100%, 250px);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 251, 246, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-block;
    }

    .section-heading,
    .review-preview,
    .review-card__top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-preview__meta,
    .price-block {
        align-items: flex-start;
        text-align: left;
    }

    .review-preview__media {
        width: 100%;
        min-width: 0;
        min-height: 180px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.15rem), var(--container));
    }

    h1,
    .page-intro h1 {
        max-width: 100%;
    }

    .section,
    .site-footer {
        padding-bottom: 3.4rem;
    }

    .hero-card,
    .hero-stats article,
    .category-card,
    .content-card,
    .review-preview,
    .review-card,
    .story-panel,
    .value-card,
    .page-intro,
    .filter-bar,
    .flash {
        border-radius: 24px;
    }

    .hero-note {
        align-items: flex-start;
    }

    .review-lists {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        justify-content: stretch;
    }

    .newsletter-form input,
    .newsletter-form .button {
        width: 100%;
    }
}
