:root {
    --ink: #050505;
    --charcoal: #3f484a;
    --pink: #f04bad;
    --blush: #fff1f8;
    --gray: #eef1f2;
    --line: #d8dde0;
    --paper: #ffffff;
    --text: #1d2528;
    --muted: #667176;
    --display: "Playfair Display", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

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

.utility-bar {
    background: #f6f6f6;
    border-bottom: 1px solid #e8e8e8;
    color: #667176;
    font-size: 13px;
}

.utility-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.utility-bar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.brand-row {
    background: var(--paper);
}

.brand-row__inner {
    min-height: 126px;
    display: grid;
    grid-template-columns: 160px minmax(260px, 520px) 170px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-mark img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.site-search {
    display: grid;
    grid-template-columns: 1fr 72px;
    border: 1px solid var(--ink);
    height: 46px;
}

.site-search input {
    width: 100%;
    border: 0;
    padding: 0 16px;
    color: var(--text);
}

.site-search button {
    border: 0;
    background: var(--ink);
    color: var(--paper);
    font-weight: 700;
    cursor: pointer;
}

.quote-box {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--ink);
    color: var(--charcoal);
}

.quote-box strong {
    color: var(--pink);
}

.primary-nav {
    background: var(--ink);
    color: var(--paper);
}

.primary-nav__inner {
    min-height: 62px;
    display: flex;
    justify-content: center;
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.menu a {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 26px;
    font-size: 17px;
    font-weight: 600;
}

.menu .current-menu-item a,
.menu a:hover,
.menu a:focus-visible {
    background: var(--pink);
    color: var(--paper);
}

.hero {
    position: relative;
    min-height: 640px;
    isolation: isolate;
    color: var(--paper);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/hero-bedroom-editorial.jpg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.42);
}

.hero__content {
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: var(--display);
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    font-size: clamp(44px, 8vw, 82px);
}

h2 {
    max-width: 760px;
    font-size: clamp(32px, 5vw, 54px);
}

h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.hero p:not(.eyebrow) {
    max-width: 580px;
    margin: 22px 0 0;
    font-size: 18px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button,
.link-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0 20px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
}

.button--primary,
.link-button {
    background: var(--pink);
    color: var(--paper);
}

.link-button--whatsapp {
    background: #25d366;
    color: #062f16;
}

.button--dark {
    background: var(--paper);
    color: var(--ink);
}

.trust-strip {
    background: var(--ink);
    color: var(--paper);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid div {
    min-height: 98px;
    padding: 24px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip__grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip span {
    margin-top: 5px;
    color: #cbd1d3;
    font-size: 13px;
}

.section {
    padding: 82px 0;
}

.section--collections,
.product-section {
    background: #f5f6f7;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

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

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.collection-tile {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 8px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    color: var(--paper);
    background: var(--charcoal);
}

.collection-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/collection-grid-reference.jpg");
    background-size: cover;
    opacity: 0.75;
}

.collection-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.collection-tile--sets::before {
    background-position: 36% center;
}

.collection-tile--bodysuits::before {
    background-position: 72% center;
}

.collection-tile span,
.collection-tile strong {
    position: relative;
    z-index: 1;
}

.collection-tile span {
    color: var(--pink);
    font-weight: 900;
}

.collection-tile strong {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.25;
}

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

.product-card {
    background: var(--paper);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8ecee;
}

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

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 18px;
}

.product-card__category {
    margin: 0 0 7px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
}

.product-card__price {
    margin-top: 10px;
    color: var(--pink);
    font-size: 22px;
    font-weight: 700;
}

.product-card__meta {
    margin: 14px 0 18px;
}

.product-card__meta div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px;
    padding: 7px 0;
    border-top: 1px solid #edf0f2;
}

.product-card__meta dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.product-card__meta dd {
    margin: 0;
    font-size: 13px;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-card__actions .link-button {
    padding: 0 12px;
    font-size: 13px;
}

.product-detail-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, #fff1f8, #eef1f2);
}

.product-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: 54px;
    align-items: center;
}

.product-detail-hero__media {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e0e5e7;
    background: var(--paper);
}

.product-detail-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.product-detail-hero__content p:not(.eyebrow):not(.breadcrumb) {
    max-width: 640px;
}

.product-detail-price {
    margin-top: 20px;
    color: var(--pink);
    font-size: 30px;
    font-weight: 900;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

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

.product-order-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 38px;
    align-items: start;
}

.order-data-list {
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}

.order-data-list div,
.tier-table div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.order-data-list dt {
    color: var(--muted);
    font-weight: 900;
}

.order-data-list dd {
    margin: 0;
}

.tier-card {
    padding: 28px;
    border-radius: 8px;
    background: #050505;
    color: var(--paper);
}

.tier-card h2 {
    font-size: 34px;
}

.tier-table {
    margin-top: 24px;
}

.tier-table div {
    grid-template-columns: 1fr auto;
    border-color: rgba(255, 255, 255, 0.16);
}

.tier-table span {
    color: #cbd1d3;
}

.tier-note {
    color: #cbd1d3;
}

.split-section__grid,
.inquiry-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: start;
}

.split-section p,
.inquiry-section p {
    max-width: 620px;
}

.spec-list {
    display: grid;
    gap: 12px;
}

.spec-list div {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.spec-list span {
    color: var(--muted);
    text-align: right;
}

.process-section {
    background: var(--blush);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-grid div {
    min-height: 210px;
    padding: 24px;
    background: var(--paper);
    border: 1px solid #f6cfe6;
    border-radius: 6px;
}

.process-grid span {
    color: var(--pink);
    font-weight: 900;
}

.process-grid h3 {
    margin-top: 20px;
}

.inquiry-section {
    background: var(--ink);
    color: var(--paper);
}

.inquiry-section p {
    color: #d7dcdf;
}

.inquiry-note {
    margin-top: 28px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #d7dcdf;
}

.inquiry-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--paper);
}

.inquiry-note .button {
    margin-top: 14px;
}

.inquiry-form {
    display: grid;
    gap: 14px;
    padding: 26px;
    background: var(--paper);
    color: var(--text);
    border-radius: 8px;
}

.inquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--charcoal);
    font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 12px;
    color: var(--text);
}

.inquiry-page-hero {
    background: linear-gradient(135deg, #fff1f8, #eef1f2);
}

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

.inquiry-detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: start;
}

.inquiry-summary-card {
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #f5f6f7;
}

.inquiry-summary-card h2 {
    font-size: 36px;
}

.inquiry-summary-card .button {
    margin-top: 22px;
}

.inquiry-form--page {
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.page-hero,
.collection-hero {
    padding: 72px 0;
    background: var(--gray);
}

.page-hero p,
.collection-hero p {
    max-width: 680px;
}

.breadcrumb {
    margin: 0 0 12px;
    color: var(--muted);
}

.collection-toolbar {
    background: var(--paper);
    border-top: 1px solid #e4e8ea;
    border-bottom: 1px solid #e4e8ea;
}

.collection-toolbar__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.collection-toolbar button {
    min-height: 34px;
    border: 0;
    padding: 0 16px;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
}

.collection-toolbar button.is-active {
    background: var(--pink);
    color: var(--paper);
    font-weight: 800;
}

.content-page {
    max-width: 800px;
}

.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 54px 0 26px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: var(--paper);
}

.site-footer h2 {
    margin-bottom: 12px;
    font-family: var(--body);
    font-size: 15px;
}

.site-footer a,
.site-footer p {
    display: block;
    color: #cbd1d3;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #aeb6ba;
    font-size: 13px;
}

@media (max-width: 980px) {
    .brand-row__inner {
        grid-template-columns: 110px 1fr;
    }

    .quote-box {
        grid-column: 1 / -1;
    }

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

    .collection-grid,
    .process-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .split-section__grid,
    .inquiry-section__grid,
    .product-detail-hero__grid,
    .product-order-grid,
    .inquiry-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .utility-bar__inner,
    .section-heading--row,
    .copyright {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-row__inner {
        min-height: auto;
        padding: 20px 0;
        grid-template-columns: 1fr;
    }

    .brand-mark img {
        width: 78px;
        height: 78px;
    }

    .site-search {
        grid-template-columns: 1fr 68px;
        width: 100%;
    }

    .menu {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .menu a {
        min-height: 54px;
        padding: 0 16px;
        white-space: nowrap;
        font-size: 15px;
    }

    .hero,
    .hero__content {
        min-height: 560px;
    }

    .hero__media {
        background-position: 45% center;
    }

    .trust-strip__grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .spec-list div {
        align-items: flex-start;
        flex-direction: column;
    }

    .spec-list span {
        text-align: left;
    }

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

    .order-data-list div,
    .tier-table div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
