/* =========================================================
   ROOMERA
   GLOBAL LAYOUT & TYPOGRAPHY
   ========================================================= */

:root {
    --roomera-container: 1320px;

    --roomera-navy: #102a40;
    --roomera-navy-dark: #0c2235;

    --roomera-gold: #d9c49a;
    --roomera-gold-dark: #a18451;

    --roomera-text: #263746;
    --roomera-muted: #68757f;

    --roomera-bg: #fbfaf7;
    --roomera-surface: #ffffff;
    --roomera-line: #e4dfd6;

    --roomera-serif: Georgia, "Times New Roman", serif;
    --roomera-sans: Arial, Helvetica, sans-serif;
}


/* =========================================================
   BASE
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    margin: 0;

    background: var(--roomera-bg);

    color: var(--roomera-text);

    font-family: var(--roomera-sans);
    font-size: 16px;
    font-weight: 400;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.site-shell {
    width: 100%;
    overflow: hidden;
}


a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.ht-container {
    width: min(
        var(--roomera-container),
        calc(100% - 48px)
    );

    max-width: var(--roomera-container);

    margin-right: auto;
    margin-left: auto;
}


/* =========================================================
   SECTION SPACING
   ========================================================= */

.section-space {
    padding-top: 64px;
    padding-bottom: 64px;
}


.section-space-sm {
    padding-top: 28px;
    padding-bottom: 28px;
}


.section-gap {
    margin-top: 28px;
}


/* =========================================================
   GENERAL SECTION HEADINGS
   ========================================================= */

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


.section-heading.centered {
    text-align: center;
}


.section-heading.compact {
    margin-bottom: 18px;
}


.section-heading h1,
.section-heading h2,
.section-heading h3 {
    margin-top: 0;

    color: var(--roomera-navy);

    font-family: var(--roomera-serif);
    font-weight: 400;

    letter-spacing: -0.025em;
}


.section-heading h2 {
    margin-bottom: 0;

    font-size: clamp(32px, 2.6vw, 40px);

    line-height: 1.15;
}


.section-heading h3 {
    font-size: 25px;
    line-height: 1.2;
}


.section-heading p {
    max-width: 760px;

    margin: 12px auto 0;

    color: var(--roomera-muted);

    font-size: 15px;
    line-height: 1.65;
}


.eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--roomera-gold-dark);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


/* =========================================================
   PANELS
   ========================================================= */

.panel-box {
    background: rgba(255, 255, 255, 0.94);

    border: 1px solid var(--roomera-line);

    border-radius: 10px;

    box-shadow:
        0 4px 18px rgba(16, 42, 64, 0.035);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 24px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;
}


.btn-gold {
    background: var(--roomera-gold);
    border-color: var(--roomera-gold);

    color: var(--roomera-navy-dark);
}


.btn-gold:hover {
    background: #e3cfaa;
    border-color: #e3cfaa;

    color: var(--roomera-navy-dark);
}


.btn-navy {
    background: var(--roomera-navy);
    border-color: var(--roomera-navy);

    color: #ffffff;
}


.btn-navy:hover {
    background: #16374f;
    border-color: #16374f;

    color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    min-height: 560px;
}


.hero-content {
    min-height: 560px;

    padding-top: 54px;
    padding-bottom: 24px;
}


.hero-copy {
    width: min(650px, 55%);
}


.hero-copy h1 {
    margin: 0 0 22px;

    font-family: var(--roomera-serif);

    font-size: clamp(48px, 4.3vw, 68px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.035em;
}


.hero-lead {
    width: min(580px, 100%);

    margin: 0 0 14px;

    font-size: 18px;

    line-height: 1.5;
}


.hero-subtext {
    width: min(580px, 100%);

    margin: 0;

    font-size: 14px;

    line-height: 1.55;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}


.hero-buttons .btn {
    min-height: 50px;

    padding-right: 27px;
    padding-left: 27px;

    font-size: 14px;
}


.hero-benefits {
    gap: 20px;

    margin-top: 40px;
}


.hero-benefit {
    min-height: 62px;

    gap: 13px;
}


.hero-benefit .icon-circle {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;
}


.hero-benefit .icon-circle svg {
    width: 24px;
    height: 24px;
}


.hero-benefit strong {
    font-size: 13px;
    line-height: 1.3;
}


.hero-benefit small {
    margin-top: 4px;

    font-size: 11px;
    line-height: 1.35;
}


/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */

.featured-products-section {
    padding-top: 62px;
    padding-bottom: 62px;
}


.featured-products-section .panel-box {
    padding: 18px;
}


.featured-product-grid {
    gap: 18px;
}


.featured-product-card {
    min-height: 245px;

    grid-template-columns: 43% 57%;

    border-radius: 9px;
}


.featured-product-image {
    min-height: 245px;
}


.featured-product-copy {
    padding: 22px 23px 20px;
}


.featured-product-copy h3 {
    margin: 0 0 9px;

    font-family: var(--roomera-serif);

    font-size: 22px;
    font-weight: 400;

    line-height: 1.25;
}


.featured-product-copy p {
    margin-bottom: 16px;

    color: var(--roomera-muted);

    font-size: 13px;

    line-height: 1.55;
}


.featured-product-copy .mini-row {
    margin-top: 9px;
}


.featured-product-copy .mini-row > span {
    min-width: 65px;

    font-size: 10px;
}


.featured-product-copy .chips.small span {
    min-height: 24px;

    padding: 3px 8px;

    font-size: 10px;
}


/* =========================================================
   CATEGORY STRIP
   ========================================================= */

.category-strip {
    margin-bottom: 18px;

    padding: 10px 8px;
}


.strip-item {
    min-height: 82px;

    gap: 14px;

    padding: 10px 17px;
}


.strip-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;
}


.strip-icon svg {
    width: 36px;
    height: 36px;
}


.strip-item strong {
    font-size: 14px;
    line-height: 1.25;
}


.strip-item small {
    margin-top: 4px;

    font-size: 10px;
    line-height: 1.35;
}


/* =========================================================
   ASSORTMENT
   ========================================================= */

.assortment-section {
    padding-top: 58px;
    padding-bottom: 58px;
}


.assortment-grid {
    padding: 18px 12px;
}


.assortment-column {
    padding: 7px 18px 14px;
}


.assortment-column h3 {
    font-size: 14px;
    line-height: 1.3;
}


.assortment-column ul {
    line-height: 1.55;
}


.assortment-column li {
    margin-bottom: 4px;

    font-size: 11px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits-section {
    padding-top: 58px;
    padding-bottom: 58px;
}


.benefit-grid {
    gap: 16px;
}


.benefit-card {
    min-height: 118px;

    padding: 20px 19px;
}


.benefit-card h3 {
    font-size: 14px;
    line-height: 1.3;
}


.benefit-card p {
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding-top: 36px;
    padding-bottom: 64px;
}


.cta-panel {
    min-height: 270px;

    border-radius: 12px;
}


.cta-copy {
    padding: 38px 38px;
}


.cta-copy h2 {
    margin-bottom: 12px;

    font-family: var(--roomera-serif);

    font-size: clamp(30px, 2.6vw, 40px);
    font-weight: 400;

    line-height: 1.15;
}


.cta-copy p {
    max-width: 430px;

    font-size: 14px;
    line-height: 1.55;
}


.cta-form-wrap {
    padding: 34px 36px;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

.contact-form input,
.contact-form textarea,
.contact-form select,
.cta-form-wrap input,
.cta-form-wrap textarea,
.cta-form-wrap select {
    min-height: 48px;

    padding: 11px 14px;

    font-size: 13px;
}


.contact-form textarea,
.cta-form-wrap textarea {
    min-height: 96px;

    resize: vertical;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 0;
}


.footer-grid {
    gap: 48px;

    padding-top: 45px;
    padding-bottom: 38px;
}


.footer-brand p,
.footer-description {
    max-width: 310px;

    margin-top: 16px;

    font-size: 12px;

    line-height: 1.55;
}


.footer-grid h3 {
    margin: 4px 0 14px;

    font-family: var(--roomera-serif);

    font-size: 14px;
    font-weight: 600;
}


.footer-links,
.footer-contact {
    gap: 8px;

    font-size: 12px;

    line-height: 1.45;
}


.footer-contact svg {
    width: 16px;
    height: 16px;
}


.footer-socials {
    gap: 9px;

    margin-top: 15px;
}


.footer-socials a {
    width: 32px;
    height: 32px;
}


.footer-bottom {
    padding-top: 14px;
    padding-bottom: 18px;

    font-size: 10px;
}


/* =========================================================
   DESKTOP 1200–1400
   ========================================================= */

@media (max-width: 1400px) {

    .ht-container {
        width: min(
            1240px,
            calc(100% - 40px)
        );
    }


    .hero-copy h1 {
        font-size: clamp(44px, 4vw, 60px);
    }


    .hero-lead {
        font-size: 17px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .section-space {
        padding-top: 52px;
        padding-bottom: 52px;
    }


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


    .section-heading h2 {
        font-size: 34px;
    }


    .hero-section,
    .hero-content {
        min-height: 540px;
    }


    .hero-content {
        padding-top: 48px;
    }


    .hero-copy {
        width: 68%;
    }


    .hero-copy h1 {
        font-size: 50px;
    }


    .hero-lead {
        font-size: 16px;
    }


    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);

        gap: 13px 24px;
    }


    .featured-product-card {
        grid-template-columns: 42% 58%;
    }


    .footer-grid {
        gap: 30px;
    }

}


/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 820px) {

    .ht-container {
        width: calc(100% - 32px);
    }


    .section-space {
        padding-top: 46px;
        padding-bottom: 46px;
    }


    .section-heading h2 {
        font-size: 31px;
    }


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


    .hero-copy {
        width: 80%;
    }


    .hero-copy h1 {
        font-size: 46px;
    }


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


    .featured-product-card {
        min-height: 230px;
    }


    .featured-product-image {
        min-height: 230px;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 34px 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }


    .ht-container {
        width: calc(100% - 28px);
    }


    .section-space {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    .section-space-sm {
        padding-top: 20px;
        padding-bottom: 20px;
    }


    .section-gap {
        margin-top: 20px;
    }


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


    .section-heading h2 {
        font-size: 29px;

        line-height: 1.18;
    }


    .section-heading p {
        margin-top: 9px;

        font-size: 13px;
    }


    .btn {
        min-height: 46px;

        padding: 11px 18px;

        font-size: 13px;
    }


    /* HERO */

    .hero-section {
        min-height: 610px;

        background-position: 60% center;
    }


    .hero-content {
        min-height: 610px;

        padding-top: 40px;
        padding-bottom: 22px;
    }


    .hero-copy {
        width: 100%;
    }


    .hero-copy h1 {
        max-width: 92%;

        margin-bottom: 18px;

        font-size: 40px;

        line-height: 1.08;
    }


    .hero-lead {
        max-width: 90%;

        font-size: 15px;

        line-height: 1.5;
    }


    .hero-subtext {
        max-width: 90%;

        font-size: 12px;

        line-height: 1.5;
    }


    .hero-buttons {
        gap: 10px;

        margin-top: 23px;
    }


    .hero-buttons .btn {
        min-height: 47px;

        padding-right: 18px;
        padding-left: 18px;

        font-size: 12px;
    }


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

        gap: 14px;

        margin-top: 32px;
    }


    .hero-benefit {
        align-items: flex-start;

        min-height: 58px;
    }


    .hero-benefit .icon-circle {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;
    }


    .hero-benefit .icon-circle svg {
        width: 20px;
        height: 20px;
    }


    .hero-benefit strong {
        font-size: 11px;
    }


    .hero-benefit small {
        font-size: 9px;
    }


    /* FEATURED */

    .featured-products-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }


    .featured-products-section .panel-box {
        padding: 10px;
    }


    .featured-product-card {
        display: block;

        min-height: 0;
    }


    .featured-product-image {
        height: 220px;
        min-height: 0;
    }


    .featured-product-copy {
        padding: 18px 17px;
    }


    .featured-product-copy h3 {
        font-size: 20px;
    }


    .featured-product-copy p {
        font-size: 12px;
    }


    /* STRIP */

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

        padding: 5px;
    }


    .strip-item {
        min-height: 76px;

        padding: 9px 10px;
    }


    .strip-item:nth-child(2n) {
        border-right: 0;
    }


    .strip-icon {
        flex: 0 0 37px;

        width: 37px;
        height: 37px;
    }


    .strip-icon svg {
        width: 29px;
        height: 29px;
    }


    .strip-item strong {
        font-size: 12px;
    }


    .strip-item small {
        font-size: 9px;
    }


    /* CTA */

    .cta-section {
        padding-top: 24px;
        padding-bottom: 46px;
    }


    .cta-copy {
        padding: 26px 21px;
    }


    .cta-copy h2 {
        font-size: 30px;
    }


    .cta-copy p {
        font-size: 13px;
    }


    .cta-form-wrap {
        padding: 0 21px 25px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;

        padding-top: 36px;
        padding-bottom: 30px;
    }


    .footer-brand p,
    .footer-description {
        font-size: 12px;
    }


    .footer-grid h3 {
        margin-bottom: 10px;

        font-size: 14px;
    }


    .footer-links,
    .footer-contact {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .ht-container {
        width: calc(100% - 24px);
    }


    .hero-copy h1 {
        font-size: 36px;
    }


    .hero-buttons {
        display: grid;

        grid-template-columns: 1fr;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-benefits {
        grid-template-columns: 1fr;
    }

}