/*
 * House Topic — Global Custom CSS
 *
 * All custom site CSS should live here.
 * Elementor HTML widgets should contain HTML only.
 */

/* =========================================================
   HOUSE TOPIC
   PRODUCT SHOWCASE
   ========================================================= */

.ht-products {
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background: #F7F7F4;
    font-family: "Manrope", sans-serif;
}

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

.ht-products__container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}


/* -------------------------
   HEADER
   ------------------------- */

.ht-products__header {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.ht-products__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: #8A7B68;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ht-products__title {
    margin: 0;
    padding: 0;
    color: #171A18;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -.025em;
}

.ht-products__intro {
    max-width: 720px;
    margin: 18px auto 0;
    padding: 0;
    color: #737771;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}


/* -------------------------
   PRODUCT GRID
   ------------------------- */

.ht-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}


/* -------------------------
   PRODUCT CARD
   ------------------------- */

.ht-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #D9DBD5;
    border-radius: 4px;
    transition:
        transform 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease;
}

.ht-product-card:hover {
    transform: translateY(-4px);
    border-color: #C7CAC3;
    box-shadow: 0 16px 36px rgba(23, 26, 24, .08);
}

.ht-product-card--featured,
.ht-product-card--featured:hover {
    border-color: #092950;
}


/* -------------------------
   IMAGE
   ------------------------- */

.ht-product-card__image-link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
}

.ht-product-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ECEDE8;
}

.ht-product-card__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border: 0;
    transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.ht-product-card:hover .ht-product-card__image-wrap img {
    transform: scale(1.035);
}


/* -------------------------
   CONTENT
   ------------------------- */

.ht-product-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 190px;
    padding: 24px 20px 20px;
}

.ht-product-card__title {
    margin: 0;
    padding: 0;
    color: #171A18;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.ht-product-card__description {
    max-width: 280px;
    margin: 10px 0 0;
    padding: 0;
    color: #737771;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}


/* -------------------------
   CARD FOOTER
   ------------------------- */

.ht-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 22px;
}

.ht-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #092950;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 180ms ease,
        gap 180ms ease;
}

.ht-product-card__link:hover {
    gap: 11px;
    color: #253F62;
}

.ht-product-card__link > span:last-child {
    font-size: 17px;
    line-height: 1;
}

.ht-product-card__number {
    color: #737771;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .04em;
    opacity: .7;
}


/* -------------------------
   FOCUS
   ------------------------- */

.ht-product-card__link:focus-visible,
.ht-product-card__image-link:focus-visible {
    outline: 2px solid #092950;
    outline-offset: 4px;
}


/* =========================================================
   FEATURED LOUVERED PERGOLA
   ========================================================= */

.ht-featured-product {
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background: #FFFFFF;
    font-family: "Manrope", sans-serif;
}

.ht-featured-product,
.ht-featured-product *,
.ht-featured-product *::before,
.ht-featured-product *::after {
    box-sizing: border-box;
}

.ht-featured-product__container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.ht-featured-product__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 72px;
    align-items: center;
}


/* -------------------------
   MAIN IMAGE
   ------------------------- */

.ht-featured-product__visual {
    min-width: 0;
}

.ht-featured-product__main-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
}

.ht-featured-product__main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ECEDE8;
    border-radius: 4px;
}

.ht-featured-product__main-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border: 0;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.ht-featured-product__main-image-link:hover
.ht-featured-product__main-image img {
    transform: scale(1.025);
}


/* -------------------------
   CONTENT
   ------------------------- */

.ht-featured-product__content {
    width: 100%;
    max-width: 520px;
}

.ht-featured-product__eyebrow {
    display: block;
    margin: 0 0 14px;
    color: #8A7B68;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ht-featured-product__title {
    margin: 0;
    padding: 0;
    color: #171A18;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.ht-featured-product__description {
    margin: 16px 0 0;
    padding: 0;
    color: #737771;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}


/* -------------------------
   FRAME COLOURS
   ------------------------- */

.ht-featured-product__colours {
    margin-top: 38px;
}

.ht-featured-product__colours-label {
    display: block;
    margin-bottom: 14px;
    color: #171A18;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ht-featured-product__colour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 380px;
}


/* -------------------------
   COLOUR OPTION
   ------------------------- */

.ht-colour-option {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    outline: none;
}

.ht-colour-option__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ECEDE8;
    border: 1px solid #D9DBD5;
    border-radius: 4px;
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.ht-colour-option__image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border: 0;
    transition: transform 400ms cubic-bezier(.2, .7, .2, 1);
}

.ht-colour-option:hover .ht-colour-option__image {
    border-color: #253F62;
}

.ht-colour-option:hover .ht-colour-option__image img {
    transform: scale(1.035);
}

.ht-colour-option--selected .ht-colour-option__image {
    border: 2px solid #092950;
}

.ht-colour-option__name {
    display: block;
    margin-top: 9px;
    color: #3F433F;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.ht-colour-option:focus-visible {
    outline: 2px solid #092950;
    outline-offset: 4px;
}


/* -------------------------
   ACTIONS
   ------------------------- */

.ht-featured-product__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.ht-featured-product__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .02em;
    text-decoration: none !important;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.ht-featured-product__button--primary {
    gap: 9px;
    background: #092950;
    border-color: #092950;
    color: #FFFFFF !important;
}

.ht-featured-product__button--primary span {
    color: #FFFFFF !important;
}

.ht-featured-product__button--primary:hover,
.ht-featured-product__button--primary:hover span {
    background: #253F62;
    border-color: #253F62;
    color: #FFFFFF !important;
}

.ht-featured-product__button--secondary {
    background: transparent;
    border-color: #D9DBD5;
    color: #171A18 !important;
}

.ht-featured-product__button--secondary:hover {
    background: #171A18;
    border-color: #171A18;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.ht-featured-product__button:focus-visible,
.ht-featured-product__main-image-link:focus-visible {
    outline: 2px solid #092950;
    outline-offset: 4px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .ht-products {
        padding: 90px 0 100px;
    }

    .ht-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .ht-products__title {
        font-size: 44px;
    }

    .ht-product-card__content {
        min-height: 190px;
    }

    .ht-product-card__title {
        font-size: 20px;
    }

    .ht-featured-product {
        padding: 90px 0;
    }

    .ht-featured-product__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, .9fr);
        gap: 48px;
    }

    .ht-featured-product__title {
        font-size: 42px;
    }

    .ht-featured-product__description {
        font-size: 16px;
    }

    .ht-featured-product__colours {
        margin-top: 30px;
    }

    .ht-featured-product__actions {
        margin-top: 28px;
    }
}


@media (max-width: 767px) {

    .ht-products {
        padding: 76px 0 82px;
    }

    .ht-products__container,
    .ht-featured-product__container {
        width: min(100% - 32px, 620px);
    }

    .ht-products__header {
        margin-bottom: 40px;
        text-align: left;
    }

    .ht-products__eyebrow,
    .ht-featured-product__eyebrow {
        font-size: 12px;
    }

    .ht-products__title {
        font-size: 36px;
        line-height: 1.08;
    }

    .ht-products__intro {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.55;
    }

    .ht-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ht-product-card__content {
        min-height: 0;
        padding: 22px 20px 20px;
    }

    .ht-product-card__title {
        font-size: 20px;
        line-height: 1.2;
    }

    .ht-product-card__description {
        max-width: 100%;
        font-size: 15px;
    }

    .ht-product-card__footer {
        padding-top: 26px;
    }


    /* Featured */

    .ht-featured-product {
        padding: 72px 0 80px;
    }

    .ht-featured-product__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ht-featured-product__content {
        max-width: 100%;
    }

    .ht-featured-product__eyebrow {
        margin-bottom: 12px;
    }

    .ht-featured-product__title {
        font-size: 36px;
        line-height: 1.08;
    }

    .ht-featured-product__description {
        margin-top: 14px;
        font-size: 16px;
    }

    .ht-featured-product__colours {
        margin-top: 30px;
    }

    .ht-featured-product__colour-grid {
        max-width: 100%;
        gap: 12px;
    }

    .ht-featured-product__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
    }

    .ht-featured-product__button {
        width: 100%;
        min-height: 48px;
    }
}


@media (max-width: 480px) {

    .ht-products {
        padding: 64px 0 72px;
    }

    .ht-products__container,
    .ht-featured-product__container {
        width: calc(100% - 28px);
    }

    .ht-products__title {
        font-size: 32px;
    }

    .ht-product-card__content {
        padding: 20px 18px 18px;
    }

    .ht-product-card__title {
        font-size: 20px;
    }

    .ht-product-card__description {
        font-size: 14px;
    }

    .ht-product-card__footer {
        padding-top: 24px;
    }


    /* Featured */

    .ht-featured-product {
        padding: 64px 0 72px;
    }

    .ht-featured-product__grid {
        gap: 34px;
    }

    .ht-featured-product__title {
        font-size: 34px;
    }

    .ht-featured-product__description {
        font-size: 15px;
    }

    .ht-featured-product__colour-grid {
        gap: 10px;
    }

    .ht-colour-option__name {
        font-size: 12px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ht-product-card,
    .ht-product-card__image-wrap img,
    .ht-product-card__link,
    .ht-featured-product__main-image img,
    .ht-colour-option__image,
    .ht-colour-option__image img,
    .ht-featured-product__button {
        transition: none;
    }

    .ht-product-card:hover,
    .ht-featured-product__button:hover {
        transform: none;
    }

    .ht-product-card:hover .ht-product-card__image-wrap img,
    .ht-featured-product__main-image-link:hover
    .ht-featured-product__main-image img,
    .ht-colour-option:hover .ht-colour-option__image img {
        transform: none;
    }
}


/* =========================================================
   HOUSE TOPIC — FEATURE STRIP
   ========================================================= */

.ht-feature-strip {
    width: 100%;
    padding: 28px 0 30px;
    background: #ffffff;
    border-top: 1px solid #e8e9e5;
    border-bottom: 1px solid #e8e9e5;
    font-family: "Manrope", sans-serif;
}

.ht-feature-strip *,
.ht-feature-strip *::before,
.ht-feature-strip *::after {
    box-sizing: border-box;
}

.ht-feature-strip__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
}

.ht-feature {
    position: relative;

    min-width: 0;
    min-height: 54px;

    padding: 4px 20px;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 12px;
}

.ht-feature:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 1px;
    height: 42px;

    background: #e1e2de;

    transform: translateY(-50%);
}


/* =========================================================
   ICON
   ========================================================= */

.ht-feature__icon {
    flex: 0 0 34px !important;

    width: 34px !important;
    height: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #171a18;
}

.ht-feature__icon svg {
    display: block !important;

    width: 29px !important;
    height: 29px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* =========================================================
   TEXT
   ========================================================= */

.ht-feature > div:last-child {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.ht-feature h3 {
    display: block !important;

    margin: 0 0 4px !important;
    padding: 0 !important;

    color: #171a18 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;

    white-space: normal;
}

.ht-feature p {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #737771 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;

    white-space: normal;
}


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

@media (max-width: 1100px) {

    .ht-feature-strip {
        padding: 28px 0;
    }

    .ht-feature-strip__inner {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 22px;
    }

    .ht-feature {
        padding: 4px 20px;
    }

    .ht-feature:nth-child(3)::after,
    .ht-feature:nth-child(6)::after {
        display: none;
    }
}


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

@media (max-width: 767px) {

    .ht-feature-strip {
        padding: 24px 0;
    }

    .ht-feature-strip__inner {
        width: calc(100% - 28px);
        grid-template-columns: repeat(2, 1fr);
        row-gap: 22px;
    }

    .ht-feature {
        padding: 3px 10px;
        gap: 9px;
    }

    .ht-feature:nth-child(even)::after {
        display: none;
    }

    .ht-feature__icon {
        flex-basis: 30px !important;
        width: 30px !important;
        height: 30px !important;
    }

    .ht-feature__icon svg {
        width: 25px !important;
        height: 25px !important;
    }

    .ht-feature h3 {
        font-size: 11px !important;
    }

    .ht-feature p {
        font-size: 9px !important;
    }
}


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

@media (max-width: 480px) {

    .ht-feature-strip__inner {
        width: calc(100% - 20px);
    }

    .ht-feature {
        padding: 3px 5px;
        gap: 7px;
    }

    .ht-feature__icon {
        flex-basis: 27px !important;
        width: 27px !important;
        height: 27px !important;
    }

    .ht-feature__icon svg {
        width: 23px !important;
        height: 23px !important;
    }

    .ht-feature h3 {
        font-size: 10px !important;
    }

    .ht-feature p {
        font-size: 8px !important;
    }
}





/* =========================================================
   MOTORised AWNINGS SHOWCASE
   ========================================================= */

.ht-awning-showcase {
    width: 100%;
    padding: 105px 0 110px;
    background: #F7F7F4;
    font-family: "Manrope", sans-serif;
}

.ht-awning-showcase *,
.ht-awning-showcase *::before,
.ht-awning-showcase *::after {
    box-sizing: border-box;
}

.ht-awning-showcase__container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 58px;

    align-items: start;
}


/* =========================================================
   LEFT COLUMN
   ========================================================= */

.ht-awning-showcase__left {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ht-awning-showcase__intro {
    padding-top: 5px;
}

.ht-awning-showcase__intro h2 {
    margin: 0;
    padding: 0;

    color: #171A18;

    font-family: "Manrope", sans-serif;
    font-size: 46px !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
}

.ht-awning-showcase__accent {
    display: block;

    width: 30px;
    height: 2px;

    margin: 18px 0 17px;

    background: #092950;
}

.ht-awning-showcase__intro p {
    max-width: 410px;

    margin: 0;

    color: #737771;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.ht-awning-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin-top: 28px;
    padding: 14px 20px;

    gap: 9px;

    color: #FFFFFF;
    background: #092950;

    border: 1px solid #092950;
    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.ht-awning-showcase__button:hover {
    color: #FFFFFF;
    background: #253F62;
    border-color: #253F62;
}


/* =========================================================
   FRAME COLOURS
   ========================================================= */

.ht-awning-colours {
    margin-top: 54px;
}

.ht-awning-colours h3 {
    margin: 0 0 18px !important;
    padding: 0 !important;

    color: #171A18 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.ht-frame-colours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ht-frame-colour {
    display: block;

    min-width: 0;

    color: #171A18;
    text-decoration: none;
}

.ht-frame-colour__image {
    width: 100%;
    aspect-ratio: 1.15 / 0.72;

    overflow: hidden;

    background: #ECEDE8;
    border-radius: 3px;
}

.ht-frame-colour__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 400ms ease;
}

.ht-frame-colour span {
    display: block;

    margin-top: 8px;

    color: #171A18;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.ht-frame-colour:hover .ht-frame-colour__image img {
    transform: scale(1.04);
}


/* =========================================================
   RIGHT — MAIN IMAGE
   ========================================================= */

.ht-awning-showcase__right {
    min-width: 0;
}

.ht-awning-showcase__hero {
    width: 100%;
    aspect-ratio: 1.72 / 1;

    overflow: hidden;

    background: #ECEDE8;
    border-radius: 4px;
}

.ht-awning-showcase__hero img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   FABRIC SHOWCASE
   ========================================================= */

.ht-fabric-showcase {
    padding-top: 10px;
}

.ht-fabric-showcase__header h3 {
    margin: 0 0 12px !important;
    padding: 0 !important;

    color: #171A18 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

.ht-fabric-swatches {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.ht-fabric-swatch {
    display: block;

    aspect-ratio: 1 / 0.9;

    overflow: hidden;

    border-radius: 2px;

    background: #ECEDE8;
}

.ht-fabric-swatch img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 350ms ease;
}

.ht-fabric-swatch:hover img {
    transform: scale(1.05);
}


/* =========================================================
   CATALOGUE LINK
   ========================================================= */

.ht-fabric-catalogue {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;
    padding: 13px 16px;

    color: #171A18;
    background: transparent;

    border: 1px solid #9FA29C;
    border-radius: 3px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.035em;

    text-decoration: none !important;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.ht-fabric-catalogue:hover {
    color: #FFFFFF !important;
    background: #092950;
    border-color: #ffffff;
}


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

@media (max-width: 1000px) {

    .ht-awning-showcase {
        padding: 85px 0 90px;
    }

    .ht-awning-showcase__container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ht-awning-showcase__intro p {
        max-width: 650px;
    }

    .ht-awning-showcase__left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        align-items: start;
    }

    .ht-awning-colours {
        margin-top: 0;
    }

}


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

@media (max-width: 767px) {

    .ht-awning-showcase {
        padding: 72px 0 78px;
    }

    .ht-awning-showcase__container {
        width: calc(100% - 32px);
        gap: 35px;
    }

    .ht-awning-showcase__left {
        display: block;
    }

    .ht-awning-showcase__intro h2 {
        font-size: 36px !important;
    }

    .ht-awning-showcase__intro p {
        font-size: 16px;
    }

    .ht-awning-colours {
        margin-top: 42px;
    }

    .ht-frame-colours {
        gap: 9px;
    }

    .ht-frame-colour span {
        font-size: 12px;
    }

    .ht-awning-showcase__hero {
        aspect-ratio: 1.35 / 1;
    }

    .ht-fabric-swatches {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

}


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

@media (max-width: 480px) {

    .ht-awning-showcase {
        padding: 62px 0 68px;
    }

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

    .ht-awning-showcase__intro h2 {
        font-size: 32px !important;
    }

    .ht-frame-colours {
        gap: 7px;
    }

    .ht-fabric-showcase__header h3 {
        font-size: 14px !important;
    }

    .ht-fabric-swatches {
        gap: 7px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ht-frame-colour__image img,
    .ht-fabric-swatch img,
    .ht-awning-showcase__button,
    .ht-fabric-catalogue {
        transition: none;
    }

}

/* Motorised Awnings — final link styling */

.ht-awning-showcase__button {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.ht-awning-showcase__button:hover {
    color: #FFFFFF !important;
}

.ht-frame-colour,
.ht-frame-colour:hover,
.ht-frame-colour:focus {
    text-decoration: none !important;
}

.ht-frame-colour span {
    color: #171A18 !important;
    text-decoration: none !important;
}






/* =========================================================
   HOUSE TOPIC — PROJECTS SHOWCASE
   ========================================================= */

.ht-projects-showcase {
    width: 100%;
    padding: 110px 0 115px;
    background: #092950;
    font-family: "Manrope", sans-serif;
}

.ht-projects-showcase *,
.ht-projects-showcase *::before,
.ht-projects-showcase *::after {
    box-sizing: border-box;
}

.ht-projects-showcase__container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.ht-projects-showcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 42px;
}

.ht-projects-showcase__heading {
    max-width: 760px;
}

.ht-projects-showcase__eyebrow {
    display: block;
    margin-bottom: 12px;

    color: rgba(255,255,255,.68);

    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ht-projects-showcase__heading h2 {
    margin: 0;
    padding: 0;

    color: #FFFFFF !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 50px !important;
    font-weight: 600 !important;
    line-height: 1.06 !important;
    letter-spacing: -.025em !important;
}

.ht-projects-showcase__heading p {
    margin: 12px 0 0;

    color: rgba(255,255,255,.70);

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


/* =========================================================
   HEADER BUTTON
   ========================================================= */

.ht-projects-showcase__button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 13px 19px;

    color: #171A18 !important;
    background: #FFFFFF;

    border: 1px solid #FFFFFF;
    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .035em;

    text-decoration: none !important;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.ht-projects-showcase__button:hover {
    color: #FFFFFF !important;
    background: transparent;
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.ht-projects-showcase__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.ht-project-card {
    min-width: 0;
}

.ht-project-card__link {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 1 / 1.04;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 4px;

    text-decoration: none !important;

    background: #252925;
}

.ht-project-card__image {
    position: absolute;
    inset: 0;
}

.ht-project-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 600ms cubic-bezier(.2,.65,.25,1);
}

.ht-project-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(9,41,80,0) 35%,
            rgba(9,41,80,.88) 100%
        );

    pointer-events: none;
}

.ht-project-card__content {
    position: absolute;

    right: 20px;
    bottom: 19px;
    left: 20px;

    z-index: 2;
}

.ht-project-card__category {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .09em;
}

.ht-project-card h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #FFFFFF !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -.015em !important;
}

.ht-project-card__arrow {
    display: block;

    margin-top: 11px;

    color: #FFFFFF;

    font-size: 19px;
    line-height: 1;

    transition: transform 180ms ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.ht-project-card__link:hover .ht-project-card__image img {
    transform: scale(1.045);
}

.ht-project-card__link:hover .ht-project-card__arrow {
    transform: translateX(5px);
}


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

@media (max-width: 1050px) {

    .ht-projects-showcase {
        padding: 90px 0 95px;
    }

    .ht-projects-showcase__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .ht-projects-showcase__heading h2 {
        font-size: 44px !important;
    }

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

    .ht-project-card__link {
        aspect-ratio: 1.35 / 1;
    }

}


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

@media (max-width: 767px) {

    .ht-projects-showcase {
        padding: 74px 0 80px;
    }

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

    .ht-projects-showcase__header {
        margin-bottom: 30px;
        gap: 20px;
    }

    .ht-projects-showcase__heading h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .ht-projects-showcase__heading p {
        font-size: 15px;
    }

    .ht-projects-showcase__button {
        width: 100%;
    }

    .ht-projects-showcase__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ht-project-card__link {
        aspect-ratio: 1.35 / 1;
    }

    .ht-project-card h3 {
        font-size: 19px !important;
    }

}


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

@media (max-width: 480px) {

    .ht-projects-showcase {
        padding: 64px 0 70px;
    }

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

    .ht-projects-showcase__heading h2 {
        font-size: 31px !important;
    }

    .ht-project-card__content {
        right: 17px;
        bottom: 17px;
        left: 17px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ht-project-card__image img,
    .ht-project-card__arrow,
    .ht-projects-showcase__button {
        transition: none;
    }

}





/* =========================================================
   HOUSE TOPIC — WHY CHOOSE US
   ========================================================= */

.ht-why-choose {
    width: 100%;
    padding: 76px 0 82px;
    background: #F7F7F4;
    font-family: "Manrope", sans-serif;
}

.ht-why-choose *,
.ht-why-choose *::before,
.ht-why-choose *::after {
    box-sizing: border-box;
}


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

.ht-why-choose__container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.ht-why-choose__header {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.ht-why-choose__eyebrow {
    display: block;
    margin-bottom: 10px;

    color: #737771;

    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ht-why-choose__header h2 {
    margin: 0;
    padding: 0;

    color: #171A18 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
}


/* =========================================================
   GRID
   ========================================================= */

.ht-why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================================
   ITEM
   ========================================================= */

.ht-why-choose__item {
    position: relative;

    min-width: 0;
    padding: 0 34px;

    text-align: center;
}

.ht-why-choose__item + .ht-why-choose__item {
    border-left: 1px solid #D9DBD5;
}


/* =========================================================
   ICON
   ========================================================= */

.ht-why-choose__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 14px;

    color: #092950;
}

.ht-why-choose__icon svg {
    display: block;

    width: 34px;
    height: 34px;
}


/* =========================================================
   TITLE
   ========================================================= */

.ht-why-choose__item h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #171A18 !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -.01em !important;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ht-why-choose__item p {
    margin: 5px 0 0;

    color: #737771;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}


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

@media (max-width: 900px) {

    .ht-why-choose {
        padding: 66px 0 72px;
    }

    .ht-why-choose__header {
        margin-bottom: 42px;
    }

    .ht-why-choose__header h2 {
        font-size: 30px !important;
    }

    .ht-why-choose__item {
        padding: 0 18px;
    }

    .ht-why-choose__item h3 {
        font-size: 15px !important;
    }

    .ht-why-choose__item p {
        font-size: 12px;
    }

}


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

@media (max-width: 767px) {

    .ht-why-choose {
        padding: 60px 0 66px;
    }

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

    .ht-why-choose__header {
        margin-bottom: 38px;
    }

    .ht-why-choose__eyebrow {
        font-size: 10px;
    }

    .ht-why-choose__header h2 {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    .ht-why-choose__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 38px;
    }

    .ht-why-choose__item {
        padding: 0 14px;
    }

    .ht-why-choose__item:nth-child(3) {
        border-left: 0;
    }

    .ht-why-choose__item:nth-child(3),
    .ht-why-choose__item:nth-child(4) {
        padding-top: 4px;
    }

}


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

@media (max-width: 480px) {

    .ht-why-choose {
        padding: 54px 0 60px;
    }

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

    .ht-why-choose__header h2 {
        font-size: 25px !important;
    }

    .ht-why-choose__grid {
        row-gap: 34px;
    }

    .ht-why-choose__item {
        padding: 0 8px;
    }

    .ht-why-choose__icon {
        margin-bottom: 11px;
    }

    .ht-why-choose__icon svg {
        width: 31px;
        height: 31px;
    }

    .ht-why-choose__item h3 {
        font-size: 14px !important;
    }

    .ht-why-choose__item p {
        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ht-why-choose * {
        scroll-behavior: auto;
    }

}





/* =========================================================
   HOUSE TOPIC — FINAL CTA
   ========================================================= */

.ht-final-cta {
    width: 100%;
    padding: 0;

    background: #F7F7F4;

    font-family: "Manrope", sans-serif;
}

.ht-final-cta *,
.ht-final-cta *::before,
.ht-final-cta *::after {
    box-sizing: border-box;
}


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

.ht-final-cta__container {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);

    width: 100%;
    min-height: 500px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ht-final-cta__image {
    position: relative;

    min-height: 500px;
    overflow: hidden;
}

.ht-final-cta__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 700ms cubic-bezier(.2,.65,.25,1);
}


/* Subtle image treatment */

.ht-final-cta__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0) 65%,
            rgba(9,41,80,.16) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT PANEL
   ========================================================= */

.ht-final-cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 78px clamp(48px, 6vw, 92px);

    background: #092950;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ht-final-cta__eyebrow {
    display: block;

    margin-bottom: 16px;

    color: rgba(255,255,255,.65);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: .13em;
    text-transform: uppercase;
}


/* =========================================================
   HEADING
   ========================================================= */

.ht-final-cta__content h2 {
    margin: 0;
    padding: 0;

    max-width: 560px;

    color: #FFFFFF !important;

    font-family: "Manrope", sans-serif !important;
    font-size: clamp(42px, 4vw, 58px) !important;
    font-weight: 600 !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ht-final-cta__content p {
    max-width: 500px;

    margin: 22px 0 0;

    color: rgba(255,255,255,.72);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.ht-final-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.ht-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 14px 21px;

    border-radius: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: .035em;

    text-decoration: none !important;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}


/* Primary */

.ht-final-cta__button--primary {
    color: #171A18 !important;
    background: #FFFFFF;

    border: 1px solid #FFFFFF;
}

.ht-final-cta__button--primary:hover {
    color: #FFFFFF !important;
    background: transparent;
}


/* Secondary */

.ht-final-cta__button--secondary {
    color: #FFFFFF !important;
    background: transparent;

    border: 1px solid rgba(255,255,255,.55);
}

.ht-final-cta__button--secondary:hover {
    color: #171A18 !important;
    background: #FFFFFF;

    border-color: #FFFFFF;
}


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.ht-final-cta__container:hover
.ht-final-cta__image img {
    transform: scale(1.018);
}


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

@media (max-width: 900px) {

    .ht-final-cta__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 440px;
    }

    .ht-final-cta__image {
        min-height: 440px;
    }

    .ht-final-cta__content {
        padding: 60px 42px;
    }

    .ht-final-cta__content h2 {
        font-size: 40px !important;
    }

}


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

@media (max-width: 767px) {

    .ht-final-cta__container {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .ht-final-cta__image {
        min-height: 330px;

        aspect-ratio: 1.45 / 1;
    }

    .ht-final-cta__content {
        padding: 58px 24px 62px;
    }

    .ht-final-cta__eyebrow {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .ht-final-cta__content h2 {
        font-size: 36px !important;
        line-height: 1.06 !important;
    }

    .ht-final-cta__content p {
        margin-top: 18px;
        font-size: 15px;
    }

    .ht-final-cta__actions {
        align-items: stretch;
        flex-direction: column;

        margin-top: 27px;
    }

    .ht-final-cta__button {
        width: 100%;
    }

}


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

@media (max-width: 480px) {

    .ht-final-cta__image {
        min-height: 280px;
    }

    .ht-final-cta__content {
        padding: 50px 20px 54px;
    }

    .ht-final-cta__content h2 {
        font-size: 32px !important;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ht-final-cta__image img,
    .ht-final-cta__button {
        transition: none;
    }

}






/* =========================================================
   HOUSE TOPIC — ABOUT PAGE
   OUR APPROACH
   ========================================================= */

.ht-approach {
    width: 100%;
    background: #092950;
    color: #FFFFFF;
    padding: 110px 0 115px;
}

.ht-approach__container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.ht-approach__header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.ht-approach__eyebrow {
    display: block;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ht-approach__title {
    margin: 0;
    padding: 0;
    color: #FFFFFF !important;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.ht-approach__intro {
    max-width: 680px;
    margin: 22px auto 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   STEPS
   --------------------------------------------------------- */

.ht-approach__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.ht-approach__step {
    position: relative;
    min-width: 0;
    padding: 0 48px;
}

.ht-approach__step:first-child {
    padding-left: 0;
}

.ht-approach__step:last-child {
    padding-right: 0;
}


/* Vertical dividers */

.ht-approach__step + .ht-approach__step {
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}


/* Number */

.ht-approach__number {
    margin: 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
}


/* Small accent line */

.ht-approach__line {
    width: 38px;
    height: 2px;
    margin: 20px 0 24px;
    background: #8A7B68;
}


/* Step heading */

.ht-approach__step-title {
    margin: 0;
    padding: 0;
    color: #FFFFFF !important;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
}


/* Step text */

.ht-approach__step-text {
    max-width: 330px;
    margin: 16px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .ht-approach {
        padding: 90px 0 95px;
    }

    .ht-approach__title {
        font-size: 40px;
    }

    .ht-approach__header {
        margin-bottom: 60px;
    }

    .ht-approach__step {
        padding: 0 30px;
    }

    .ht-approach__step-title {
        font-size: 22px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .ht-approach {
        padding: 76px 0 82px;
    }

    .ht-approach__container {
        width: min(100% - 40px, 600px);
    }

    .ht-approach__header {
        margin-bottom: 48px;
        text-align: left;
    }

    .ht-approach__eyebrow {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .ht-approach__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .ht-approach__intro {
        margin-top: 16px;
        font-size: 16px;
    }

    .ht-approach__steps {
        display: block;
    }

    .ht-approach__step,
    .ht-approach__step:first-child,
    .ht-approach__step:last-child {
        padding: 28px 0;
    }

    .ht-approach__step:first-child {
        padding-top: 0;
    }

    .ht-approach__step:last-child {
        padding-bottom: 0;
    }

    .ht-approach__step + .ht-approach__step {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.20);
    }

    .ht-approach__line {
        margin: 16px 0 20px;
    }

    .ht-approach__step-title {
        font-size: 22px;
    }

    .ht-approach__step-text {
        max-width: 100%;
        margin-top: 12px;
        font-size: 16px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .ht-approach {
        padding: 64px 0 70px;
    }

    .ht-approach__container {
        width: min(100% - 32px, 600px);
    }

    .ht-approach__title {
        font-size: 32px;
    }

}






/* =========================================================
   HOUSE TOPIC — CONTACT INFORMATION
   ========================================================= */

.ht-contact-info {
    width: 100%;
    max-width: 560px;
    padding: 42px 48px;
    background: #F7F7F4;
    border: 1px solid #D9DBD5;
    border-radius: 4px;
    box-sizing: border-box;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.ht-contact-info__details {
    width: 100%;
    margin: 0;
    border-top: 1px solid #D9DBD5;
}


/* Individual contact item */

.ht-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid #D9DBD5;
    color: inherit;
    text-decoration: none !important;
    box-sizing: border-box;
}

.ht-contact-info__item:hover,
.ht-contact-info__item:focus,
.ht-contact-info__item:active {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   ICON
   ========================================================= */

.ht-contact-info__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: #092950;
}

.ht-contact-info__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* =========================================================
   CONTACT TEXT
   ========================================================= */

.ht-contact-info__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}


/* Small label */

.ht-contact-info__label {
    display: block;
    color: #8A7B68;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* Main contact value */

.ht-contact-info__value {
    display: block;
    color: #171A18;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}


/* Hover state for phone/email */

a.ht-contact-info__item:hover .ht-contact-info__value,
a.ht-contact-info__item:focus .ht-contact-info__value {
    color: #092950;
}


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

.ht-contact-info__showroom {
    margin-top: 30px;
    padding: 22px 24px;
    background: #FFFFFF;
    border-left: 3px solid #092950;
    box-sizing: border-box;
}


/* Showroom heading */

.ht-contact-info__showroom-label {
    display: block;
    margin: 0 0 8px;
    color: #092950;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* Showroom description */

.ht-contact-info__showroom p {
    margin: 0;
    padding: 0;
    color: #737771;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


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

@media (max-width: 1024px) {

    .ht-contact-info {
        max-width: none;
        padding: 38px 40px;
    }

}


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

@media (max-width: 767px) {

    .ht-contact-info {
        max-width: none;
        padding: 32px 24px;
    }

    .ht-contact-info__item {
        gap: 15px;
        padding: 19px 0;
    }

    .ht-contact-info__value {
        font-size: 16px;
    }

    .ht-contact-info__showroom {
        margin-top: 26px;
        padding: 20px 22px;
    }

}


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

@media (max-width: 480px) {

    .ht-contact-info {
        padding: 28px 20px;
    }

    .ht-contact-info__item {
        gap: 13px;
    }

    .ht-contact-info__icon {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
    }

    .ht-contact-info__showroom {
        padding: 19px 20px;
    }

}





/* =========================================================
   HOUSE TOPIC — FAQ SECTION
   ========================================================= */

.ht-faqs {
    width: 100%;
    padding: 110px 0 120px;
    background: #F7F7F4;
    box-sizing: border-box;
}

.ht-faqs__container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.ht-faqs__intro {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.ht-faqs__eyebrow {
    display: block;
    margin: 0 0 14px;

    color: #8A7B68;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ht-faqs__intro h2 {
    margin: 0;
    padding: 0;

    color: #171A18;
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.ht-faqs__intro p {
    max-width: 680px;
    margin: 18px auto 0;
    padding: 0;

    color: #737771;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   FAQ GRID
   --------------------------------------------------------- */

.ht-faqs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    align-items: start;
}


/* ---------------------------------------------------------
   FAQ ITEM
   --------------------------------------------------------- */

.ht-faq {
    margin: 0;
    padding: 0;

    background: #FFFFFF;
    border: 1px solid #D9DBD5;
    border-radius: 4px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ht-faq:hover {
    border-color: #BFC3BC;
}

.ht-faq[open] {
    border-color: #092950;
}


/* ---------------------------------------------------------
   QUESTION
   --------------------------------------------------------- */

.ht-faq summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 72px;
    padding: 20px 24px;

    color: #171A18;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;

    cursor: pointer;
    list-style: none;

    box-sizing: border-box;
}


/* Remove browser default marker */

.ht-faq summary::-webkit-details-marker {
    display: none;
}

.ht-faq summary::marker {
    display: none;
}


/* Question text */

.ht-faq summary > span:first-child {
    display: block;
    padding-right: 30px;
}


/* ---------------------------------------------------------
   PLUS / MINUS ICON
   --------------------------------------------------------- */

.ht-faq__icon {
    position: relative;

    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    margin-left: 16px;

    color: #092950;
}


/* Horizontal line */

.ht-faq__icon::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 3px;

    width: 14px;
    height: 1.5px;

    background: currentColor;

    transform: translateY(-50%);
}


/* Vertical line */

.ht-faq__icon::after {
    content: "";

    position: absolute;
    top: 3px;
    left: 50%;

    width: 1.5px;
    height: 14px;

    background: currentColor;

    transform: translateX(-50%);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* Open = minus */

.ht-faq[open] .ht-faq__icon::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
}


/* ---------------------------------------------------------
   ANSWER
   --------------------------------------------------------- */

.ht-faq__answer {
    padding: 0 24px 24px;
}

.ht-faq__answer p {
    max-width: 760px;

    margin: 0;
    padding: 18px 0 0;

    border-top: 1px solid #ECEDE8;

    color: #737771;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FOCUS ACCESSIBILITY
   --------------------------------------------------------- */

.ht-faq summary:focus-visible {
    outline: 2px solid #092950;
    outline-offset: -3px;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1024px) {

    .ht-faqs {
        padding: 90px 0 100px;
    }

    .ht-faqs__intro {
        margin-bottom: 48px;
    }

    .ht-faqs__intro h2 {
        font-size: 42px;
    }

    .ht-faqs__grid {
        gap: 14px 18px;
    }

    .ht-faq summary {
        padding: 19px 21px;
        font-size: 15px;
    }

    .ht-faq__answer {
        padding: 0 21px 21px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .ht-faqs {
        padding: 76px 0 82px;
    }

    .ht-faqs__container {
        width: min(100% - 32px, 620px);
    }

    .ht-faqs__intro {
        margin-bottom: 38px;
    }

    .ht-faqs__eyebrow {
        font-size: 12px;
    }

    .ht-faqs__intro h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .ht-faqs__intro p {
        margin-top: 14px;
        font-size: 16px;
    }

    .ht-faqs__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ht-faq summary {
        min-height: 66px;
        padding: 18px 18px;
        font-size: 15px;
    }

    .ht-faq__answer {
        padding: 0 18px 20px;
    }

    .ht-faq__answer p {
        padding-top: 16px;
        font-size: 15px;
        line-height: 1.65;
    }

    .ht-faq__icon {
        flex-basis: 18px;
        width: 18px;
        height: 18px;
    }

    .ht-faq__icon::before {
        left: 2px;
        width: 13px;
    }

    .ht-faq__icon::after {
        height: 13px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

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

    .ht-faqs__intro h2 {
        font-size: 32px;
    }

    .ht-faq summary {
        padding: 17px 16px;
    }

    .ht-faq__answer {
        padding: 0 16px 18px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .ht-faq,
    .ht-faq__icon::after {
        transition: none;
    }

}









