/* =================================================================
   DishFlow — homepage.css  (versione animata massima)
   Fix: search-wrap ha z-index isolato sopra stats
   ================================================================= */
:root {
    --bg:      #07090f;
    --bg2:     #0c1020;
    --card:    #0e1526;
    --gold:    #c9a84c;
    --goldh:   #e8c96a;
    --white:   #ffffff;
    --gray:    #8892a4;
    --gray2:   #4a5568;
    --border:  rgba(201,168,76,.18);
    --brd2:    rgba(255,255,255,.06);
    --nav-h:   74px;
    --ease:    cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Outfit',sans-serif; background:var(--bg); color:var(--white); overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
img { display:block; }

/* ── CANVAS PARTICELLE ───────────────────────────────────────── */
#bgCanvas {
    position:fixed; inset:0; z-index:0; pointer-events:none;
    opacity:.7;
}

/* ── NOISE ───────────────────────────────────────────────────── */
.noise {
    position:fixed; inset:0; z-index:1; pointer-events:none;
    opacity:.022;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size:160px;
}

/* ── AMBIENT ORBS ────────────────────────────────────────────── */
.ambient { position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.orb {
    position:absolute; border-radius:50%;
    filter:blur(130px); will-change:transform;
}
.orb-1 {
    width:700px; height:700px;
    background:radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
    top:-200px; left:-150px;
    animation:orbDrift 12s ease-in-out infinite;
}
.orb-2 {
    width:500px; height:500px;
    background:radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
    top:50vh; right:-100px;
    animation:orbDrift 10s ease-in-out 3s infinite reverse;
}
.orb-3 {
    width:400px; height:400px;
    background:radial-gradient(circle, rgba(80,100,200,.04) 0%, transparent 70%);
    bottom:20vh; left:25%;
    animation:orbDrift 14s ease-in-out 6s infinite;
}
.orb-4 {
    width:300px; height:300px;
    background:radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
    bottom:10vh; right:15%;
    animation:orbDrift 9s ease-in-out 2s infinite reverse;
}
@keyframes orbDrift {
    0%,100% { transform:translate(0,0) scale(1); }
    33%      { transform:translate(40px,-30px) scale(1.06); }
    66%      { transform:translate(-20px,20px) scale(.96); }
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.main-header {
    position:fixed; top:0; left:0; right:0; z-index:200;
    height:var(--nav-h);
    transition:background .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}
.main-header.scrolled {
    background:rgba(7,9,15,.94);
    border-bottom:1px solid var(--border);
    backdrop-filter:blur(24px);
}
.top-nav {
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:auto 1fr auto;
    align-items:center; height:var(--nav-h);
    padding:0 40px; gap:40px;
}
.logo-link { display:flex; align-items:center; }
.logo-img   { height:38px; width:auto; object-fit:contain; }
.logo-fallback { font-family:'Outfit',sans-serif; font-weight:800; font-size:1.35rem; }
.logo-fallback span { color:var(--gold); }

.nav-center { display:flex; align-items:center; justify-content:center; gap:36px; }
.nav-link {
    font-size:.84rem; font-weight:500; color:var(--gray);
    letter-spacing:.2px; position:relative;
    transition:color .2s ease;
}
.nav-link::after {
    content:''; position:absolute; bottom:-4px; left:50%; right:50%;
    height:1px; background:var(--gold);
    transition:left .25s var(--ease), right .25s var(--ease);
}
.nav-link:hover { color:var(--white); }
.nav-link:hover::after { left:0; right:0; }

.nav-right { display:flex; align-items:center; gap:16px; }
.nav-cta-text { font-size:.82rem; font-weight:600; color:var(--gold); transition:opacity .2s; }
.nav-cta-text:hover { opacity:.72; }
.nav-cta-btn {
    background:var(--gold); color:#07090f;
    border-radius:50px; padding:9px 22px;
    font-size:.82rem; font-weight:700;
    transition:background .2s, transform .2s;
}
.nav-cta-btn:hover { background:var(--goldh); transform:translateY(-1px); }
.menu-trigger { display:flex; flex-direction:column; gap:5px; padding:4px; }
.menu-trigger span {
    display:block; width:22px; height:2px;
    background:var(--gold); border-radius:2px;
    transition:background .2s, transform .3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    overflow:hidden;
}
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg-img {
    position:absolute; inset:-12%;
    background:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    transform:scale(1.12);
    will-change:transform;
    animation:heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform:scale(1.12) translateY(0); }
    to   { transform:scale(1.18) translateY(-20px); }
}
.hero-vignette {
    position:absolute; inset:0;
    background:radial-gradient(ellipse at 60% 50%, transparent 0%, rgba(7,9,15,.7) 65%);
}
.hero-gradient {
    position:absolute; inset:0;
    background:linear-gradient(105deg, rgba(7,9,15,.95) 0%, rgba(7,9,15,.75) 45%, rgba(7,9,15,.25) 100%);
}

/* Linee & cerchi decorativi */
.hero-lines { position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.hline {
    position:absolute; height:1px;
    background:linear-gradient(to right, transparent, rgba(201,168,76,.12), transparent);
    transform-origin:left center;
    animation:lineSlide 6s ease-in-out infinite alternate;
}
.hline-1 { width:70%; top:28%; left:0;  transform:rotate(-7deg); animation-delay:0s; }
.hline-2 { width:50%; top:55%; left:5%; transform:rotate(-4deg); animation-delay:1.5s; }
.hline-3 { width:35%; top:72%; left:2%; transform:rotate(-6deg); animation-delay:3s; }
@keyframes lineSlide {
    from { opacity:.4; transform-origin:left; }
    to   { opacity:.9; transform-origin:left; }
}
.hero-ring {
    position:absolute; pointer-events:none;
    animation:ringRotate 30s linear infinite;
}
.hero-ring-1 { width:500px; height:500px; right:-100px; top:10vh; }
.hero-ring-2 { width:320px; height:320px; right:60px; bottom:15vh; animation-direction:reverse; animation-duration:20s; }
@keyframes ringRotate { to { transform:rotate(360deg); } }

/* ── HERO CONTENT ────────────────────────────────────────────── */
.hero-content {
    position:relative; z-index:2;
    max-width:1280px; margin:0 auto;
    padding:calc(var(--nav-h) + 70px) 40px 120px;
    width:100%;
}

/* Kicker */
.hero-kicker {
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(201,168,76,.07);
    border:1px solid rgba(201,168,76,.22);
    border-radius:50px; padding:7px 18px;
    font-size:.70rem; font-weight:700; color:var(--gold);
    letter-spacing:1.8px; text-transform:uppercase;
    margin-bottom:26px;
    opacity:0;
    animation:slideUp .9s var(--ease) .1s forwards;
}
.kicker-dot {
    width:5px; height:5px; border-radius:50%;
    background:var(--gold); opacity:.7;
    animation:dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:.7} 50%{opacity:.2} }

/* Titolo */
.hero-title {
    font-family:'Cormorant Garamond',serif;
    font-weight:600; line-height:1.03;
    max-width:660px; margin-bottom:22px;
    overflow:hidden;
}
.title-line {
    display:block;
    font-size:clamp(3rem, 6.5vw, 5.6rem);
    opacity:0;
}
.title-line:nth-child(1) { animation:revealMask .9s var(--ease) .3s forwards; }
.title-line:nth-child(2) { animation:revealMask .9s var(--ease) .5s forwards; color:var(--gold); }
@keyframes revealMask {
    from { opacity:0; transform:translateY(60px) skewY(2deg); }
    to   { opacity:1; transform:translateY(0) skewY(0); }
}
.title-underline {
    position:absolute; bottom:-4px; left:0; width:100%; height:14px; overflow:visible;
}
.title-gold { position:relative; }
#underlinePath {
    stroke-dasharray:460;
    stroke-dashoffset:460;
    animation:drawPath 1.2s ease .9s forwards;
}
@keyframes drawPath { to { stroke-dashoffset:0; } }

/* Sottotitolo */
.hero-sub {
    font-size:1.05rem; color:var(--gray); line-height:1.8;
    font-weight:300; max-width:480px; margin-bottom:40px;
    opacity:0; animation:slideUp .8s var(--ease) .7s forwards;
}

/* ── SEARCH WRAP — z-index chiave del fix ────────────────────── */
.search-wrap {
    position:relative;          /* crea stacking context isolato  */
    z-index:50;                 /* sopra .hero-stats (z-index:2)  */
    max-width:580px;
    opacity:0;
    animation:slideUp .8s var(--ease) .85s forwards;
}

.search-bar {
    display:flex; align-items:center;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(201,168,76,.28);
    border-radius:60px;
    padding:6px 6px 6px 22px;
    transition:border-color .25s, background .25s, box-shadow .3s;
    backdrop-filter:blur(14px);
}
.search-bar:focus-within {
    border-color:var(--gold);
    background:rgba(255,255,255,.10);
    box-shadow:0 0 0 4px rgba(201,168,76,.10), 0 8px 32px rgba(0,0,0,.4);
}
.search-icon-wrap { width:17px; height:17px; flex-shrink:0; color:var(--gray); }
.search-icon-wrap svg { width:100%; height:100%; }

#home-city-input {
    flex:1; background:none; border:none; outline:none;
    color:var(--white); font-size:.95rem; font-family:'Outfit',sans-serif;
    padding:9px 14px;
}
#home-city-input::placeholder { color:var(--gray2); }

.search-btn {
    display:flex; align-items:center; gap:8px;
    background:var(--gold); color:#07090f;
    border-radius:50px; padding:12px 26px;
    font-size:.88rem; font-weight:700;
    transition:background .2s, transform .2s, gap .2s;
    white-space:nowrap; flex-shrink:0;
}
.search-btn svg { width:15px; height:15px; transition:transform .2s; }
.search-btn:hover { background:var(--goldh); }
.search-btn:hover svg { transform:translateX(4px); }
.search-btn:active { transform:scale(.97); }

/* Quick tags */
.quick-tags {
    display:flex; align-items:center; gap:8px;
    margin-top:13px; flex-wrap:wrap;
}
.quick-label { font-size:.70rem; color:var(--gray2); font-weight:500; }
.quick-tag {
    background:rgba(255,255,255,.05);
    border:1px solid var(--brd2);
    border-radius:50px; padding:5px 14px;
    font-size:.73rem; font-weight:500; color:var(--gray);
    transition:all .2s ease;
}
.quick-tag:hover {
    background:rgba(201,168,76,.10);
    border-color:rgba(201,168,76,.35);
    color:var(--gold);
    transform:translateY(-1px);
}

/* Dropdown — z-index alto dentro search-wrap */
#hp-dd {
    position:absolute !important;
    z-index:9999 !important;
}

/* ── STATS — z-index basso, mai sopra il dropdown ───────────── */
.hero-stats {
    display:flex; align-items:center; gap:28px;
    margin-top:44px;
    position:relative; z-index:2;   /* SOTTO search-wrap(z:50) */
    opacity:0; animation:slideUp .8s var(--ease) 1.1s forwards;
}
.stat { display:flex; align-items:baseline; gap:5px; }
.stat-num {
    font-family:'Cormorant Garamond',serif;
    font-size:2.1rem; font-weight:700;
    background:linear-gradient(135deg, #e8c96a, #c9a84c);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    background-clip:text;
    line-height:1;
}
.stat-suf {
    font-family:'Cormorant Garamond',serif;
    font-size:1.5rem; color:var(--gold);
}
.stat-label { font-size:.72rem; color:var(--gray); margin-left:6px; font-weight:500; }
.stat-sep {
    width:1px; height:32px;
    background:linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Scroll hint */
.scroll-hint {
    position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
    display:flex; flex-direction:column; align-items:center; gap:8px;
    z-index:2;
    opacity:0; animation:fadeIn .8s ease 1.8s forwards;
}
.scroll-mouse {
    width:22px; height:34px; border:1.5px solid rgba(201,168,76,.45);
    border-radius:11px; display:flex; justify-content:center; padding-top:5px;
}
.scroll-wheel {
    width:3px; height:7px; border-radius:2px; background:var(--gold);
    animation:scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%   { transform:translateY(0); opacity:1; }
    60%  { transform:translateY(10px); opacity:0; }
    61%  { transform:translateY(0); opacity:0; }
    100% { opacity:1; }
}
.scroll-hint span { font-size:.60rem; color:var(--gray); letter-spacing:2px; text-transform:uppercase; }

/* ── ANIMAZIONI BASE ─────────────────────────────────────────── */
@keyframes slideUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── SEZIONI ─────────────────────────────────────────────────── */
.sc { max-width:1280px; margin:0 auto; padding:0 40px; }
.section-tag {
    display:inline-flex; align-items:center; gap:10px;
    font-size:.66rem; font-weight:700; color:var(--gold);
    letter-spacing:2px; text-transform:uppercase; margin-bottom:8px;
}
.section-tag::before,.section-tag::after {
    content:''; width:22px; height:1px; background:var(--gold); opacity:.5;
}
.section-tag.center { display:flex; justify-content:center; }
.section-title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight:600; line-height:1.2; color:var(--white); margin-bottom:44px;
}
.section-title.center { text-align:center; }
.section-title em { font-style:italic; color:var(--gold); }

/* Scroll reveal generica */
.reveal {
    opacity:0; transform:translateY(32px);
    transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── CATEGORIE ───────────────────────────────────────────────── */
.categories-section { padding:80px 0; border-top:1px solid var(--brd2); }
.categories-row { display:flex; flex-wrap:wrap; gap:12px; }
.cat-pill {
    display:flex; align-items:center; gap:9px;
    background:var(--card); border:1px solid var(--brd2);
    border-radius:60px; padding:12px 22px;
    font-size:.88rem; font-weight:500; color:#e0e0e0;
    transition:all .25s var(--ease);
}
.cat-pill:hover {
    border-color:var(--gold); background:rgba(201,168,76,.08);
    color:var(--gold); transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,.4);
}

/* ── FEATURED GRID ───────────────────────────────────────────── */
.featured-section { padding:80px 0; }
.featured-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:32px; }
.view-all-btn {
    display:flex; align-items:center; gap:8px;
    font-size:.82rem; font-weight:600; color:var(--gold);
    transition:gap .2s;
}
.view-all-btn svg { width:15px; height:15px; }
.view-all-btn:hover { gap:13px; }

.featured-grid {
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr;
    grid-template-rows:460px;
    gap:14px;
}
.feat-card {
    position:relative; border-radius:18px; overflow:hidden; cursor:pointer;
    border:1px solid var(--brd2);
    transition:transform .45s var(--ease), border-color .3s, box-shadow .45s;
}
.feat-card:hover {
    transform:translateY(-8px) scale(1.015);
    border-color:rgba(201,168,76,.45);
    box-shadow:0 28px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(201,168,76,.12);
}
.feat-img { position:absolute; inset:0; }
.feat-img img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .7s var(--ease);
}
.feat-card:hover .feat-img img { transform:scale(1.07); }
.feat-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(7,9,15,.96) 0%, rgba(7,9,15,.35) 55%, transparent 100%);
    transition:opacity .3s;
}
.feat-badge {
    position:absolute; top:14px; left:14px; z-index:2;
    background:var(--gold); color:#07090f;
    font-size:.62rem; font-weight:800;
    padding:5px 11px; border-radius:4px; letter-spacing:.5px;
}
.feat-body { position:absolute; bottom:0; left:0; right:0; padding:20px; z-index:2; }
.feat-type { font-size:.65rem; color:var(--gold); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.feat-name {
    font-family:'Cormorant Garamond',serif;
    font-size:1.2rem; font-weight:700; line-height:1.2; margin-bottom:7px;
}
.feat-card--large .feat-name { font-size:1.55rem; }
.feat-meta {
    display:flex; align-items:center; gap:7px;
    font-size:.74rem; color:rgba(255,255,255,.55);
}
.feat-stars { color:var(--gold); letter-spacing:1px; }
.feat-cta {
    position:absolute; bottom:18px; right:18px; z-index:3;
    background:var(--gold); color:#07090f;
    border-radius:50px; padding:8px 20px;
    font-size:.74rem; font-weight:700;
    opacity:0; transform:translateY(10px) scale(.95);
    transition:opacity .3s var(--ease), transform .3s var(--ease), background .2s;
}
.feat-card:hover .feat-cta { opacity:1; transform:translateY(0) scale(1); }
.feat-cta:hover { background:var(--goldh); }

/* ── COME FUNZIONA ───────────────────────────────────────────── */
.how-section { padding:100px 0; border-top:1px solid var(--brd2); }
.how-steps { display:flex; align-items:flex-start; justify-content:center; gap:0; max-width:920px; margin:0 auto; }
.how-conn { flex-shrink:0; width:80px; padding-top:46px; opacity:.7; }
.how-step { flex:1; text-align:center; padding:0 20px; }
.how-num {
    font-family:'Cormorant Garamond',serif;
    font-size:3.2rem; font-weight:300; color:var(--gold);
    opacity:.22; line-height:1; margin-bottom:14px;
}
.how-icon {
    width:52px; height:52px; border-radius:14px;
    background:rgba(201,168,76,.07); border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 14px;
    transition:background .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.how-icon svg { width:22px; height:22px; stroke:var(--gold); }
.how-step:hover .how-icon {
    background:rgba(201,168,76,.14); border-color:var(--gold);
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(201,168,76,.15);
}
.how-step h3 { font-size:.96rem; font-weight:700; margin-bottom:7px; }
.how-step p  { font-size:.80rem; color:var(--gray); line-height:1.7; }

/* ── OWNER BANNER ────────────────────────────────────────────── */
.owner-banner {
    margin:0 40px 80px; border-radius:22px; overflow:hidden;
    position:relative; border:1px solid var(--border);
}
.owner-banner-bg {
    position:absolute; inset:0;
    background:
        linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 55%),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=80') center/cover;
    filter:brightness(.22);
}
.owner-banner-bg::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to right, rgba(7,9,15,.96) 0%, rgba(7,9,15,.55) 65%, transparent 100%);
}
.owner-banner-content {
    position:relative; z-index:1;
    display:flex; align-items:center; justify-content:space-between;
    gap:40px; padding:60px 64px; flex-wrap:wrap;
}
.owner-banner-content .section-tag { display:inline-flex; margin-bottom:10px; }
.owner-banner-content h2 {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.6rem, 2.8vw, 2.3rem); font-weight:600; line-height:1.28; margin-bottom:12px;
}
.owner-banner-content h2 em { font-style:italic; color:var(--gold); }
.owner-banner-content p { font-size:.87rem; color:var(--gray); line-height:1.75; }
.owner-cta { display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap; }
.owner-btn-p {
    background:var(--gold); color:#07090f;
    border-radius:50px; padding:14px 32px;
    font-size:.86rem; font-weight:700;
    transition:background .2s, transform .2s;
    box-shadow:0 8px 24px rgba(201,168,76,.25);
}
.owner-btn-p:hover { background:var(--goldh); transform:translateY(-2px); }
.owner-btn-s {
    background:transparent; border:1px solid var(--border);
    border-radius:50px; padding:14px 32px;
    font-size:.86rem; font-weight:600; color:var(--gold);
    transition:all .2s;
}
.owner-btn-s:hover { background:rgba(201,168,76,.08); transform:translateY(-2px); }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.side-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,.75);
    backdrop-filter:blur(4px); z-index:300; display:none;
}
.side-overlay.active { display:block; }
.side-panel {
    position:fixed; top:0; right:0; width:295px; height:100vh;
    background:var(--bg2); border-left:1px solid var(--border);
    z-index:301; transform:translateX(100%);
    transition:transform .4s var(--ease); display:flex; flex-direction:column; overflow-y:auto;
}
.side-panel.open { transform:translateX(0); }
.side-panel-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 22px 18px; border-bottom:1px solid var(--brd2); flex-shrink:0;
}
.side-logo { height:26px; object-fit:contain; }
.close-btn {
    width:32px; height:32px; border-radius:8px; display:flex;
    align-items:center; justify-content:center; color:var(--gray);
    transition:background .2s, color .2s;
}
.close-btn svg { width:17px; height:17px; }
.close-btn:hover { background:rgba(255,255,255,.06); color:var(--white); }
.side-panel-content { padding:14px 14px 28px; display:flex; flex-direction:column; gap:2px; }
.side-lbl {
    font-size:.62rem; font-weight:700; letter-spacing:1.5px;
    text-transform:uppercase; color:var(--gray2); padding:10px 10px 4px;
}
.side-link {
    display:block; padding:11px 12px; border-radius:10px;
    font-size:.88rem; font-weight:500; color:#e0e0e0; transition:background .18s;
}
.side-link:hover { background:rgba(255,255,255,.05); }
.side-link--gold { color:var(--gold); font-weight:700; }
.side-link--gold:hover { background:rgba(201,168,76,.08); }
.side-link--sm { font-size:.78rem; color:var(--gray); }
.side-div { height:1px; background:var(--brd2); margin:6px 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.main-footer { background:#040508; border-top:1px solid var(--brd2); padding:64px 40px 0; }
.footer-inner {
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr;
    gap:48px; padding-bottom:48px; border-bottom:1px solid var(--brd2);
}
.footer-logo { height:34px; object-fit:contain; margin-bottom:12px; }
.footer-logo-txt { font-family:'Outfit',sans-serif; font-weight:800; font-size:1.3rem; display:block; margin-bottom:12px; }
.footer-logo-txt span { color:var(--gold); }
.footer-brand p { font-size:.80rem; color:var(--gray); line-height:1.75; margin-bottom:18px; }
.footer-social { display:flex; gap:9px; }
.soc-btn {
    width:34px; height:34px; border-radius:9px;
    background:var(--brd2); border:1px solid rgba(255,255,255,.04);
    display:flex; align-items:center; justify-content:center;
    color:var(--gray); transition:all .2s;
}
.soc-btn svg { width:15px; height:15px; }
.soc-btn:hover { background:rgba(201,168,76,.1); border-color:var(--border); color:var(--gold); }
.footer-col h4 {
    font-size:.75rem; font-weight:700; text-transform:uppercase;
    letter-spacing:1px; color:var(--white); margin-bottom:16px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:.82rem; color:var(--gray); transition:color .2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
    max-width:1280px; margin:0 auto; padding:18px 0;
    text-align:center; font-size:.70rem; color:var(--gray2);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1024px){
    .nav-center { display:none; }
    .featured-grid { grid-template-columns:1fr 1fr; grid-template-rows:300px 300px; }
    .feat-card--large { grid-column:1/3; }
    .footer-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
    .top-nav { padding:0 20px; gap:14px; }
    .nav-cta-text { display:none; }
    .hero-content { padding:calc(var(--nav-h)+40px) 20px 80px; }
    .featured-grid { grid-template-columns:1fr; grid-template-rows:auto; }
    .feat-card { height:260px; }
    .feat-card--large { grid-column:1; height:320px; }
    .feat-cta { opacity:1; transform:none; }
    .how-steps { flex-direction:column; gap:28px; }
    .how-conn { display:none; }
    .sc { padding:0 20px; }
    .owner-banner { margin:0 20px 60px; }
    .owner-banner-content { padding:40px 28px; }
    .footer-inner { grid-template-columns:1fr; }
    .main-footer { padding:44px 20px 0; }
}
@media(max-width:480px){
    .hero-stats { gap:16px; }
    .stat-num { font-size:1.6rem; }
    .search-btn span { display:none; }
    .search-btn { padding:12px 18px; }
}