/* =====================================================================
   INFINITY HOMES SOLUTION — Premium Luxury Stylesheet
   Palette: cream / beige base + warm brown, soft gold, olive, charcoal,
   taupe, sand, coffee. No pure white backgrounds.
   ===================================================================== */

:root {
    /* Core neutrals — new palette */
    --cream: #FBF8F0;
    --cream-2: #EFD9C7;
    --beige: #e4c9b2;
    --sand: #d8b898;
    --taupe: #c8a480;
    --taupe-deep: #b08d68;
    --darkbeige: #122519;
    /* Accents — burgundy + amber + dark navy */
    --brown: #122519;
    /* burgundy (accent) */
    --brown-deep: #122519;
    /* deep burgundy */
    --coffee: #122519;
    /* warm dark brown (headings) */
    --coffee-2: #122519;
    /* deeper brown */
    --charcoal: #17222B;
    /* darkest navy-charcoal (header bg) */
    --olive: #6b5040;
    /* muted warm brown */
    --gold: #F1BD78;
    /* amber/gold (decorative accents) */
    --gold-soft: #f5cc94;
    /* lighter amber */
    --gold-bright: #f8d9b0;
    /* lightest amber */
    --terra: #122519;
    /* burgundy (primary CTAs + script) */
    --terra-soft: #122519;
    /* lighter burgundy */
    --aqua: #7aa9ab;
    --aqua-deep: #3c6a70;
    /* Text */
    --ink: #122519;
    --ink-soft: #122519;
    --ink-mute: #7a5a50;
    --on-dark: #FBF8F0;
    --on-dark-soft: #EFD9C7;
    /* UI */
    --radius: 22px;
    --radius-sm: 14px;
    --radius-lg: 32px;
    --shadow-sm: 0 6px 18px rgba(23, 34, 43, .10);
    --shadow: 0 18px 50px rgba(23, 34, 43, .16);
    --shadow-lg: 0 30px 80px rgba(23, 34, 43, .26);
    --ring: rgba(241, 189, 120, .55);
    --container: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font-head: 'DM Serif Display', serif;
    --font-script: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: #fbf8f0;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -.01em;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit
}

svg {
    width: 1.25em;
    height: 1.25em;
    flex: none
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem
}

.container {
    width: min(100% - 2.4rem, var(--container));
    margin-inline: auto
}

.container--narrow {
    --container: 860px
}

.center {
    text-align: center;
    margin-top: 2.4rem
}

.script {
    font-family: var(--font-script);
    color: var(--terra);
    font-weight: 500;
    font-style: italic;
    letter-spacing: .01em;
    font-size: 1.15em
}

.glass {
    background: rgba(245, 236, 217, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(199, 154, 75, .28)
}

/* ----------------------------------------------------------------
   Buttons
----------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .92rem 1.7rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .02em;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s;
    position: relative;
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
}

.btn svg {
    width: 1.15em;
    height: 1.15em
}

.btn--sm {
    padding: .65rem 1.2rem;
    font-size: .85rem
}

.btn--block {
    width: 100%;
    justify-content: center
}

.btn--gold {
    background: var(--brown);
    color: #fff5e2;
    box-shadow: 0 12px 28px rgba(150, 80, 50, .34)
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(150, 80, 50, .46)
}

.btn--outline {
    border: 1.5px solid var(--brown);
    color: var(--brown-deep);
    background: transparent
}

.btn--outline:hover {
    background: var(--brown-deep);
    color: #fbf8f0;
    transform: translateY(-3px)
}

.btn--ghost {
    background: rgba(122, 90, 56, .10);
    color: var(--brown-deep);
    border: 1px solid rgba(122, 90, 56, .22)
}

.btn--ghost:hover {
    background: var(--brown-deep);
    color: #fbf8f0;
    transform: translateY(-3px)
}

.btn--light {
    background: #fbf8f0;
    color: var(--coffee)
}

.btn--light:hover {
    background: #fff8ea;
    transform: translateY(-3px)
}

.btn--gold::after,
.btn--light::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .4), transparent 70%);
    transform: translateX(-120%);
    transition: transform .7s
}

.btn:hover::after {
    transform: translateX(120%)
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(122, 90, 56, .10);
    color: var(--brown-deep);
    border: 1px solid rgba(199, 154, 75, .3);
    transition: .3s var(--ease)
}

.icon-btn:hover {
    background: var(--brown-deep);
    color: #fbf8f0;
    transform: translateY(-2px)
}

.icon-btn--wa {
    background: #25d36622;
    color: #1f7a4d;
    border-color: #25d36644
}

.icon-btn--wa:hover {
    background: #25d366;
    color: #fff
}

/* ----------------------------------------------------------------
   Preloader
----------------------------------------------------------------- */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fbf8f0;
    transition: opacity .7s var(--ease), visibility .7s
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden
}

.preloader__inner {
    text-align: center;
    padding: 1rem
}

.preloader__brand {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.preloader__word {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 8vw, 4.4rem);
    font-weight: 700;
    color: var(--coffee);
    letter-spacing: .02em;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .1s forwards
}

.preloader__script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 7vw, 3.6rem);
    color: var(--brown);
    margin-top: -.2em;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .35s forwards
}

.preloader__line {
    width: min(280px, 60vw);
    height: 2px;
    background: rgba(122, 90, 56, .2);
    margin: 1.5rem auto .9rem;
    border-radius: 2px;
    overflow: hidden
}

.preloader__line span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: load 1.3s ease-in-out infinite
}

.preloader__tag {
    font-size: .8rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--ink-mute);
    opacity: 0;
    animation: fadeUp .9s var(--ease) .6s forwards
}

@keyframes load {
    0% {
        transform: translateX(-120%)
    }
    100% {
        transform: translateX(320%)
    }
}

/* ----------------------------------------------------------------
   Header
----------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: .4s var(--ease)
}

/* Full-width, edge-attached glass bar (no curves) */

.site-header__bar {
    background: rgba(245, 236, 217, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(199, 154, 75, .28);
    box-shadow: var(--shadow-sm)
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0
}

.site-header.scrolled .site-header__bar {
    box-shadow: var(--shadow);
    background: rgba(245, 236, 217, .96)
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem
}

/* Outlined logo badge sitting beside the company name */

.brand__logo {
     height: 100; 
    width: 100px; 
    display: block;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid var(--gold);
    padding: 2px;
    background: #fbf8f0;
    box-shadow: var(--shadow-sm)
}

.brand__logo--footer {
    /* height: 58px;
    width: 58px; */
    border-color: var(--gold-soft)
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gold);
    color: #fff3da;
    box-shadow: 0 8px 18px rgba(140, 96, 40, .35)
}

.brand__mark svg {
    width: 22px;
    height: 22px
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand__name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.18rem;
    color: var(--coffee)
}

.brand__sub {
    font-size: .62rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--brown);
    margin-top: .15rem
}

.nav__list {
    display: flex;
    gap: .3rem
}

.nav__link {
    position: relative;
    padding: .5rem .85rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: .3s
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .32rem;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .3s
}

.nav__link:hover {
    color: var(--coffee)
}

.nav__link:hover::after {
    width: 42%
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: .55rem
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    place-items: center;
    background: rgba(122, 90, 56, .1);
    color: var(--brown-deep)
}

.hamburger svg {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: .3s
}

.hamburger {
    position: relative
}

.hamburger__close {
    opacity: 0;
    transform: rotate(-90deg) scale(.6)
}

body.menu-open .hamburger__open {
    opacity: 0;
    transform: rotate(90deg) scale(.6)
}

body.menu-open .hamburger__close {
    opacity: 1;
    transform: rotate(0) scale(1)
}

/* Mobile menu */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    z-index: 950;
    background: #fbf8f0;
    box-shadow: -20px 0 60px rgba(45, 32, 20, .3);
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    padding: 5.5rem 1.6rem 2rem;
    overflow-y: auto
}

body.menu-open .mobile-menu {
    transform: translateX(0)
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(45, 32, 20, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 940
}

body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible
}

.mobile-menu__list li {
    opacity: 0;
    transform: translateX(20px)
}

body.menu-open .mobile-menu__list li {
    animation: slideIn .5s var(--ease) forwards;
    animation-delay: calc(.12s + var(--i)*.06s)
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .95rem .4rem;
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--coffee);
    border-bottom: 1px solid rgba(122, 90, 56, .16)
}

.mobile-menu__link svg {
    width: 18px;
    color: var(--gold)
}

.mobile-menu__cta {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-top: 1.6rem
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ----------------------------------------------------------------
   Marquee strips
----------------------------------------------------------------- */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: .75rem 0
}

/* Strip now flows directly under the header bar */

.marquee--header {
    background: var(--coffee);
    color: var(--on-dark);
    padding: .5rem 0
}

.marquee--soft {
    background: #fbf8f0;
    color: var(--brown-deep);
    border-block: 1px solid rgba(122, 90, 56, .18)
}

.marquee__track {
    display: inline-flex;
    gap: 2.6rem;
    padding-left: 2.6rem;
    animation: scrollX 28s linear infinite
}

.marquee__track--rev {
    animation-direction: reverse
}

.marquee--slow .marquee__track {
    animation-duration: 46s
}

.marquee:hover .marquee__track {
    animation-play-state: paused
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .92rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500
}

.marquee__icon {
    width: 16px;
    height: 16px;
    color: var(--gold-soft)
}

.marquee--soft .marquee__icon {
    color: var(--brown)
}

@keyframes scrollX {
    to {
        transform: translateX(-50%)
    }
}

/* ----------------------------------------------------------------
   Sections / heads
----------------------------------------------------------------- */

.section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    position: relative
}

.section--cream {
    background: #fbf8f0
}

.section--sand {
    background: #fbf8f0
}

.section--taupe {
    background: #fbf8f0
}

.section--darkbeige {
    background: var(--coffee);
    color: var(--on-dark)
}

.section--coffee {
    background: var(--coffee);
    color: var(--on-dark)
}

.section--charcoal {
    background: var(--charcoal);
    color: var(--on-dark)
}

.section--aqua {
    background: #dfe6df
}

.section-head {
    margin-bottom: 2.8rem;
    max-width: 680px
}

.section-head--center {
    margin-inline: auto;
    text-align: center
}

.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: .9rem
}

.section-head__eyebrow svg {
    width: 16px;
    color: var(--gold)
}

.section-head__eyebrow--light {
    color: var(--on-dark-soft)
}

.section-head__eyebrow--gold {
    color: var(--gold-soft)
}

.section-head__eyebrow--gold svg,
.section-head__eyebrow--light svg {
    color: var(--gold-soft)
}

.section-head__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.9rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    color: var(--coffee)
}

.section-head__title--light {
    color: var(--on-dark)
}

.section-head__title .script {
    font-size: 1.18em;
    display: inline-block;
    line-height: .9
}

.section-head__sub {
    margin-top: .9rem;
    color: var(--ink-soft);
    font-size: 1.02rem
}

.section-head__sub--light {
    color: var(--on-dark-soft)
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    padding: .45rem 1.1rem;
    border: 1px solid rgba(122, 90, 56, .3);
    border-radius: 999px;
    color: var(--brown-deep);
    margin-bottom: 1rem
}

/* Image brand logo (e.g. mattress / Wakefit) — transparent, after subheading */

.mattress-logo {
    display: inline-grid;
    place-items: center;
    margin: 1.2rem auto 0;
    padding: 0;
    background: transparent;
    border: 0
}

.mattress-logo img {
    height: 118px;
    width: auto;
    display: block
}

/* Mattress section: no moving outline on product cards */

#mattress .card-outline {
    display: none
}

/* Centered product grid (mattress) */

.product-grid.product-grid--center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem
}

.product-grid--center .product-card {
    flex: 0 1 235px;
    max-width: 265px
}

.brand-logo svg {
    color: var(--gold)
}

.brand-logo--gold {
    border-color: rgba(217, 184, 115, .5);
    color: var(--gold-soft)
}

/* ----------------------------------------------------------------
   Media placeholders
----------------------------------------------------------------- */

.media {
    position: relative;
    aspect-ratio: var(--ratio, 4/3);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fbf8f0;
    box-shadow: var(--shadow-sm)
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease)
}

.media__ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--brown);
    opacity: 0;
    text-align: center;
    padding: 1rem
}

.media--fallback {
    background: #fbf8f0
}

.media--fallback .media__ph {
    opacity: 1
}

.media__ph-icon {
    width: 38px;
    height: 38px;
    color: var(--brown)
}

.media__ph-text {
    font-size: .8rem;
    letter-spacing: .05em;
    max-width: 80%;
    color: var(--brown-deep)
}

.media:hover img {
    transform: scale(1.07)
}

/* Video media */

.vmedia {
    position: relative;
    aspect-ratio: var(--ratio, 9/16);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--coffee);
    box-shadow: var(--shadow)
}

.vmedia__vid,
.vmedia__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vmedia__ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--on-dark-soft);
    text-align: center;
    padding: 1rem;
    opacity: 0
}

.vmedia__ph svg {
    width: 34px;
    height: 34px;
    color: var(--gold-soft)
}

.vmedia--novid.vmedia--noimg .vmedia__ph,
.vmedia--noimg .vmedia__ph {
    opacity: 1
}

.vmedia--noimg {
    background: var(--coffee)
}

.vmedia__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(245, 236, 217, .92);
    color: var(--brown-deep);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: .3s var(--ease)
}

.vmedia__play svg {
    width: 30px;
    height: 30px
}

.vmedia__play::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(245, 236, 217, .5);
    animation: pulse 2.4s ease-out infinite
}

.vmedia:hover .vmedia__play {
    transform: translate(-50%, -50%) scale(1.08)
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: .8
    }
    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

/* ----------------------------------------------------------------
   HERO
----------------------------------------------------------------- */

.hero {
    position: relative;
    padding: clamp(7rem, 16vw, 11rem) 0 4rem;
    overflow: hidden;
    background: #fbf8f0
}

/* Video hero starts right below the fixed header strip (no gap, no overlap) */

.hero--video-only {
    padding: 0;
    display: flex;
    align-items: center;
    background: var(--coffee);
    margin-top: var(--header-h, 108px);
    height: calc(100svh - var(--header-h, 108px));
    min-height: calc(100svh - var(--header-h, 108px))
}

.hero--video-only .hero__bgvideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero--video-only.hero--novideo {
    background: #fbf8f0, url("../media/about%20section.jpg") center/cover
}

/* Soft black gradient — just enough to keep text readable */

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
background: linear-gradient( 95deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 36%, rgba(0, 0, 0, .25) 66%, rgba(0, 0, 0, .05) 100% ), linear-gradient( to top, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .15) 55%, transparent 100% );}

.hero--video-only .hero__inner {
    position: relative;
    z-index: 2;
    display: block
}

.hero--video-only .hero__content {
    max-width: 620px
}

.hero--video-only .hero__eyebrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
    color: #f3ead8
}

.hero--video-only .hero__eyebrow svg {
    color: var(--gold-bright)
}

.hero--video-only .hero__title {
    color: #fbf4e6;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .4);
    margin: 1.1rem 0
}

.hero--video-only .hero__title .script {
    color: #eaa979
}

.hero--video-only .hero__subtext {
    color: rgba(245, 238, 224, .92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
    max-width: 48ch
}

/* Light outline CTA for use on the dark video */

.btn--outline-light {
    border: 1.5px solid rgba(255, 255, 255, .6);
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.btn--outline-light:hover {
    background: #fff;
    color: var(--coffee);
    transform: translateY(-3px)
}

/* Light scroll cue */

.scroll-cue--light {
    color: #fbf4e6
}

.scroll-cue--light span {
    border-color: rgba(255, 255, 255, .8)
}

.scroll-cue--light span::after {
    background: #fff
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.hero__bgvideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero--novideo .hero__bgvideo {
    display: none
}

/* cream veil keeps dark hero text readable over the video */

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(251, 248, 240, .88)
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: .5;
    z-index: 2
}

.hero__shape--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: transparent;
    animation: float 9s ease-in-out infinite
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -60px;
    background: transparent;
    animation: float 11s ease-in-out infinite reverse
}

.hero__glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(199, 154, 75, .14);
    border: 1px solid rgba(199, 154, 75, .3);
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown-deep);
    font-weight: 600
}

.hero__eyebrow svg {
    width: 15px;
    color: var(--gold)
}

.hero__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.3rem, 5.6vw, 4.4rem);
    line-height: 1.05;
    color: var(--coffee);
    margin: 1.2rem 0
}

.hero__title .script {
    font-size: 1.12em;
    color: var(--brown);
    display: inline-block;
    transform: translateY(.08em)
}

.hero__subtext {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: var(--ink-soft);
    max-width: 46ch
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.8rem
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.4rem;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column
}

.hero-stat__num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--brown-deep)
}

.hero-stat__label {
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--ink-mute);
    text-transform: uppercase
}

.hero__media {
    position: relative
}

.hero__img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(245, 236, 217, .6)
}

.hero__badge {
    position: absolute;
    left: -1.2rem;
    bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .85rem 1.1rem;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.hero__badge svg {
    width: 26px;
    color: var(--gold)
}

.hero__badge strong {
    display: block;
    font-size: .92rem;
    color: var(--coffee);
    font-family: var(--font-head)
}

.hero__badge span {
    font-size: .72rem;
    color: var(--ink-mute)
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    color: var(--brown);
    opacity: .8
}

.scroll-cue span {
    width: 22px;
    height: 34px;
    border: 2px solid var(--brown);
    border-radius: 14px;
    position: relative
}

.scroll-cue span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 3px;
    height: 7px;
    background: var(--brown);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease-in-out infinite
}

.scroll-cue svg {
    width: 18px;
    animation: bob 1.6s ease-in-out infinite
}

@keyframes scrollDot {
    50% {
        transform: translate(-50%, 10px);
        opacity: .3
    }
}

@keyframes bob {
    50% {
        transform: translateY(5px)
    }
}

@keyframes float {
    50% {
        transform: translateY(-26px)
    }
}

/* ----------------------------------------------------------------
   Banners (16:9)
----------------------------------------------------------------- */

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

.banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .5s var(--ease)
}

.banner:hover {
    transform: translateY(-6px)
}

.banner__media {
    border-radius: 0;
    box-shadow: none
}

.banner__media,
.banner .media {
    aspect-ratio: 16/9
}

.banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .5rem;
    padding: 1.6rem;
    background: linear-gradient(to top, rgba(43, 32, 20, .86), rgba(43, 32, 20, .25) 55%, transparent)
}

.banner__title {
    font-family: var(--font-head);
    font-size: 1.32rem;
    color: #fbf4e4;
    font-weight: 600
}

.banner__text {
    font-size: .88rem;
    color: var(--on-dark-soft);
    max-width: 38ch
}

.banner .btn {
    align-self: flex-start;
    margin-top: .4rem
}

/* ----------------------------------------------------------------
   About
----------------------------------------------------------------- */

.about__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center
}

.about__media {
    position: relative
}

.about__collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: start
}

/* About video frame (replaces the image collage) */

.about__collage--video {
    display: block
}

.about__video-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid rgba(245, 236, 217, .7);
    box-shadow: var(--shadow);
    background: var(--coffee)
}

.about__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about__video-frame--novid {
    background: var(--coffee), url("../media/about%20section.jpg") center/cover
}

.about__img--1 {
    grid-row: span 2;
    border-radius: var(--radius-lg)
}

.about__img--1,
.about__img--2 {
    border: 5px solid rgba(245, 236, 217, .7);
    box-shadow: var(--shadow)
}

.about__img--2 {
    margin-top: 2.4rem
}

.about__exp {
    position: absolute;
    right: -.4rem;
    bottom: -.6rem;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: 1rem 1.3rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center
}

.about__exp-num {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--brown-deep)
}

.about__exp-label {
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--ink-mute);
    text-transform: uppercase;
    line-height: 1.3
}

.about__lead {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin: 1.1rem 0 .8rem
}

.about__body {
    color: var(--ink-soft)
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin: 1.6rem 0
}

.about__highlights li {
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem .9rem 1.15rem;
    border-radius: 16px;
    overflow: hidden;
    background: #fbf8f0;
    border: 1px solid rgba(199, 154, 75, .32);
    box-shadow: var(--shadow-sm);
    font-size: .92rem;
    font-weight: 600;
    color: var(--coffee);
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s
}

.about__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--terra)
}

.about__highlights li:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow)
}

.about__highlights svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    flex: none;
    border-radius: 12px;
    background: var(--brown);
    color: #fff6e6;
    box-shadow: 0 6px 14px rgba(150, 80, 50, .32);
    transition: transform .35s var(--ease)
}

.about__highlights li:hover svg {
    transform: scale(1.08) rotate(-3deg)
}

/* ----------------------------------------------------------------
   Category carousel
----------------------------------------------------------------- */

/* Trusted partners carousel */

.partners-carousel {
    overflow: hidden;
    padding: .5rem 0
}

.partners-carousel__track {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    width: max-content;
    animation: scrollXrev 38s linear infinite
}

@keyframes scrollXrev {
    from {
        transform: translateX(-50%)
    }
    to {
        transform: translateX(0)
    }
}

.partners-carousel:hover .partners-carousel__track {
    animation-play-state: paused
}

.partner-logo {
    flex: none;
    height: 104px;
    width: 188px;
    display: grid;
    place-items: center;
    padding: 1rem 1.4rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(122, 90, 56, .14);
    box-shadow: var(--shadow-sm)
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block
}

.cat-carousel {
    overflow: hidden;
    padding: 1.5rem 0 .5rem
}

.cat-carousel__track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollX 48s linear infinite
}

.cat-carousel:hover .cat-carousel__track {
    animation-play-state: paused
}

.cat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    width: 140px;
    text-align: center
}

.cat-chip__circle {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    border: 3px solid var(--coffee)
}

.cat-chip__circle .media {
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff
}

.cat-chip__img {
    position: absolute;
    inset: 0
}

.cat-chip__icon {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fbf8f0;
    color: var(--brown);
    box-shadow: var(--shadow-sm)
}

.cat-chip__icon svg {
    width: 18px
}

.cat-chip__ring {
    display: none
}

.cat-chip:hover .cat-chip__circle {
    transform: translateY(-4px)
}

.cat-chip__circle {
    transition: transform .4s var(--ease)
}

.cat-chip__name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--coffee)
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ----------------------------------------------------------------
   Animated outline cards
----------------------------------------------------------------- */

/* Moving outline disabled site-wide */

.card-outline {
    display: none
}

/* ----------------------------------------------------------------
   Product grid
----------------------------------------------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.3rem
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fbf8f0;
    border: 1px solid rgba(122, 90, 56, .14);
    box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.product-card:hover .card-outline {
    opacity: 1;
    animation: rotateOutline 4s linear infinite
}

/* Best Sellers: no moving outline on cards */

#bestsellers .card-outline {
    display: none
}

/* Simple card: image + name + "Visit Our Store" button only */

.product-card--simple .product-card__body {
    text-align: center;
    padding: 1rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.product-card--simple .product-card__title {
    font-size: 1.08rem
}

.product-card--simple .btn {
    width: 100%;
    justify-content: center
}

.product-card__media {
    position: relative;
    flex: none
}

.product-card__media .media {
    border-radius: 0;
    aspect-ratio: 1
}

.product-card__tag {
    position: absolute;
    left: .7rem;
    top: .7rem;
    padding: .28rem .7rem;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(43, 32, 20, .78);
    color: #fbf8f0;
    font-weight: 500
}

.product-card__body {
    padding: 1rem 1.1rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column
}

.product-card__title {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--coffee)
}

.product-card__desc {
    font-size: .85rem;
    color: var(--ink-soft);
    margin: .4rem 0 .9rem;
    min-height: 2.4em
}

/* keep CTA pinned to the bottom so buttons align across all cards */

.product-card__body .btn {
    margin-top: auto
}

.product-card .enquire-link {
    width: 100%;
    justify-content: center
}

.product-grid--dark .product-card {
    background: rgba(68, 51, 45, .35);
    border-color: rgba(217, 184, 115, .22)
}

.product-grid--dark .product-card__title {
    color: var(--on-dark)
}

.product-grid--dark .product-card__desc {
    color: var(--on-dark-soft)
}

.product-grid--dark .btn--ghost {
    background: rgba(217, 184, 115, .14);
    color: var(--gold-soft);
    border-color: rgba(217, 184, 115, .3)
}

.product-grid--dark .btn--ghost:hover {
    background: var(--gold);
    color: var(--coffee)
}

/* Chandelier section — light theme */

.section--chandlight {
    position: relative;
    overflow: hidden;
    background: #efece5
}

.chandelier-logo {
    display: inline-grid;
    place-items: center;
    margin: 1.2rem auto 0;
    padding: 0;
    background: transparent;
    border: 0
}

.chandelier-logo img {
    height: 84px;
    width: auto;
    display: block
}

/* Restly section — light theme */

.section--restlylight {
    position: relative;
    overflow: hidden;
    background: #f2ede2
}

.restly-logo {
    display: inline-grid;
    place-items: center;
    margin: 1.2rem auto 0;
    padding: 0;
    background: transparent;
    border: 0
}

.restly-logo img {
    height: 104px;
    width: auto;
    display: block
}

.restly-reels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    margin-bottom: clamp(1.8rem, 4vw, 2.6rem)
}

.restly-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 1.6rem
}

.restly-cta {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap
}

/* Restly Products */

.restly-banner {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.4rem
}

.restly-banner img {
    width: 100%;
    height: auto;
    display: block
}

.restly-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem
}

.restly-prod-card {
    border-radius: var(--radius);
    background: #fbf8f0;
    border: 1.5px solid var(--coffee);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s
}

.restly-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.restly-prod-card__img {
    aspect-ratio: 1/1;
    background: #fbf8f0;
    overflow: hidden
}

.restly-prod-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s var(--ease)
}

.restly-prod-card:hover .restly-prod-card__img img {
    transform: scale(1.05)
}

.restly-prod-card__name {
    padding: .8rem 1rem;
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--coffee);
    text-align: center
}

.restly-view-catalog {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--terra);
    font-weight: 600;
    padding: .7rem 1.6rem;
    border: 2px solid var(--terra);
    border-radius: 999px;
    transition: background .3s, color .3s
}

.restly-view-catalog:hover {
    background: var(--brown);
    color: #fff
}

.restly-view-catalog svg {
    width: 18px;
    height: 18px;
    transition: transform .3s
}

.restly-view-catalog:hover svg {
    transform: translateX(4px)
}

@media(max-width:768px) {
    .restly-prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem
    }
    .restly-prod-card__name {
        font-size: .85rem;
        padding: .6rem .7rem
    }
}

@property --ang {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false
}

@keyframes rotateOutline {
    to {
        --ang: 360deg
    }
}

/* ----------------------------------------------------------------
   Home lift
----------------------------------------------------------------- */

.home-lift__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center
}

.feature-list {
    display: grid;
    gap: .7rem;
    margin: 1.4rem 0 1.8rem
}

.feature-list--2col {
    grid-template-columns: 1fr 1fr
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 500
}

.feature-list svg {
    width: 20px;
    color: var(--gold-soft);
    flex: none
}

.section--aqua .feature-list svg {
    color: var(--aqua-deep)
}

.home-lift__text {
    font-size: 1.1rem;
    color: var(--on-dark-soft);
    max-width: 48ch
}

.home-lift__media {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
    align-items: start
}

.home-lift__media .vmedia {
    grid-row: span 2
}

.home-lift__cards {
    display: contents
}

.home-lift__thumb {
    border-radius: var(--radius)
}

/* --- Home Lift (Eider) recreated section --- */

.section--lift {
    position: relative;
    overflow: hidden;
    color: var(--on-dark);
    background: var(--charcoal)
}

.lift-partner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.3rem
}

.lift-partner__txt {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--on-dark-soft)
}

.lift-partner__logo {
    height: 64px;
    width: auto;
    display: block;
    padding: 10px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .32)
}

.lift-main {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: .5rem
}

.lift-lead {
    color: var(--on-dark-soft);
    font-size: 1.02rem;
    margin-bottom: 1.4rem;
    line-height: 1.75
}

.lift-features {
    margin: 0 0 1.6rem
}

.lift-features li {
    font-size: .9rem;
    color: var(--on-dark)
}

.lift-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .7rem;
    margin-top: 1.1rem
}

.lift-stat {
    padding: .85rem .5rem;
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(217, 184, 115, .24)
}

.lift-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.08rem;
    color: var(--gold-soft);
    line-height: 1.1
}

.lift-stat span {
    font-size: .66rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--on-dark-soft)
}

.lift-slideshow {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.lift-slides {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(217, 184, 115, .28)
}

.lift-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: liftFade 15s infinite
}

.lift-slide:nth-child(1) {
    animation-delay: 0s
}

.lift-slide:nth-child(2) {
    animation-delay: 5s
}

.lift-slide:nth-child(3) {
    animation-delay: 10s
}

.lift-slides__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(20, 16, 12, .66);
    backdrop-filter: blur(8px);
    color: var(--on-dark);
    font-size: .78rem;
    font-weight: 500;
    border: 1px solid rgba(217, 184, 115, .3)
}

.lift-slides__badge svg {
    width: 16px;
    color: var(--gold-soft)
}

@keyframes liftFade {
    0% {
        opacity: 0
    }
    3% {
        opacity: 1
    }
    30% {
        opacity: 1
    }
    36% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

/* Videos: uniform height, true proportions (no cropping), balanced + centered */

.lift-videos__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: 2.6rem 0 1.5rem;
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: var(--on-dark)
}

.lift-videos__head svg {
    width: 24px;
    color: var(--gold-soft)
}

.lift-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.4rem
}

.lift-vid {
    position: relative;
    height: clamp(260px, 30vw, 380px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0c0a08;
    border: 1px solid rgba(217, 184, 115, .18)
}

.lift-vid video {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: cover
}

/* enforce true ratio even before the video metadata loads */

.lift-vid--land video {
    aspect-ratio: 16 / 9
}

.lift-vid--port video {
    aspect-ratio: 9 / 16
}

.lift-vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0c0a08
}

.lift-vid figcaption {
    position: absolute;
    top: .7rem;
    left: .7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(20, 16, 12, .72);
    backdrop-filter: blur(6px);
    color: var(--on-dark);
    font-size: .72rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .12)
}

.lift-vid figcaption svg {
    width: 14px;
    color: var(--gold-soft)
}

.lift-vid--play {
    cursor: pointer
}

.lift-vid:hover {
    box-shadow: var(--shadow-lg)
}

/* --- Home Lift (light theme, single video) --- */

.section--liftlight {
    position: relative;
    overflow: hidden;
    background: #f4eddf
}

.liftL-partner {
    display: inline-grid;
    place-items: center;
    margin-top: 1.2rem;
    padding: 0;
    background: transparent;
    border: 0
}

.liftL-partner__logo {
    height: 98px;
    width: auto;
    display: block
}

.liftL-main {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-top: 2.2rem
}

.liftL-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(199, 154, 75, .3);
    background: #1a1510
}

.liftL-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block
}

.liftL-video__tag {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(43, 32, 20, .78);
    backdrop-filter: blur(6px);
    color: #fbf8f0;
    font-size: .76rem;
    font-weight: 500
}

.liftL-video__tag svg {
    width: 16px;
    color: var(--gold-soft)
}

.liftL-content__title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--coffee);
    margin-bottom: .8rem
}

.liftL-lead {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem
}

.liftL-features {
    margin: 0 0 1.5rem
}

.liftL-features svg {
    color: var(--gold)
}

.liftL-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.liftL-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: clamp(2rem, 5vw, 3rem)
}

.liftL-shot {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3
}

.liftL-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease)
}

.liftL-shot:hover img {
    transform: scale(1.06)
}

.liftL-shot figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.3rem 1rem .8rem;
    font-family: var(--font-head);
    font-size: 1.02rem;
    color: #fbf4e4;
    font-weight: 600;
    background: linear-gradient(to top, rgba(28, 22, 16, .88), transparent)
}

.liftL-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 2.6rem)
}

.liftL-stat {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(199, 154, 75, .28);
    box-shadow: var(--shadow-sm)
}

.liftL-stat__ic {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex: none;
    background: var(--brown);
    color: #fff6e6
}

.liftL-stat__ic svg {
    width: 22px
}

.liftL-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.12rem;
    color: var(--coffee);
    line-height: 1.1
}

.liftL-stat span {
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-mute)
}

/* ----------------------------------------------------------------
   Vertical video showcase
----------------------------------------------------------------- */

.vshowcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem
}

/* Compact reels (smaller, captionless) */

.vshowcase--compact {
    grid-template-columns: repeat(4, minmax(0, 190px));
    justify-content: center;
    gap: 1.2rem
}

.vcard {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden
}

.vcard .vmedia {
    border-radius: var(--radius)
}

.vcard__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem 1rem .9rem;
    font-family: var(--font-head);
    font-size: 1.02rem;
    color: #fbf4e4;
    font-weight: 600;
    background: linear-gradient(to top, rgba(28, 22, 16, .9), transparent)
}

.vcard:hover .card-outline {
    opacity: 1;
    animation: rotateOutline 4s linear infinite
}

.vreel {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    overflow: hidden;
    background: #1a1510
}

.vreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* Our Interiors In Motion: no moving outline on reels */

#services .card-outline {
    display: none
}

/* --- Interior Projects Carousel --- */

.int-projects-carousel {
    overflow: hidden;
    margin-bottom: clamp(2rem, 5vw, 3.4rem)
}

.int-projects-carousel__track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: scrollX 45s linear infinite
}

.int-projects-carousel:hover .int-projects-carousel__track {
    animation-play-state: paused
}

.int-project-card {
    flex: none;
    width: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4/3;
    background: #fbf8f0
}

.int-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s var(--ease)
}

.int-project-card:hover img {
    transform: scale(1.05)
}

@media(max-width:768px) {
    .int-project-card {
        width: 260px
    }
}

/* --- Home Interior Solutions (redesigned) --- */

.interior-banner {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.4rem
}

.interior-banner img {
    width: 100%;
    height: auto;
    display: block
}

.interior-intro {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-bottom: clamp(2rem, 5vw, 3.4rem)
}

.interior-lead {
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.8;
    margin-bottom: 1.6rem
}

.interior-steps {
    display: grid;
    gap: .9rem;
    margin-bottom: 1.8rem
}

.interior-steps li {
    display: flex;
    gap: .9rem;
    align-items: flex-start
}

.interior-steps__n {
    flex: none;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brown);
    color: #fff6e6;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 6px 14px rgba(150, 80, 50, .28)
}

.interior-steps strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--coffee)
}

.interior-steps p {
    font-size: .86rem;
    color: var(--ink-soft)
}

.interior-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: start
}

.interior-gallery__img {
    border-radius: var(--radius);
    border: 4px solid rgba(245, 236, 217, .7);
    box-shadow: var(--shadow)
}

.interior-gallery__img--1 {
    grid-row: span 2;
    border-radius: var(--radius-lg)
}

.interior-gallery__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .95rem;
    border-radius: 999px;
    background: rgba(43, 32, 20, .78);
    color: #fbf8f0;
    font-size: .78rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm)
}

.interior-gallery__badge svg {
    width: 16px;
    color: var(--gold-soft)
}

.interior-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-bottom: clamp(2.4rem, 5vw, 3.4rem)
}

.interior-service {
    position: relative;
    padding: 1.4rem 1.3rem;
    border-radius: var(--radius);
    background: #fbf8f0;
    border: 1px solid rgba(199, 154, 75, .26);
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s
}

.interior-service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold)
}

.interior-service__icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: .9rem;
    background: var(--brown);
    color: #fff6e6;
    box-shadow: 0 8px 18px rgba(150, 80, 50, .28)
}

.interior-service__icon svg {
    width: 24px
}

.interior-service__title {
    font-family: var(--font-head);
    font-size: 1.12rem;
    color: var(--coffee);
    margin-bottom: .35rem
}

.interior-service__desc {
    font-size: .88rem;
    color: var(--ink-soft)
}

/* Service cards as a slow infinite carousel */

.interior-carousel {
    overflow: hidden;
    margin-bottom: clamp(2.4rem, 5vw, 3.4rem)
}

.interior-carousel__track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: scrollX 45s linear infinite
}

.interior-carousel:hover .interior-carousel__track {
    animation-play-state: paused
}

.interior-carousel .interior-service {
    flex: none;
    width: 300px
}

.interior-reels__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: var(--coffee);
    margin-bottom: 1.6rem
}

.interior-reels__head svg {
    width: 24px;
    color: var(--terra)
}

.interior-reels__sub {
    text-align: center;
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.65;
    max-width: 58ch;
    margin: -.6rem auto 1.8rem
}

/* Shared page hero with background image */

.pg-hero {
    padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4.5rem);
    text-align: center;
    position: relative
}

.pg-hero--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.pg-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    pointer-events: none
}

.pg-hero__inner {
    position: relative;
    z-index: 1
}

.pg-hero--img .section-head__eyebrow {
    color: #F5CC94;
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: .3rem .9rem;
    display: inline-flex;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3)
}

.pg-hero--img .section-head__eyebrow svg {
    color: #F1BD78
}

.pg-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.15;
    margin: .6rem 0 1rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.pg-hero__title .script {
    color: #F5CC94
}

.pg-hero__sub {
    color: #fff;
    max-width: 60ch;
    margin: 0 auto 1.8rem;
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .45)
}

.pg-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.interior-bottom {
    margin-top: clamp(2.4rem, 5vw, 3.2rem);
    border-radius: var(--radius);
    background: #fbf8f0;
    border: 1px solid rgba(199, 154, 75, .22);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.6rem, 4vw, 2.6rem)
}

.interior-bottom__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(199, 154, 75, .2)
}

.interior-bottom__stat {
    text-align: center
}

.interior-bottom__stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: var(--terra);
    line-height: 1
}

.interior-bottom__stat span {
    font-size: .82rem;
    color: var(--ink-soft);
    margin-top: .3rem;
    display: block
}

.interior-bottom__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    flex-wrap: wrap
}

.interior-bottom__cta p {
    flex: 1;
    min-width: 220px;
    font-size: .95rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0
}

.interior-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-top: 2rem
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(122, 90, 56, .08);
    border: 1px solid rgba(122, 90, 56, .18);
    font-size: .85rem;
    font-weight: 500;
    color: var(--brown-deep)
}

.pill svg {
    width: 15px;
    color: var(--gold)
}

/* ----------------------------------------------------------------
   Home theater
----------------------------------------------------------------- */

.home-theater__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center
}

.home-theater__text {
    font-size: 1.08rem;
    color: var(--on-dark-soft);
    margin-bottom: 1.4rem;
    max-width: 46ch
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .8rem;
    margin-bottom: 1.8rem
}

.mini-card {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(217, 184, 115, .08);
    border: 1px solid rgba(217, 184, 115, .2);
    font-size: .88rem;
    font-weight: 500;
    color: var(--on-dark)
}

.mini-card svg {
    width: 20px;
    color: var(--gold-soft)
}

.mini-card--gold {
    background: rgba(217, 184, 115, .12)
}

/* --- Home Theater (light theme, video + image slideshow) --- */

.section--theaterlight {
    position: relative;
    overflow: hidden;
    background: #efe9de
}

.theaterL-main {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-top: 1.5rem
}

.theaterL-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(199, 154, 75, .3);
    background: #0c0a08
}

.theaterL-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block
}

.theaterL-video__tag {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(20, 16, 12, .78);
    backdrop-filter: blur(6px);
    color: #fbf8f0;
    font-size: .76rem;
    font-weight: 500
}

.theaterL-video__tag svg {
    width: 16px;
    color: var(--gold-soft)
}

.theaterL-content__title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--coffee);
    margin-bottom: .8rem
}

.theaterL-lead {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8
}

.theaterL-cards {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1.3rem 0 1.6rem
}

.theaterL-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(199, 154, 75, .28);
    font-size: .86rem;
    font-weight: 500;
    color: var(--brown-deep)
}

.theaterL-card svg {
    width: 18px;
    color: var(--terra)
}

/* Slideshow with text overlay */

/* Gallery row: text (left) + compact slideshow (right) */

.theaterL-gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-top: clamp(2.4rem, 5vw, 3.6rem)
}

.theaterL-gallery__title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--coffee);
    margin-bottom: .7rem
}

.theaterL-gallery__lead {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem
}

.theaterL-gallery__list {
    margin: 0 0 1.5rem
}

.theaterL-gallery__list svg {
    color: var(--terra)
}

.theaterL-slideshow {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #1a1510
}

.theaterL-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: theaterFade 18s infinite
}

.theaterL-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.theaterL-slide:nth-child(1) {
    animation-delay: 0s
}

.theaterL-slide:nth-child(2) {
    animation-delay: 6s
}

.theaterL-slide:nth-child(3) {
    animation-delay: 12s
}

.theaterL-slide__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(1.4rem, 3.5vw, 2.6rem);
    background: linear-gradient(to top, rgba(16, 12, 9, .92), rgba(16, 12, 9, .25) 55%, transparent)
}

.theaterL-slide__cap h4 {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    color: #fbf4e4;
    margin-bottom: .35rem
}

.theaterL-slide__cap p {
    color: var(--on-dark-soft);
    font-size: .96rem;
    max-width: 52ch
}

@keyframes theaterFade {
    0% {
        opacity: 0;
        transform: scale(1.05)
    }
    4% {
        opacity: 1
    }
    28% {
        opacity: 1;
        transform: scale(1)
    }
    34% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.theaterL-dots {
    position: absolute;
    right: clamp(1.4rem, 3.5vw, 2.6rem);
    bottom: clamp(1.4rem, 3.5vw, 2.6rem);
    z-index: 3;
    display: flex;
    gap: .4rem
}

.theaterL-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    animation: theaterDot 18s infinite
}

.theaterL-dots span:nth-child(1) {
    animation-delay: 0s
}

.theaterL-dots span:nth-child(2) {
    animation-delay: 6s
}

.theaterL-dots span:nth-child(3) {
    animation-delay: 12s
}

@keyframes theaterDot {
    0% {
        background: var(--gold-soft);
        width: 22px;
        border-radius: 8px
    }
    28% {
        background: var(--gold-soft);
        width: 22px;
        border-radius: 8px
    }
    34% {
        background: rgba(255, 255, 255, .45);
        width: 8px;
        border-radius: 50%
    }
    100% {
        background: rgba(255, 255, 255, .45);
        width: 8px;
        border-radius: 50%
    }
}

/* ----------------------------------------------------------------
   Swimming pool
----------------------------------------------------------------- */

.swimming__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center
}

.swimming .section-head__eyebrow {
    color: var(--aqua-deep)
}

.swimming .section-head__eyebrow svg {
    color: var(--aqua-deep)
}

.swimming__text {
    font-size: 1.08rem;
    color: #41504a;
    margin-bottom: 1rem;
    max-width: 48ch
}

.swimming__media {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1rem;
    align-items: start
}

.swimming__img {
    border-radius: var(--radius);
    border: 4px solid rgba(245, 236, 217, .7)
}

.swimming__img--small {
    margin-top: 2rem
}

/* Pool video (autoplay, muted) + image slideshow */

.pool-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(63, 111, 118, .28);
    background: #0c1a1c
}

.pool-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block
}

.pool-video__tag {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(12, 26, 28, .78);
    backdrop-filter: blur(6px);
    color: #eef3f0;
    font-size: .76rem;
    font-weight: 500
}

.pool-video__tag svg {
    width: 16px;
    color: #9fc6c4
}

/* Gallery row: text (left) + compact slideshow (right) */

.pool-gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    margin-top: clamp(2.4rem, 5vw, 3.6rem)
}

.pool-gallery__title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--coffee);
    margin-bottom: .7rem
}

.pool-gallery__lead {
    color: #41504a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem
}

.pool-gallery__list {
    margin: 0 0 1.5rem
}

.pool-gallery__list svg {
    color: var(--aqua-deep)
}

.pool-slideshow {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0c1a1c
}

.pool-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: poolFade 12s infinite
}

.pool-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pool-slide__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(1.3rem, 3.2vw, 2.2rem);
    background: linear-gradient(to top, rgba(8, 18, 20, .92), rgba(8, 18, 20, .25) 55%, transparent)
}

.pool-slide__cap h4 {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2.6vw, 1.75rem);
    color: #eef6f4;
    margin-bottom: .3rem
}

.pool-slide__cap p {
    color: #cfe1de;
    font-size: .92rem;
    max-width: 46ch
}

.pool-slide:nth-child(1) {
    animation-delay: 0s
}

.pool-slide:nth-child(2) {
    animation-delay: 6s
}

@keyframes poolFade {
    0% {
        opacity: 0;
        transform: scale(1.04)
    }
    5% {
        opacity: 1
    }
    42% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.pool-slideshow__badge {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .95rem;
    border-radius: 999px;
    background: rgba(12, 26, 28, .7);
    backdrop-filter: blur(8px);
    color: #eef3f0;
    font-size: .78rem;
    font-weight: 500;
    border: 1px solid rgba(159, 198, 196, .3)
}

.pool-slideshow__badge svg {
    width: 16px;
    color: #9fc6c4
}

/* ----------------------------------------------------------------
   Restly
----------------------------------------------------------------- */

.restly__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.1fr;
    gap: 1.3rem;
    align-items: stretch
}

.restly__features {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    justify-content: center
}

/* ----------------------------------------------------------------
   Testimonials carousel
----------------------------------------------------------------- */

.testi-viewport {
    overflow: hidden;
    padding: 1rem 0;
    width: min(100% - 2.4rem, var(--container));
    margin-inline: auto
}

.testi-track {
    display: flex;
    gap: 1.4rem;
    transition: transform .8s var(--ease)
}

.testi-card {
    flex: 0 0 calc((100% - 2.8rem)/3);
    position: relative;
    padding: 2rem 1.6rem 1.6rem;
    border-radius: var(--radius);
    background: #fbf8f0;
    border: 1px solid rgba(122, 90, 56, .16);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column
}

.testi-card__quote {
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    color: rgba(199, 154, 75, .3)
}

.testi-card__quote svg {
    width: 38px;
    height: 38px
}

.stars {
    display: inline-flex;
    gap: .2rem;
    margin-bottom: .7rem
}

.stars .star {
    color: rgba(122, 90, 56, .25)
}

.stars .star.on {
    color: var(--gold)
}

.stars svg {
    width: 17px;
    height: 17px
}

.testi-card__text {
    font-size: .98rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-style: italic;
    flex: 1
}

.testi-card__author {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(122, 90, 56, .14)
}

.testi-card__avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff3da
}

.testi-card__avatar svg {
    width: 22px
}

.testi-card__author strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--coffee)
}

.testi-card__author em {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-style: normal;
    font-size: .78rem;
    color: var(--ink-mute)
}

.testi-card__author em svg {
    width: 13px;
    color: var(--gold)
}

.testi-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1.8rem
}

.testi-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(122, 90, 56, .3);
    transition: .3s
}

.testi-dots button.is-active {
    background: var(--brown);
    width: 26px;
    border-radius: 9px
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.faq {
    border-radius: var(--radius-sm);
    background: #fbf8f0;
    border: 1px solid rgba(122, 90, 56, .16);
    overflow: hidden;
    transition: .3s
}

.faq[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(199, 154, 75, .4)
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.3rem;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--brown-deep);
    list-style: none;
    background: rgba(134, 55, 62, .1);
    transition: background .35s var(--ease), color .35s
}

.faq__q::-webkit-details-marker {
    display: none
}

.faq__q:hover {
    background: rgba(134, 55, 62, .16)
}

.faq[open] .faq__q {
    background: var(--brown);
    color: #fff6e6
}

.faq__icon {
    flex: none;
    width: 24px;
    height: 24px;
    color: var(--terra);
    transition: transform .35s var(--ease), color .35s
}

.faq[open] .faq__icon {
    transform: rotate(135deg);
    color: #fff6e6
}

.faq__a {
    padding: 0 1.3rem 1.2rem;
    color: var(--ink-soft)
}

/* ----------------------------------------------------------------
   Showroom
----------------------------------------------------------------- */

.showroom__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.4rem, 3vw, 2.2rem);
    align-items: stretch
}

.showroom__video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(122, 90, 56, .2);
    background: #0c0a08
}

.showroom__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.showroom__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem
}

.showroom__thumb {
    border-radius: var(--radius)
}

.info-card {
    padding: 1.6rem;
    border-radius: var(--radius)
}

.showroom__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.4rem
}

.showroom__list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start
}

.showroom__list svg {
    width: 22px;
    color: var(--gold);
    margin-top: .15rem;
    flex: none
}

.showroom__list strong {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brown);
    margin-bottom: .1rem
}

.showroom__list span,
.showroom__list a {
    color: var(--ink-soft);
    font-size: .95rem
}

.showroom__cta {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap
}

.map-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(122, 90, 56, .2)
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: sepia(.12) saturate(1.05)
}

/* ----------------------------------------------------------------
   Contact
----------------------------------------------------------------- */

.contact__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start
}

.contact__lead {
    color: var(--ink-soft);
    margin: 1rem 0 1.6rem;
    font-size: 1.05rem
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem
}

.contact-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(122, 90, 56, .06);
    border: 1px solid rgba(122, 90, 56, .16);
    transition: .3s var(--ease)
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background: rgba(122, 90, 56, .1)
}

.contact-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gold);
    color: #fff3da;
    flex: none
}

.contact-card__icon svg {
    width: 20px
}

.contact-card strong {
    display: block;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--brown)
}

.contact-card em {
    font-style: normal;
    font-size: .9rem;
    color: var(--ink);
    line-height: 1.35
}

.contact__form-wrap {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: #fbf8f0;
    border: 1px solid rgba(241, 189, 120, .3);
    box-shadow: var(--shadow)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.field {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.field label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--brown-deep);
    text-transform: uppercase
}

.field input,
.field textarea,
.field select {
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(122, 90, 56, .25);
    background: rgba(245, 236, 217, .6);
    color: var(--ink);
    transition: .3s
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fbf4e4;
    box-shadow: 0 0 0 4px rgba(199, 154, 75, .18)
}

.field textarea {
    resize: vertical
}

.field__err {
    font-size: .76rem;
    color: #b4452f;
    font-weight: 500
}

.form-alert {
    display: flex;
    gap: .7rem;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    font-size: .92rem
}

.form-alert svg {
    width: 24px;
    flex: none
}

.form-alert--success {
    background: rgba(124, 122, 82, .16);
    border: 1px solid rgba(124, 122, 82, .4);
    color: #4f5333
}

.form-alert--error {
    background: rgba(180, 69, 47, .12);
    border: 1px solid rgba(180, 69, 47, .35);
    color: #8a3221
}

.contact-form__note {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--ink-mute)
}

.contact-form__note svg {
    width: 15px;
    color: var(--gold)
}

/* ----------------------------------------------------------------
   Footer
----------------------------------------------------------------- */

.site-footer {
    background: var(--charcoal);
    color: var(--on-dark);
    padding-top: clamp(3rem, 6vw, 5rem)
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 2.4rem;
    padding-bottom: 2.6rem
}

.brand--footer .brand__name {
    color: #fbf8f0
}

.brand--footer .brand__sub {
    color: var(--gold-soft)
}

.footer-about {
    color: var(--on-dark-soft);
    font-size: .92rem;
    margin: 1.1rem 0 1.3rem;
    max-width: 42ch
}

.footer-social {
    display: flex;
    gap: .6rem
}

.footer-social .icon-btn {
    background: rgba(217, 184, 115, .1);
    border-color: rgba(217, 184, 115, .25);
    color: var(--gold-soft)
}

.footer-social .icon-btn:hover {
    background: var(--gold);
    color: var(--coffee)
}

.footer-col__title {
    font-family: var(--font-head);
    font-size: 1.08rem;
    color: #fbf8f0;
    margin-bottom: 1.1rem;
    position: relative;
    padding-bottom: .6rem
}

.footer-col__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.footer-links a {
    color: var(--on-dark-soft);
    font-size: .9rem;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: .4rem
}

.footer-links a:hover {
    color: var(--gold-soft);
    padding-left: .3rem
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.footer-contact li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    color: var(--on-dark-soft);
    font-size: .9rem
}

.footer-contact svg {
    width: 19px;
    color: var(--gold-soft);
    flex: none;
    margin-top: .15rem
}

.footer-contact a:hover {
    color: var(--gold-soft)
}

.site-footer__bottom {
    border-top: 1px solid rgba(217, 184, 115, .18);
    padding: 1.3rem 0
}

.site-footer__bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: var(--on-dark-soft)
}

.footer-credit {
    font-family: var(--font-script);
    font-size: 1.15rem;
    color: var(--gold-soft)
}

/* ----------------------------------------------------------------
   Floating edge buttons + to-top
----------------------------------------------------------------- */

.edge-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 850;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.edge-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem .8rem;
    border-radius: 14px 0 0 14px;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: -6px 6px 20px rgba(0, 0, 0, .25);
    transition: .4s var(--ease);
    max-width: 46px;
    overflow: hidden
}

.edge-btn svg {
    width: 22px;
    flex: none
}

.edge-btn__label {
    white-space: nowrap;
    opacity: 0;
    transition: .3s
}

.edge-btn:hover {
    max-width: 170px
}

.edge-btn:hover .edge-btn__label {
    opacity: 1
}

.edge-btn--wa {
    background: #25d366
}

.edge-btn--catalog {
    background: var(--brown)
}

.to-top {
    position: fixed;
    right: 1rem;
    bottom: 1.4rem;
    z-index: 840;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brown-deep);
    color: #fbf8f0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(180deg);
    transition: .4s var(--ease)
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(180deg)
}

.to-top:hover {
    background: var(--gold);
    color: var(--coffee)
}

/* ----------------------------------------------------------------
   Mobile bottom nav
----------------------------------------------------------------- */

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 860;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: .4rem .3rem calc(.4rem + env(safe-area-inset-bottom));
    background: rgba(245, 236, 217, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(199, 154, 75, .3);
    box-shadow: 0 -10px 30px rgba(60, 44, 28, .15)
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    font-size: .64rem;
    font-weight: 500;
    color: var(--ink-mute);
    padding: .35rem .5rem;
    border-radius: 12px;
    transition: .3s
}

.bottom-nav__item svg {
    width: 22px
}

.bottom-nav__item.is-active {
    color: var(--brown-deep)
}

.bottom-nav__item--wa {
    color: #1f9d52
}

/* ----------------------------------------------------------------
   Scroll reveal
----------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--d, 0s)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none
    }
}

/* Glow accent (chandelier / restly logos) */

.glow {
    position: relative
}

.glow::after {
    content: "";
    position: absolute;
    inset: -30%;
    background: transparent;
    z-index: -1;
    animation: breathe 3.5s ease-in-out infinite
}

@keyframes breathe {
    50% {
        opacity: .5;
        transform: scale(1.1)
    }
}

/* ----------------------------------------------------------------
   Responsive
----------------------------------------------------------------- */

@media (max-width:1080px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .vshowcase {
        grid-template-columns: repeat(2, 1fr)
    }
    .restly__grid {
        grid-template-columns: 1fr 1fr
    }
    .restly__features {
        grid-column: 1/-1;
        flex-direction: row;
        flex-wrap: wrap
    }
    .restly-reels {
        grid-template-columns: repeat(2, 1fr)
    }
    .testi-card {
        flex-basis: calc((100% - 1.4rem)/2)
    }
    .interior-services {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:900px) {
    .nav,
    .header-call span {
        display: none
    }
    .hamburger {
        display: grid
    }
    .hero__inner,
    .about__grid,
    .home-lift__grid,
    .lift-main,
    .liftL-main,
    .interior-intro,
    .home-theater__grid,
    .theaterL-main,
    .theaterL-gallery,
    .swimming__grid,
    .pool-gallery,
    .showroom__grid,
    .contact__grid {
        grid-template-columns: 1fr
    }
    /* on mobile show the interior image segment first (right after the subheading) */
    .interior-gallery {
        order: -1
    }
    /* swimming pool: slideshow before its text content on mobile */
    .pool-gallery .pool-slideshow {
        order: -1
    }
    .hero__media {
        order: -1;
        max-width: 440px;
        margin-inline: auto
    }
    .banner-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto
    }
    .home-theater__media {
        max-width: 560px;
        margin-inline: auto;
        width: 100%
    }
}

@media (max-width:760px) {
    .marquee--header {
        font-size: .8rem
    }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.6rem
    }
    .footer-col--brand {
        grid-column: 1/-1
    }
    .footer-col--contact {
        grid-column: 1/-1
    }
    .testi-card {
        flex-basis: 100%
    }
    .vshowcase {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    body {
        padding-bottom: 64px
    }
    /* room for bottom nav */
    .bottom-nav {
        display: flex
    }
    .edge-buttons {
        top: auto;
        bottom: 80px;
        transform: none
    }
    .edge-btn {
        max-width: 42px;
        padding: .6rem .65rem
    }
    .to-top {
        bottom: 80px;
        left: .9rem;
        right: auto
    }
    .lift-videos {
        gap: .9rem
    }
    .lift-vid {
        height: auto;
        width: 100%
    }
    .lift-vid video {
        width: 100%;
        height: auto
    }
    .liftL-gallery {
        grid-template-columns: 1fr;
        gap: .9rem
    }
    .liftL-stats {
        grid-template-columns: 1fr 1fr;
        gap: .7rem
    }
    .liftL-cta {
        flex-direction: column
    }
    .liftL-cta .btn {
        width: 100%;
        justify-content: center
    }
    .interior-services {
        grid-template-columns: 1fr 1fr;
        gap: .8rem
    }
    .interior-service {
        padding: 1.1rem 1rem
    }
    /* exactly 2 products per row on mobile */
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: .8rem
    }
    .product-grid.product-grid--center {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .8rem
    }
    .product-grid--center .product-card {
        max-width: none
    }
    .restly-reels {
        grid-template-columns: 1fr 1fr;
        gap: .8rem
    }
    .product-card__body {
        padding: .8rem .8rem 1rem
    }
    .product-card__title {
        font-size: .98rem
    }
    .product-card__desc {
        font-size: .78rem;
        min-height: auto
    }
    .product-card .enquire-link span {
        font-size: .78rem
    }
    .about__highlights {
        grid-template-columns: 1fr
    }
    .feature-list--2col {
        grid-template-columns: 1fr
    }
    .contact-cards {
        grid-template-columns: 1fr
    }
    .field-row {
        grid-template-columns: 1fr
    }
    .vshowcase {
        grid-template-columns: 1fr 1fr;
        gap: .8rem
    }
    /* interior reels: 2 per row on mobile (no scroll) */
    .vshowcase--compact {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: 1fr 1fr;
        overflow: visible;
        padding-bottom: 0;
        gap: .7rem
    }
    .restly__grid {
        grid-template-columns: 1fr 1fr
    }
    .home-lift__media {
        grid-template-columns: 1fr 1fr
    }
    .home-lift__media .vmedia {
        grid-column: 1/-1;
        grid-row: auto
    }
    .swimming__media {
        grid-template-columns: 1fr
    }
    .swimming__img--small {
        margin-top: 0
    }
    .site-footer__bottom-row {
        justify-content: center;
        text-align: center
    }
    .hero__stats {
        gap: 1.2rem
    }
    .section-head {
        margin-bottom: 2rem
    }
}

@media (max-width:380px) {
    .product-grid {
        gap: .6rem
    }
    .brand__sub {
        display: none
    }
}

/* Reduced motion */

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important
    }
    .reveal {
        opacity: 1;
        transform: none
    }
}


 /* Banner Styles */
    .breadcrumb-banner {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                  url('../media/Chicken.avif') center/cover no-repeat;
      color: white;
      padding: 100px 0;
      text-align: center;
      position: relative;
    }

    .breadcrumb-banner h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
      margin-top: 120px;
    }

    .breadcrumb-container {
      background-color: rgba(255, 255, 255, 0.15);
      padding: 8px 25px;
      border-radius: 30px;
      display: inline-block;
    }

    .breadcrumb a {
      color: #fff;
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .breadcrumb-item.active {
      color: #e0e0e0;
    }

    /* Optional fade-in animation */
    .breadcrumb-banner {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease-in-out;
    }

    .breadcrumb-banner.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Products Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    display: none;
    z-index: 9999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #0073B5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Products Dropdown */

.mobile-product-dropdown {
    width: 100%;
}

.product-toggle {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Submenu */
.mobile-product-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 5px 0 10px 20px;
}

.mobile-product-submenu li {
    margin: 0;
}

.mobile-product-submenu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    border-left: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.mobile-product-submenu li a:hover {
    opacity: 1;
    padding-left: 20px;
}

/* Active dropdown */
.mobile-product-dropdown.active .mobile-product-submenu {
    display: block;
}

.mobile-product-dropdown.active .product-arrow {
    transform: rotate(180deg);
}