/* ============================================================
   THE DECOR BLOOM — modern home decor theme
   Palette: cream canvas · deep forest green · warm brass/gold
   ============================================================ */
:root {
    --cream: #f7f3ec;
    --sand: #efe7db;
    --ink: #1f2420;
    --forest: #1f3d2f;
    --forest-soft: #2c5240;
    --gold: #c79a4b;
    --gold-deep: #a97f34;
    --muted: #6b6b60;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(31, 61, 47, 0.12);
    --radius: 18px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .72rem;
    font-weight: 500;
    color: var(--gold-deep);
    margin-bottom: 14px;
    display: inline-block;
}

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 236, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 61, 47, 0.08);
}
.nav-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--forest);
}
.brand-tag {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    font-size: .9rem;
    letter-spacing: .5px;
    color: var(--ink);
    position: relative;
    transition: color .2s;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); }
.nav-cta {
    background: var(--forest);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 400;
    transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-2px); }
.nav-toggle, .nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(20, 32, 26, .55), rgba(20, 32, 26, .55)),
                url('../images/decor-2.jpeg') center/cover fixed;
    color: var(--cream);
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hero .eyebrow { color: #e7cf9a; }
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    font-weight: 600;
    max-width: 14ch;
    letter-spacing: 1px;
}
.hero p {
    max-width: 46ch;
    margin: 22px 0 34px;
    font-size: 1.12rem;
    color: rgba(247, 243, 236, .88);
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 40px;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: transform .25s, background .25s, color .25s;
}
.btn-primary { background: var(--gold); color: var(--ink); font-weight: 500; }
.btn-primary:hover { background: var(--cream); transform: translateY(-3px); }
.btn-ghost { border: 1px solid rgba(247,243,236,.6); color: var(--cream); }
.btn-ghost:hover { background: rgba(247,243,236,.12); transform: translateY(-3px); }

/* ---------- Section basics ---------- */
section { padding: 92px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); }
.section-head p { color: var(--muted); margin-top: 14px; }

/* ---------- Category cards ---------- */
.categories { background: var(--white); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow);
    cursor: pointer;
}
.cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card .cat-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 60px 22px 22px;
    background: linear-gradient(transparent, rgba(20,32,26,.85));
    color: var(--cream);
}
.cat-card .cat-label h3 { font-size: 1.5rem; }
.cat-card .cat-label span {
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e7cf9a;
}

/* ---------- About / Split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); margin-bottom: 20px; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.feature-list { list-style: none; margin-top: 26px; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; color: var(--ink);
}
.feature-list li::before { content: '❀'; color: var(--gold); font-size: 1rem; }

/* ---------- Stats strip ---------- */
.stats {
    background: var(--forest);
    color: var(--cream);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat .num { font-family: var(--serif); font-size: 3rem; color: var(--gold); font-weight: 700; }
.stat .lbl { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; opacity: .85; }

/* ---------- Gallery ---------- */
.masonry {
    columns: 3;
    column-gap: 20px;
}
.masonry figure {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.masonry img { width: 100%; transition: transform .6s; }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 40px 18px 16px;
    background: linear-gradient(transparent, rgba(20,32,26,.8));
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity .3s;
}
.masonry figure:hover figcaption { opacity: 1; }

/* ---------- Video tour ---------- */
.tour { background: var(--sand); }
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.video-grid video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #000;
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(rgba(31,61,47,.9), rgba(31,61,47,.9)),
                url('../images/decor-4.jpeg') center/cover;
    color: var(--cream);
    text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta-band p { max-width: 48ch; margin: 0 auto 30px; opacity: .9; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.info-card .ico {
    font-size: 1.4rem;
    background: var(--sand);
    color: var(--gold-deep);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.info-card h4 { color: var(--forest); font-size: 1.3rem; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--muted); }
.info-card a:hover { color: var(--gold-deep); }
.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
    border: 0;
    width: 100%;
    height: 100%;
}
.contact-form label { display: block; font-size: .85rem; margin-bottom: 6px; color: var(--forest); letter-spacing: .5px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(31,61,47,.18);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: .95rem;
    margin-bottom: 18px;
    background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold);
}

/* ---------- Page banner ---------- */
.page-banner {
    background: linear-gradient(rgba(20,32,26,.6), rgba(20,32,26,.6)),
                url('../images/decor-1.jpeg') center/cover;
    color: var(--cream);
    text-align: center;
    padding: 130px 0 100px;
}
.page-banner h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-banner p { opacity: .9; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,236,.75); padding-top: 70px; }
.footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 24px 50px;
    display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 46px;
}
.footer-brand { color: var(--cream); font-size: 1.4rem; margin-bottom: 6px; }
.footer-brand span { color: var(--gold); }
.footer-tag { text-transform: uppercase; letter-spacing: 3px; font-size: .7rem; color: var(--gold); margin-bottom: 16px; }
.footer-note { font-size: .92rem; line-height: 1.7; }
.footer-col h4 { color: var(--cream); font-size: 1.15rem; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold); }
.footer-address { font-size: .92rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { font-size: .85rem; margin-top: 10px; opacity: .7; }
.footer-bottom {
    border-top: 1px solid rgba(247,243,236,.12);
    padding: 22px 24px;
    max-width: 1180px; margin: 0 auto;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: .82rem;
}
.to-top:hover { color: var(--gold); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25d366;
    color: #fff;
    height: 58px;
    padding: 0 14px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
    transition: transform .25s, box-shadow .25s, gap .25s, padding .25s;
    overflow: hidden;
}
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-label {
    max-width: 0;
    white-space: nowrap;
    font-size: .95rem;
    font-weight: 500;
    opacity: 0;
    transition: max-width .3s, opacity .25s, margin .3s;
}
.whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, .55);
    gap: 10px;
}
.whatsapp-fab:hover .whatsapp-label {
    max-width: 160px;
    opacity: 1;
    margin-right: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .nav-burger {
        display: flex; flex-direction: column; gap: 5px; cursor: pointer;
        z-index: 60;
    }
    .nav-burger span { width: 26px; height: 2px; background: var(--forest); transition: .3s; }
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(75vw, 300px);
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 26px;
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -20px 0 60px rgba(0,0,0,.15);
    }
    .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
    .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .split.reverse .split-media { order: 0; }
    .masonry { columns: 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero { background-attachment: scroll; }
}
@media (max-width: 520px) {
    .masonry { columns: 1; }
    section { padding: 64px 0; }
    .brand-tag { display: none; }
}
