:root {
    --night:  #14100b;
    --dusk:   #1d1711;
    --umber:  #2a2018;
    --gold:   #e8ab50;
    --gold-2: #d6863a;
    --rose:   #e2906e;
    --sand:   #f3e7d6;
    --cream:  #faf3e9;
    --muted:  rgba(243,231,214,.62);
    --faint:  rgba(243,231,214,.40);
    --border: rgba(232,171,80,.18);
    --maxw:   1180px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
    background:var(--night);
    color:var(--cream);
    font-family:'Jost',sans-serif;
    font-weight:300;
    line-height:1.65;
    overflow-x:hidden;
}
::selection { background:rgba(232,171,80,.30); color:#fff; }
a { color:inherit; }
img { display:block; max-width:100%; }

/* film grain */
body::after {
    content:''; position:fixed; inset:0; z-index:9999; pointer-events:none;
    opacity:.04;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── drifting golden haze ── */
.haze {
    position:fixed; inset:-20%; z-index:0; pointer-events:none;
    background:
        radial-gradient(40% 55% at 16% 14%, rgba(232,171,80,.13), transparent 60%),
        radial-gradient(45% 50% at 84% 10%, rgba(226,144,110,.13), transparent 62%),
        radial-gradient(70% 60% at 50% 122%, rgba(214,134,58,.10), transparent 60%);
    filter:blur(12px);
    animation:drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
    0%   { transform:translate3d(0,0,0) scale(1); }
    100% { transform:translate3d(2.5%,2%,0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) { .haze { animation:none; } }

/* ── layout helpers ── */
.wrap { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 32px; }
section { position:relative; z-index:1; }
.eyebrow {
    display:inline-flex; align-items:center; gap:12px;
    font-size:11px; letter-spacing:.34em; text-transform:uppercase;
    color:var(--gold); font-weight:400;
}
.eyebrow::before { content:''; width:28px; height:1px; background:var(--gold); opacity:.7; }
h2.title {
    font-family:'Cormorant Garamond',serif; font-weight:300;
    font-size:clamp(38px,5.5vw,68px); line-height:1; letter-spacing:-.02em; margin:22px 0 0;
}
h2.title em { font-style:italic; color:var(--gold); }
.lead { color:var(--muted); max-width:50ch; margin-top:22px; font-size:clamp(15px,1.5vw,18px); }

/* reveal on scroll */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); transition-delay:var(--d,0s); }
.reveal.in { opacity:1; transform:none; }

/* ── nav ── */
.nav {
    position:fixed; top:0; left:0; right:0; z-index:200;
    display:flex; align-items:center; justify-content:space-between; gap:14px;
    padding:20px 32px; transition:background .4s, padding .4s, border-color .4s;
    border-bottom:1px solid transparent;
}
.nav.scrolled {
    background:rgba(20,16,11,.74); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    padding:12px 32px; border-bottom:1px solid var(--border);
}
.brand { display:flex; align-items:center; gap:13px; text-decoration:none; min-width:0; }
.brand-mark {
    width:42px; height:42px; flex:none; border-radius:50%; object-fit:cover;
    border:1px solid var(--border);
    background:linear-gradient(135deg, var(--gold), var(--rose));
    display:grid; place-items:center; color:#2a2018;
}
.brand-name { font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:500; letter-spacing:.02em; line-height:1; color:var(--cream); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
.brand-name span { color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:34px; }
.nav-links a { font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); text-decoration:none; transition:color .25s; position:relative; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition:width .3s; }
.nav-links a:hover { color:var(--cream); }
.nav-links a:hover::after { width:100%; }
.nav-right { display:flex; align-items:center; gap:20px; flex:none; }

/* lang switcher */
#lang-sw { display:flex; align-items:center; }
.lang-btn {
    background:none; border:none; cursor:pointer;
    font-family:'Jost',sans-serif; font-size:11px; font-weight:400;
    letter-spacing:.16em; text-transform:uppercase;
    color:var(--faint); padding:6px 7px; transition:color .25s; line-height:1;
}
.lang-btn:hover { color:var(--cream); }
.lang-btn.active { color:var(--gold); }
.lang-btn + .lang-btn { border-left:1px solid var(--border); }

/* buttons */
.btn {
    display:inline-flex; align-items:center; gap:10px;
    font-family:'Jost',sans-serif; font-size:13px; letter-spacing:.1em;
    text-transform:uppercase; text-decoration:none; cursor:pointer;
    padding:15px 26px; border-radius:40px; border:1px solid transparent;
    transition:transform .3s, background .3s, color .3s, border-color .3s, box-shadow .3s; white-space:nowrap;
}
.btn svg { transition:transform .3s; }
.btn:hover svg { transform:translateX(4px); }
.btn-primary { background:linear-gradient(120deg, var(--gold), var(--gold-2)); color:#2a1c0d; font-weight:500; box-shadow:0 10px 30px -10px rgba(232,171,80,.6); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 16px 40px -12px rgba(232,171,80,.78); }
.btn-ghost { border-color:rgba(243,231,214,.4); color:var(--cream); background:rgba(255,255,255,.04); backdrop-filter:blur(4px); }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.btn-sm { padding:11px 20px; font-size:12px; }

/* ── hero ── */
.hero { position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden;
    background:
        radial-gradient(120% 80% at 70% 8%, rgba(247,213,150,.55), transparent 55%),
        linear-gradient(180deg, #2c3a55 0%, #6e5a68 30%, #c87b54 56%, #ecae5f 76%, #f3d08a 100%);
}
.hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; filter:brightness(.82) saturate(1.08); }
.hero-scrim { position:absolute; inset:0; z-index:1;
    background:
        linear-gradient(180deg, rgba(20,16,11,.42) 0%, rgba(20,16,11,.12) 34%, rgba(20,16,11,.45) 68%, var(--night) 100%),
        linear-gradient(90deg, rgba(20,16,11,.66) 0%, rgba(20,16,11,.08) 55%, transparent 100%);
}
.hero .wrap { position:relative; z-index:2; padding-top:130px; padding-bottom:96px; width:100%; }
.hero-eyebrow { animation:fadeUp 1s both .1s; }
.hero h1 {
    font-family:'Cormorant Garamond',serif; font-weight:300;
    font-size:clamp(44px,6.6vw,84px); line-height:.94; letter-spacing:-.03em;
    margin:24px 0 0; max-width:none; text-wrap:balance; text-shadow:0 2px 40px rgba(0,0,0,.4);
    animation:fadeUp 1.1s both .22s;
}
.hero h1 em { font-style:italic; color:#ffe6b8; display:block; }
.hero-sub { color:var(--cream); max-width:50ch; margin-top:26px; font-size:clamp(16px,1.7vw,20px); text-shadow:0 1px 20px rgba(0,0,0,.5); animation:fadeUp 1.1s both .36s; }
.hero-actions { display:flex; flex-wrap:wrap; gap:16px; align-items:center; margin-top:40px; animation:fadeUp 1.1s both .5s; }
@keyframes fadeUp { from { opacity:0; transform:translateY(34px); } to { opacity:1; transform:none; } }

.scroll-hint { position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:9px; font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.7); animation:fadeUp 1s both .8s; }
.scroll-hint .line { width:1px; height:42px; background:linear-gradient(#ffe6b8,transparent); animation:scrollPulse 2.2s ease-in-out infinite; transform-origin:top; }
@keyframes scrollPulse { 0%,100% { transform:scaleY(.4); opacity:.4; } 50% { transform:scaleY(1); opacity:1; } }

/* ── how it works (steps) ── */
.how { padding:clamp(90px,12vw,150px) 0; }
.how-head { display:flex; flex-direction:column; align-items:flex-start; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:64px; position:relative; }
.step {
    position:relative; padding:36px 28px 38px; border-radius:18px;
    background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    border:1px solid var(--border); overflow:hidden; transition:transform .4s, border-color .4s, background .4s;
}
.step:hover { transform:translateY(-6px); border-color:rgba(232,171,80,.45); background:linear-gradient(160deg, rgba(232,171,80,.08), rgba(255,255,255,.012)); }
.step-num { font-family:'Cormorant Garamond',serif; font-size:46px; font-weight:400; line-height:1; color:var(--gold); opacity:.55; }
.step-icon { margin:14px 0 16px; color:var(--gold); }
.step h3 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:24px; letter-spacing:-.01em; line-height:1.1; }
.step p { color:var(--muted); margin-top:12px; font-size:14.5px; }

/* ── why / value cards ── */
.why { padding:0 0 clamp(80px,11vw,130px); }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:64px; }
.card {
    position:relative; padding:40px 34px 44px; border-radius:18px;
    background:linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    border:1px solid var(--border); overflow:hidden; transition:transform .4s, border-color .4s, background .4s;
}
.card:hover { transform:translateY(-6px); border-color:rgba(232,171,80,.45); background:linear-gradient(160deg, rgba(232,171,80,.08), rgba(255,255,255,.012)); }
.card-icon { margin:0 0 20px; color:var(--gold); }
.card h3 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:27px; letter-spacing:-.01em; line-height:1.1; }
.card p { color:var(--muted); margin-top:14px; font-size:15px; }

/* ── style band ── */
.styleband { padding:clamp(80px,10vw,120px) 0; background:linear-gradient(180deg, transparent, rgba(42,32,24,.6), transparent); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.style-grid { display:grid; grid-template-columns:1.05fr 1fr; gap:60px; align-items:center; }
.moods { display:grid; gap:14px; }
.mood { display:flex; align-items:center; gap:22px; padding:26px 28px; border:1px solid var(--border); border-radius:16px; background:linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); transition:border-color .35s, transform .35s; }
.mood:hover { border-color:rgba(232,171,80,.45); transform:translateX(6px); }
.mood-ico { width:48px; height:48px; flex:none; border-radius:50%; display:grid; place-items:center; color:var(--gold); border:1px solid var(--border); background:rgba(232,171,80,.07); }
.mood-t { font-family:'Cormorant Garamond',serif; font-size:24px; line-height:1.05; }
.mood-d { color:var(--muted); font-size:14px; margin-top:3px; }

/* ── pricing ── */
.pricing { padding:clamp(90px,12vw,150px) 0; text-align:center; }
.price-head { display:flex; flex-direction:column; align-items:center; }
.price-head .lead { text-align:center; }
.price-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:26px; max-width:820px; margin:56px auto 0; }
.price-card {
    position:relative; padding:48px 40px 42px; text-align:left;
    border-radius:24px; border:1px solid var(--border);
    background:linear-gradient(165deg, rgba(232,171,80,.09), rgba(255,255,255,.018));
    overflow:hidden; transition:transform .4s, border-color .4s, box-shadow .4s;
}
.price-card:hover { transform:translateY(-6px); border-color:rgba(232,171,80,.5); box-shadow:0 40px 90px -55px rgba(232,171,80,.6); }
.price-card.feat { border-color:rgba(232,171,80,.4); box-shadow:0 40px 90px -55px rgba(232,171,80,.45); }
.price-tag { position:absolute; top:22px; right:24px; font-size:10px; letter-spacing:.22em; text-transform:uppercase; color:#2a1c0d; background:linear-gradient(120deg,var(--gold),var(--gold-2)); padding:6px 12px; border-radius:30px; }
.price-name { font-size:12px; letter-spacing:.26em; text-transform:uppercase; color:var(--gold); }
.price-amount { font-family:'Cormorant Garamond',serif; font-size:clamp(58px,8vw,82px); font-weight:400; line-height:1; margin:12px 0 2px; color:var(--cream); }
.price-notes { color:var(--muted); font-size:14px; }
.price-inc { list-style:none; margin:28px 0 34px; }
.price-inc li { display:flex; align-items:flex-start; gap:12px; color:var(--sand); font-size:15px; padding:6px 0; }
.price-inc li svg { flex:none; margin-top:4px; color:var(--gold); }

/* ── gallery ── */
.gallery { padding:clamp(80px,11vw,140px) 0; }
.gal-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:18px; margin-top:56px; }
.gal-item {
    position:relative; grid-column:span 2; aspect-ratio:4/5; border-radius:14px; overflow:hidden;
    border:1px solid var(--border); cursor:pointer;
    background:linear-gradient(160deg, #6e5a68, #c87b54 55%, #ecae5f);
    transition:transform .5s cubic-bezier(.16,1,.3,1), border-color .4s;
}
.gal-item:nth-child(1){ grid-column:span 3; aspect-ratio:16/11; }
.gal-item:nth-child(2){ grid-column:span 3; aspect-ratio:16/11; }
.gal-item img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.16,1,.3,1); }
.gal-item::before { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(20,16,11,.02), rgba(20,16,11,.6)); transition:background .4s; }
.gal-item:hover { transform:translateY(-5px); border-color:rgba(232,171,80,.5); }
.gal-item:hover img { transform:scale(1.06); }
.gal-item:hover::before { background:linear-gradient(180deg, rgba(232,171,80,.08), rgba(20,16,11,.5)); }
.gal-zoom {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(.92); z-index:2;
    width:58px; height:58px; border-radius:50%; display:grid; place-items:center;
    background:rgba(20,16,11,.4); border:1px solid rgba(243,231,214,.6); color:#fff;
    backdrop-filter:blur(4px); transition:transform .4s, background .4s, color .4s; opacity:0;
}
.gal-item:hover .gal-zoom { transform:translate(-50%,-50%) scale(1); background:var(--gold); color:#2a1c0d; border-color:var(--gold); opacity:1; }

/* lightbox */
.lightbox { position:fixed; inset:0; z-index:1000; display:none; align-items:center; justify-content:center; padding:24px; background:rgba(12,9,6,.9); backdrop-filter:blur(8px); }
.lightbox.open { display:flex; animation:lbIn .3s ease; }
@keyframes lbIn { from { opacity:0; } to { opacity:1; } }
.lightbox img { width:auto; max-width:100%; max-height:86vh; border-radius:14px; border:1px solid var(--border); background:#000; box-shadow:0 40px 120px -40px rgba(0,0,0,.8); }
.lb-close { position:absolute; top:22px; right:26px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(243,231,214,.35); background:rgba(20,16,11,.5); color:var(--cream); cursor:pointer; display:grid; place-items:center; transition:border-color .3s, color .3s; }
.lb-close:hover { border-color:var(--gold); color:var(--gold); }

/* ── faq ── */
.faq { padding:clamp(80px,11vw,140px) 0 clamp(40px,5vw,60px); }
.faq-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.faq-item { padding:34px 30px; border:1px solid var(--border); border-radius:18px; background:linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.faq-item .q { display:flex; align-items:center; gap:14px; }
.faq-item .q-ico { color:var(--gold); flex:none; }
.faq-item h3 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:23px; line-height:1.1; }
.faq-item p { color:var(--muted); margin-top:14px; font-size:15px; }

/* ── contact ── */
.contact { padding:clamp(48px,6vw,80px) 0 clamp(90px,12vw,150px); }
.contact-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.contact-desc { color:var(--muted); margin-top:24px; max-width:46ch; }
.contact-actions { display:flex; flex-wrap:wrap; gap:16px; margin-top:34px; }
.contact-card { border:1px solid var(--border); border-radius:20px; padding:14px 8px; background:linear-gradient(165deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); }
.contact-row { display:flex; align-items:center; gap:18px; padding:22px 26px; text-decoration:none; transition:background .3s; border-radius:14px; }
.contact-row:hover { background:rgba(232,171,80,.07); }
.contact-row + .contact-row { border-top:1px solid var(--border); }
.contact-ico { width:44px; height:44px; flex:none; border-radius:50%; display:grid; place-items:center; border:1px solid var(--border); color:var(--gold); background:rgba(232,171,80,.06); }
.contact-meta { display:flex; flex-direction:column; gap:3px; }
.contact-meta .k { font-size:10px; letter-spacing:.24em; text-transform:uppercase; color:var(--faint); }
.contact-meta .v { font-family:'Cormorant Garamond',serif; font-size:19px; color:var(--cream); overflow-wrap:break-word; min-width:0; }
.contact-meta { min-width:0; }
.contact-closing { margin-top:40px; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(20px,2.4vw,27px); color:var(--sand); line-height:1.4; max-width:32ch; }

/* ── footer ── */
footer { border-top:1px solid var(--border); padding:60px 0 50px; position:relative; z-index:1; }
.foot-grid { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.foot-tag { color:var(--faint); font-size:13px; max-width:36ch; margin-top:14px; }
.foot-copy { color:var(--faint); font-size:12px; line-height:1.8; text-align:right; }
.foot-copy a { color:var(--gold); text-decoration:none; }
.foot-copy a:hover { text-decoration:underline; }

/* ── responsive ── */
/* touch devices can't hover — reveal the gallery zoom affordance so photos read as tappable */
@media (hover: none) {
    .gal-zoom { opacity:1; transform:translate(-50%,-50%) scale(1); }
}
@media (max-width:960px) {
    .steps { grid-template-columns:repeat(2,1fr); }
    .style-grid { grid-template-columns:1fr; gap:42px; }
    .faq-grid { grid-template-columns:1fr; }
    .contact-grid { grid-template-columns:1fr; gap:42px; }
}
@media (max-width:760px) {
    .nav-links { display:none; }
    .cards { grid-template-columns:1fr; }
    .price-grid { grid-template-columns:1fr; }
    .gal-grid { grid-template-columns:1fr; }
    .gal-item, .gal-item:nth-child(1), .gal-item:nth-child(2) { grid-column:span 1; aspect-ratio:4/3; }
    .wrap { padding:0 22px; }
    .nav, .nav.scrolled { padding:12px 20px; }
    .foot-grid { flex-direction:column; align-items:flex-start; }
    .foot-copy { text-align:left; }
    .step, .card { padding:32px 26px 34px; }
    .price-card { padding:40px 28px 36px; }
    .price-name { padding-right:84px; }            /* keep label clear of the "popular" tag */
    .mood { padding:22px 22px; gap:18px; }
    .contact-row { padding:18px 18px; gap:14px; }
    .contact-meta .v { font-size:17px; }
}
@media (max-width:600px) {
    /* the CTA repeats in the hero and contact — drop it from the nav so the
       brand + five language buttons never overflow on a phone */
    .nav-right .btn-primary { display:none; }
}
@media (max-width:480px) {
    .steps { grid-template-columns:1fr; }
    .lang-btn { padding:5px 4px; font-size:10px; letter-spacing:.08em; }
    .nav-right { gap:10px; }
    .brand-name { font-size:18px; }
    .brand-mark { width:38px; height:38px; }
    .btn { padding:13px 20px; font-size:12px; }
    .wrap { padding:0 18px; }
    .lightbox { padding:14px; }
    .lb-close { top:14px; right:14px; }
}
