*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --champagne: #C8A84B;
    --champagne-light: #DFC06A;
    --champagne-pale: #F0E2B8;
    --champagne-faint: #FBF7EE;
    --white: #FFFFFF;
    --off-white: #F8F8F9;
    --gray-50: #F3F3F5;
    --gray-100: #E8E8EA;
    --gray-200: #D1D1D5;
    --gray-400: #9898A0;
    --gray-600: #52525A;
    --gray-800: #27272C;
    --black: #131316;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.11);
    --r-sm: 6px; --r-md: 12px; --r-lg: 20px;
}

body {
    font-family: 'Mulish', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCE BAR ── */
.announce {
    background: var(--black);
    color: rgba(255,255,255,.55);
    text-align: center; padding: 10px 20px;
    font-size: 13px; font-weight: 600; letter-spacing: .03em;
}
.announce strong { color: var(--champagne-light); }

/* ── NAV ── */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 0 48px; height: 66px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
    width: 36px; height: 36px; background: var(--black);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 900; color: var(--champagne-light); flex-shrink: 0;
}
.logo-name { font-size: 18px; font-weight: 900; color: var(--black); letter-spacing: -.02em; }
.logo-name span { color: var(--champagne); }
.logo-sub { font-size: 10px; font-weight: 700; color: var(--gray-400); letter-spacing: .12em; text-transform: uppercase; display: block; margin-top: -1px; }
.nav-btn {
    background: var(--champagne); color: var(--black);
    border: none; cursor: pointer; padding: 10px 22px;
    font-family: 'Mulish', sans-serif; font-size: 13px; font-weight: 800;
    border-radius: var(--r-sm); text-decoration: none; display: inline-block;
    transition: background .17s, transform .17s;
}
.nav-btn:hover { background: var(--champagne-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    overflow: hidden;
}

/* Left: content pane */
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px 80px 80px;
    background: var(--white);
    animation: fadeIn .5s ease forwards;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--champagne-faint); border: 1px solid var(--champagne-pale);
    color: #8C6E20; font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 26px; width: fit-content;
    opacity: 0; animation: up .5s .05s ease forwards;
}
.hero-eyebrow::before { content: '✦'; font-size: 9px; }

h1.hero-h1 {
    font-size: clamp(36px, 3.8vw, 56px); font-weight: 900;
    line-height: 1.07; letter-spacing: -.035em; color: var(--black);
    margin-bottom: 20px;
    opacity: 0; animation: up .5s .15s ease forwards;
}
h1.hero-h1 mark { background: none; color: var(--champagne); }

.hero-p {
    font-size: 17px; font-weight: 400; color: var(--gray-600);
    max-width: 430px; line-height: 1.75; margin-bottom: 40px;
    opacity: 0; animation: up .5s .25s ease forwards;
}

.hero-btns {
    display: flex; gap: 12px; align-items: center;
    opacity: 0; animation: up .5s .35s ease forwards;
}
.btn-dark {
    background: var(--black); color: #fff; border: none; cursor: pointer;
    padding: 15px 30px; font-family: 'Mulish', sans-serif;
    font-size: 15px; font-weight: 700; border-radius: var(--r-sm);
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .17s, transform .17s, box-shadow .17s;
}
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-ghost {
    background: transparent; border: 1.5px solid var(--gray-200);
    color: var(--gray-600); padding: 14px 22px;
    font-family: 'Mulish', sans-serif; font-size: 14px; font-weight: 600;
    border-radius: var(--r-sm); cursor: pointer; text-decoration: none;
    transition: border-color .17s, color .17s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--champagne); color: var(--champagne); }

.hero-stats {
    display: flex; margin-top: 52px; padding-top: 36px;
    border-top: 1px solid var(--gray-100);
    opacity: 0; animation: up .5s .45s ease forwards;
}
.stat { flex: 1; }
.stat + .stat { border-left: 1px solid var(--gray-100); padding-left: 28px; }
.stat-n { font-size: 32px; font-weight: 900; color: var(--black); letter-spacing: -.04em; line-height: 1; }
.stat-n em { font-style: normal; color: var(--champagne); }
.stat-l { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-top: 5px; }

/* Right: full-bleed image pane */
.hero-img-pane {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    opacity: 0; animation: fadeIn .8s .2s ease forwards;
}
.hero-img-pane img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
/* subtle champagne tint on bottom edge */
.hero-img-pane::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(19,19,22,.18) 100%);
    pointer-events: none;
}

/* ── BRANDS ── */
.brands { border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background: var(--off-white); padding: 20px 0; overflow: hidden; }
.brands-track { display: flex; gap: 52px; animation: scroll 20s linear infinite; width: max-content; }
.bname { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-200); white-space: nowrap; }

/* ── SECTION WRAPPER ── */
.section { padding: 88px 80px; max-width: 1300px; margin: 0 auto; }
.s-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--champagne); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.s-label::before { content: ''; width: 18px; height: 2px; background: var(--champagne); border-radius: 2px; }
.s-title { font-size: clamp(26px, 3vw, 40px); font-weight: 900; letter-spacing: -.03em; color: var(--black); line-height: 1.1; margin-bottom: 12px; }
.s-desc { font-size: 16px; color: var(--gray-600); line-height: 1.75; max-width: 500px; }

/* ── CATALOG CARDS ── */
.catalogs-bg { background: var(--off-white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.cat-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--r-md); overflow: hidden;
    transition: transform .22s, box-shadow .22s, border-color .22s; cursor: pointer;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--champagne-pale); }
.cat-thumb { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.cat-body { padding: 22px; }
.cat-tag { font-size: 11px; font-weight: 700; color: var(--champagne); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.cat-title { font-size: 18px; font-weight: 800; color: var(--black); letter-spacing: -.01em; margin-bottom: 8px; }
.cat-desc { font-size: 13px; color: var(--gray-400); line-height: 1.6; margin-bottom: 18px; }
.cat-btn {
    width: 100%; padding: 11px; border-radius: var(--r-sm);
    background: var(--gray-50); border: 1.5px solid var(--gray-100);
    color: var(--gray-600); font-family: 'Mulish', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: all .17s;
}
.cat-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }

/* ── WHY ── */
.why-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    margin-top: 48px; border: 1px solid var(--gray-100);
    border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.why-item { background: var(--white); padding: 36px 28px; border-right: 1px solid var(--gray-100); transition: background .2s; }
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--champagne-faint); }
.why-icon { width: 44px; height: 44px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.why-title { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 8px; letter-spacing: -.01em; }
.why-text { font-size: 13px; color: var(--gray-400); line-height: 1.65; }

/* ── FORM SECTION ── */
.form-wrap { background: var(--off-white); border-top: 1px solid var(--gray-100); }
.form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 96px 80px; }

.form-l-title { font-size: clamp(26px, 2.8vw, 38px); font-weight: 900; letter-spacing: -.03em; color: var(--black); line-height: 1.1; margin-bottom: 16px; }
.form-l-title span { color: var(--champagne); }
.form-l-desc { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 32px; }
.checklist { display: flex; flex-direction: column; gap: 12px; }
.chk-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.chk-ico { width: 22px; height: 22px; border-radius: 50%; background: #EDFBF3; border: 1.5px solid #9EEAC0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #1A8C4E; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.fc-head { background: var(--black); padding: 24px 30px; }
.fc-head h3 { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 4px; }
.fc-head p { font-size: 13px; color: rgba(255,255,255,.4); }
.fc-body { padding: 28px 30px 30px; }

.fg { margin-bottom: 18px; }
.fl { display: block; font-size: 12px; font-weight: 700; color: var(--gray-600); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 7px; }
.fi {
    width: 100%; background: var(--gray-50); border: 1.5px solid var(--gray-100);
    border-radius: var(--r-sm); padding: 13px 16px;
    font-family: 'Mulish', sans-serif; font-size: 15px; color: var(--black);
    outline: none; transition: border-color .17s, box-shadow .17s;
}
.fi::placeholder { color: var(--gray-200); }
.fi:focus { border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(200,168,75,.12); background: var(--white); }
.fi.error { border-color: #E05252; }

.int-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.int-opt {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 12px; background: var(--gray-50);
    border: 1.5px solid var(--gray-100); border-radius: var(--r-sm);
    cursor: pointer; font-size: 13px; font-weight: 600; color: var(--gray-600);
    transition: all .15s; user-select: none;
}
.int-opt:has(input:checked) { border-color: var(--champagne); background: var(--champagne-faint); color: #8C6E20; }
.int-opt input { width: 14px; height: 14px; accent-color: var(--champagne); cursor: pointer; flex-shrink: 0; }

.f-submit {
    width: 100%; margin-top: 8px; background: var(--champagne); color: var(--black);
    border: none; cursor: pointer; padding: 16px 24px;
    font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 800;
    border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .17s, transform .17s, box-shadow .17s;
}
.f-submit:hover { background: var(--champagne-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,.28); }
.f-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.f-priv { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 14px; line-height: 1.5; }
.f-priv a { color: var(--champagne); text-decoration: none; }

.form-success { display: none; padding: 52px 30px; text-align: center; }
.suc-circle { width: 64px; height: 64px; border-radius: 50%; background: #EDFBF3; border: 2px solid #9EEAC0; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; }
.form-success h3 { font-size: 24px; font-weight: 900; color: var(--black); margin-bottom: 10px; letter-spacing: -.02em; }
.form-success p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.form-success strong { color: var(--champagne); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 36px 80px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ft-brand { font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.ft-brand span { color: var(--champagne); }
.ft-links { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-links a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; font-weight: 600; letter-spacing: .04em; transition: color .17s; }
.ft-links a:hover { color: var(--champagne); }
.ft-copy { font-size: 12px; color: rgba(255,255,255,.18); }

/* ── FAB ── */
.fab { position: fixed; bottom: 28px; right: 28px; z-index: 200; background: var(--black); color: #fff; border: none; cursor: pointer; padding: 13px 22px; font-family: 'Mulish', sans-serif; font-size: 13px; font-weight: 700; border-radius: 100px; box-shadow: 0 8px 28px rgba(0,0,0,.22); display: flex; align-items: center; gap: 8px; transition: all .2s; }
.fab:hover { background: var(--gray-800); transform: translateY(-2px); }
.fab-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); animation: blink 1.6s ease infinite; flex-shrink: 0; }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ── ANIMATIONS ── */
@keyframes up { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.25; } }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    /* hero becomes stacked on tablet */
    .hero-wrap { grid-template-columns: 1fr; }
    .hero-content { padding: 64px 40px; }
    .hero-img-pane { min-height: 50vw; }
    .section { padding:72px 40px; }
    .cat-grid { grid-template-columns:1fr 1fr; }
    .why-grid { grid-template-columns:1fr 1fr; }
    .why-item { border-right:none; border-bottom:1px solid var(--gray-100); }
    .why-item:nth-child(odd) { border-right:1px solid var(--gray-100); }
    .form-inner { grid-template-columns:1fr; padding:64px 40px; gap:48px; }
    footer { padding:36px 40px; }
}
@media(max-width:640px) {
    nav { padding:0 20px; }
    .nav-btn { display:none; }
    /* mobile: image as bg, text overlaid */
    .hero-wrap {
        grid-template-columns: 1fr;
        position: relative;
        min-height: 92vh;
    }
    .hero-img-pane {
        position: absolute; inset: 0;
        min-height: 100%;
        z-index: 0;
    }
    .hero-img-pane::after {
        background: linear-gradient(to bottom,
        rgba(19,19,22,.9) 0%,
        rgba(19,19,22,.8) 50%,
        rgba(19,19,22,.7) 100%);
    }
    .hero-content {
        position: relative; z-index: 1;
        padding: 100px 24px 60px;
        background: transparent;
        justify-content: flex-end;
    }
    h1.hero-h1 { color: #fff; }
    h1.hero-h1 mark { color: var(--champagne-light); }
    .hero-p { color: rgba(255,255,255,1); }
    .hero-eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: var(--champagne-light); }
    .hero-stats { border-top-color: rgba(255,255,255,.15); }
    .stat-n { color: #fff; }
    .stat-l { color: rgba(255,255,255,1); }
    .stat + .stat { border-left-color: rgba(255,255,255,.15); }
    .btn-ghost { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.85); }
    .btn-ghost:hover { border-color: var(--champagne-light); color: var(--champagne-light); }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-wrap: wrap; gap: 0; }
    .section { padding:56px 20px; }
    .cat-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:1fr; }
    .why-item { border-right:none !important; }
    .form-inner { padding:56px 20px; }
    .fc-head,.fc-body { padding-left:22px; padding-right:22px; }
    .int-grid { grid-template-columns:1fr; }
    footer { padding:32px 20px; flex-direction:column; align-items:flex-start; }
    .fab { bottom:16px; right:16px; }
}

/* ── GALLERY MASONRY ── */
.gallery-wrap { background: var(--white); border-top: 1px solid var(--gray-100); }
.gallery-inner { max-width: 1300px; margin: 0 auto; padding: 96px 80px; }

.masonry {
    columns: 4;
    column-gap: 14px;
}
.m-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.m-item img {
    width: 100%; display: block;
    transition: transform .4s ease;
}
.m-item.m-tall img { aspect-ratio: 3/4; object-fit: cover; }
.m-item:not(.m-tall) img { aspect-ratio: 4/3; object-fit: cover; }
.m-item:hover img { transform: scale(1.05); }
.m-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(19,19,22,.6) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s ease;
    display: flex; align-items: flex-end; padding: 14px;
}
.m-item:hover .m-overlay { opacity: 1; }
.m-overlay span {
    font-size: 12px; font-weight: 700; color: #fff;
    letter-spacing: .06em; text-transform: uppercase;
}
@media(max-width:1024px) {
    .masonry { columns: 3; }
    .gallery-inner { padding: 72px 40px; }
}
@media(max-width:640px) {
    .masonry { columns: 2; column-gap: 8px; }
    .m-item { margin-bottom: 8px; }
    .gallery-inner { padding: 56px 20px; }
}

/* ── LIGHTBOX ── */
.lb-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(19,19,22,.96);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.lb-overlay.open {
    opacity: 1; pointer-events: all;
}

.lb-img-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    max-width: 88vw; max-height: 84vh;
}
.lb-img-wrap img {
    max-width: 88vw; max-height: 84vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0,0,0,.6);
    transition: opacity .22s ease;
    display: block;
}
.lb-img-wrap img.lb-loading { opacity: 0; }

.lb-caption {
    position: absolute; bottom: -32px; left: 0; right: 0;
    text-align: center; font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase;
}

.lb-btn {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    color: #fff; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 20px; line-height: 1;
    transition: background .18s, transform .18s;
    z-index: 1001; flex-shrink: 0;
}
.lb-btn:hover { background: rgba(255,255,255,.18); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { transform: translateY(-50%) translateX(2px); }

.lb-close {
    position: fixed; top: 20px; right: 20px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    color: #fff; width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; font-weight: 700;
    transition: background .18s;
    z-index: 1001;
}
.lb-close:hover { background: rgba(255,255,255,.2); }

.lb-counter {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 1001;
}
.lb-dots { display: flex; gap: 6px; align-items: center; }
.lb-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.22); transition: all .22s ease;
    cursor: pointer;
}
.lb-dot.active {
    background: var(--champagne); width: 20px; border-radius: 3px;
}

@media(max-width:640px) {
    .lb-btn { width: 38px; height: 38px; font-size: 16px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-img-wrap img { max-width: 96vw; max-height: 80vh; }
}