:root {
    --cream: #F4EFE5;
    --sand: #DFCEB0;
    --taupe: #A8937C;
    --espresso: #2E241C;
    --brass: #AD8A52;
    --brass-light: #C7A76B;
    --dark: #241B14;
    --line: rgba(46, 36, 28, 0.14);
    --radius: 2px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--espresso);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.brand img {
    width: 12rem;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: sans-serif;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--brass);
    font-weight: 600;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- fluted signature motif ---------- */
.fluted {
    background-image: repeating-linear-gradient(90deg,
            rgba(46, 36, 28, 0.10) 0px,
            rgba(46, 36, 28, 0.10) 2px,
            transparent 2px,
            transparent 14px);
}

.fluted-gold {
    background-image: repeating-linear-gradient(90deg,
            rgba(173, 138, 82, 0.55) 0px,
            rgba(173, 138, 82, 0.55) 2px,
            transparent 2px,
            transparent 14px);
}

.divider {
    height: 34px;
    width: 100%;
}

::selection {
    background: var(--brass-light);
    color: var(--dark);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}

/* ---------- NAV ---------- */
header {
    position: fixed;
    background: rgba(244, 239, 229, 1);
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 4px 0;
    transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(244, 239, 229, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    position: relative;
    flex-shrink: 0;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--cream);
}

.brand-text {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.brand-text small {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--taupe);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 34px;
    font-size: 0.86rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--brass);
    transition: width .3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    border: 1px solid var(--espresso);
    transition: all .3s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}

.btn-solid {
    background: var(--espresso);
    color: var(--cream);
}

.btn-solid:hover {
    background: var(--brass);
    border-color: var(--brass);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--espresso);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--espresso);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/luxury-gray-and-white-bedroom.jpg') center 30% / cover no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 27, 20, 0.15) 0%, rgba(36, 27, 20, 0.35) 55%, rgba(36, 27, 20, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 152px;
    color: var(--cream);
}

.hero-content .eyebrow {
    color: var(--brass-light);
}

.hero h1 {
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    line-height: 1.04;
    max-width: 850px;
    margin: 18px 0 26px;
    color: #fff;
    opacity: 0;
    transform: translateY(24px);
    animation: rise .9s var(--ease) .25s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--brass-light);
}

.hero p.lead {
    max-width: 520px;
    font-size: 1.02rem;
    color: rgba(244, 239, 229, 0.86);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: rise .9s var(--ease) .45s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: rise .9s var(--ease) .6s forwards;
}

.hero .btn-solid {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--dark);
}

.hero .btn-solid:hover {
    background: var(--brass-light);
}

.hero .btn-ghost {
    border-color: rgba(244, 239, 229, 0.5);
    color: var(--cream);
}

.hero .btn-ghost:hover {
    border-color: var(--cream);
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 34px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(244, 239, 229, 0.7);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 46px;
    background: rgba(244, 239, 229, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--brass-light);
    animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
    0% {
        top: -100%;
    }

    60% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* ---------- INTRO STRIP ---------- */
.intro {
    padding: 100px 0 70px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

.intro h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.22;
}

.intro-copy {
    color: #514536;
    font-size: 0.98rem;
    max-width: 46ch;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.stat {
    border-top: 2px solid var(--brass);
    padding-top: 10px;
    min-width: 110px;
}

.stat b {
    font-family: sans-serif;
    font-size: 2rem;
    display: block;
    font-weight: 500;
}

.stat span {
    font-size: 0.72rem;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    max-width: 560px;
}

.section-head p {
    max-width: 340px;
    color: #514536;
    font-size: 0.93rem;
    padding-bottom: 4px;
}

/* ---------- SERVICES ---------- */
.services {
    padding: 30px 0 100px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-card {
    background: var(--cream);
    padding: 40px 32px;
    position: relative;
    transition: background .35s var(--ease);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 26px;
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: #EFE6D5;
}

.service-num {
    font-family: sans-serif;
    font-style: italic;
    color: var(--taupe);
    font-size: 0.85rem;
    margin-bottom: 26px;
    display: block;
}

.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    color: var(--brass);
}

.service-card h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-card p {
    font-size: 0.88rem;
    color: #57493a;
    margin: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 20px 0 110px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.g-large {
    grid-row: span 2;
    min-height: 560px;
}

.g-small {
    min-height: 269px;
}

.gallery-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(0deg, rgba(20, 15, 10, 0.78), transparent);
    color: #fff;
}

.gallery-cap .eyebrow {
    color: var(--brass-light);
}

.gallery-cap h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.15rem;
    margin: 6px 0 0;
}

/* ---------- ALTERNATIVES / SIGNATURE ---------- */
.alt {
    background: var(--dark);
    color: var(--cream);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.alt::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8%;
    width: 46%;
    opacity: 0.55;
}

.alt .wrap {
    position: relative;
    z-index: 2;
}

.alt .eyebrow {
    color: var(--brass-light);
}

.alt h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    max-width: 640px;
    margin: 16px 0 20px;
}

.alt>.wrap>p {
    max-width: 540px;
    color: rgba(244, 239, 229, 0.72);
    font-size: 0.98rem;
    margin-bottom: 56px;
}

.alt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.alt-card {
    border: 1px solid rgba(244, 239, 229, 0.14);
    padding: 30px 26px;
    border-radius: var(--radius);
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.alt-card:hover {
    border-color: var(--brass);
    transform: translateY(-4px);
}

.alt-card .from {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(244, 239, 229, 0.5);
}

.alt-card .to {
    font-family: sans-serif;
    font-size: 1.5rem;
    color: var(--brass-light);
    margin: 8px 0 14px;
}

.alt-card p {
    font-size: 0.86rem;
    color: rgba(244, 239, 229, 0.68);
    margin: 0;
}

.arrow {
    display: inline-block;
    margin: 0 6px;
    color: rgba(244, 239, 229, 0.4);
}

/* ---------- PROCESS / WHY ---------- */
.why {
    padding: 110px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
}

.why-item:last-child {
    border-bottom: 1px solid var(--line);
}

.why-item .tag {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--brass);
    font-size: 0.95rem;
}

.why-item h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.why-item p {
    font-size: 0.9rem;
    color: #57493a;
    margin: 0;
    max-width: 46ch;
}

.why-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 100%;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
}

.why-visual-cap {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(244, 239, 229, 0.94);
    padding: 16px 20px;
    max-width: 240px;
    border-left: 3px solid var(--brass);
}

.why-visual-cap p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--espresso);
}

/* ---------- CTA / CONTACT ---------- */
.contact {
    padding: 110px 0 0;
}

.contact-panel {
    background: linear-gradient(135deg, #EFE6D5, var(--sand));
    border-radius: var(--radius);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.contact-panel::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    bottom: -40px;
    width: 180px;
    opacity: 0.35;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 14px 0 18px;
    max-width: 420px;
}

.contact-info p {
    color: #514536;
    max-width: 400px;
    margin-bottom: 30px;
    font-size: 0.96rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
}

.cm-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--espresso);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s var(--ease);
}

.contact-methods a:hover .cm-icon {
    background: var(--brass);
}

.contact-methods small {
    display: block;
    color: var(--taupe);
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

form.enquiry {
    position: relative;
    z-index: 2;
    background: var(--cream);
    padding: 34px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

form.enquiry .eyebrow {
    margin-bottom: 4px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--taupe);
}

.field input,
.field select,
.field textarea {
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 9px 2px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--espresso);
    resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brass);
}

form.enquiry .btn-solid {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
}

.form-note {
    font-size: 0.78rem;
    color: var(--taupe);
    text-align: center;
    min-height: 18px;
}

/* ---------- FOOTER ---------- */
footer {
    margin-top: 110px;
    background: var(--dark);
    color: rgba(244, 239, 229, 0.65);
    padding: 60px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.footer-top .brand-text {
    color: #fff;
}

.footer-top p {
    font-size: 0.88rem;
    max-width: 320px;
    margin-top: 16px;
}

.footer-col h4 {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: rgba(244, 239, 229, 0.4);
    margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 12px;
    color: rgba(244, 239, 229, 0.75);
}

.footer-col a:hover {
    color: var(--brass-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 0.76rem;
    color: rgba(244, 239, 229, 0.4);
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- floating whatsapp ---------- */
.float-wa {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 150;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform .3s var(--ease);
}

.float-wa:hover {
    transform: scale(1.08);
}

.float-wa svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {

    .intro-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .g-large {
        min-height: 360px;
    }

    .g-small {
        min-height: 300px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 44px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .nav-cta .btn-solid {
        display: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .alt-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        grid-template-columns: 60px 1fr;
    }

    .wrap {
        padding: 0 20px;
    }

    .hero-content {
        padding-bottom: 10rem !important;
    }
}