/* ═══════════════════════════════════════════════════════
   SOS Oggetti Smarriti Lazio — stylesheet v2
   ═══════════════════════════════════════════════════════ */

:root {
  --navy:        #060c18;
  --navy-2:      #0d1729;
  --navy-3:      #172035;
  --navy-4:      #1f2d45;
  --gold:        #c8991f;
  --gold-light:  #edbf4a;
  --gold-dim:    rgba(200,153,31,0.13);
  --gold-border: rgba(200,153,31,0.28);
  --text:        #e8e2d8;
  --text-muted:  #7f8fa6;
  --text-dim:    #4a5568;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.13);
  --wa:          #25d366;
  --wa-dark:     #1aae52;
  --wa-text:     #001a0a;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --nav-h:       64px;
  --page-max:    1200px;
  --px:          clamp(1.25rem, 5vw, 3rem);
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img { display:block; max-width:100%; height:auto; }
ul  { list-style:none; }
a   { color:inherit; text-decoration:none; }
a:focus-visible { outline:2px solid var(--gold); outline-offset:3px; border-radius:4px; }
h1,h2,h3 { line-height:1.1; font-weight:800; }

/* helpers */
.gold        { color: var(--gold-light); }
.label       { font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:.9rem; }
.label-light { color: var(--gold-light); }

[data-reveal] { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
[data-reveal].is-visible { opacity:1; transform:none; }

/* skip link */
.skip-link { position:fixed; top:-100%; left:1rem; z-index:9999; background:var(--gold); color:var(--navy); padding:.5rem 1rem; border-radius:var(--radius); font-weight:700; }
.skip-link:focus { top:1rem; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-wa,.btn-call,.btn-email,.btn-outline {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 1.5rem; border-radius:100px;
  font-size:.95rem; font-weight:700; cursor:pointer;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s var(--ease),border-color .3s var(--ease),color .3s var(--ease);
  min-height:48px; white-space:nowrap; border:none;
}
.btn-wa    { background:var(--wa); color:var(--wa-text); }
.btn-wa:hover { background:var(--wa-dark); box-shadow:0 4px 20px rgba(37,211,102,.35); transform:translateY(-1px); }
.btn-call  { background:transparent; color:var(--text); border:1.5px solid var(--border-2); }
.btn-call:hover { border-color:var(--text); background:rgba(255,255,255,.06); }
.btn-email { background:transparent; color:var(--text-muted); font-size:.875rem; font-weight:500; padding:.5rem 0; border-radius:4px; }
.btn-email:hover { color:var(--text); }
.btn-outline { background:transparent; color:var(--text); border:1.5px solid var(--border-2); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold-light); }
.btn-xl { padding:1rem 2rem; font-size:1.05rem; min-height:56px; }

/* ── NAV — always opaque ─────────────────────────────── */
.site-nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--nav-h);
  display: flex; align-items:center;
  padding: 0 var(--px);
  gap: 1.25rem;
  background: rgba(6,12,24,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand { flex-shrink:0; display:flex; align-items:center; gap:.65rem; }
.brand-logo { height:40px; width:40px; border-radius:50%; object-fit:cover; box-shadow:0 2px 8px rgba(0,0,0,.4); }
.brand-name { font-size:.78rem; font-weight:700; letter-spacing:.04em; color:var(--text-muted); display:none; }

.desktop-nav { display:none; align-items:center; gap:.2rem; margin-left:auto; }
.desktop-nav a { padding:.4rem .7rem; border-radius:6px; font-size:.85rem; font-weight:500; color:var(--text-muted); transition:color .3s,background .3s; }
.desktop-nav a:hover,.desktop-nav a[aria-current] { color:var(--text); background:rgba(255,255,255,.07); }
.desktop-nav a[aria-current] { color:var(--gold-light); }

.desktop-cta {
  display:none; align-items:center; gap:.4rem;
  background:var(--wa); color:var(--wa-text);
  padding:.55rem 1rem; border-radius:100px;
  font-size:.82rem; font-weight:700; min-height:40px; flex-shrink:0;
  transition:background .3s,transform .3s;
}
.desktop-cta:hover { background:var(--wa-dark); transform:translateY(-1px); }

.menu-toggle {
  margin-left:auto;
  background:none; border:1.5px solid var(--border-2); color:var(--text);
  padding:.5rem .9rem; border-radius:100px;
  font-size:.85rem; font-weight:600; cursor:pointer;
  display:flex; align-items:center; gap:.5rem; min-height:40px;
  transition:border-color .3s;
}
.menu-toggle:hover { border-color:var(--text); }
.menu-toggle i { width:18px; height:12px; display:flex; flex-direction:column; justify-content:space-between; }
.menu-toggle i::before,.menu-toggle i::after { content:''; display:block; height:1.5px; background:currentColor; border-radius:2px; transition:transform .3s,width .3s; }
.menu-toggle i::after { width:70%; }

/* mobile nav */
.mobile-nav {
  position:fixed; inset:0; z-index:99;
  background:var(--navy-2);
  display:flex; flex-direction:column; justify-content:center;
  padding:calc(var(--nav-h) + 2rem) var(--px) 3rem;
  transform:translateX(100%); transition:transform .35s var(--ease);
  overflow-y:auto;
}
.mobile-nav.is-open { transform:none; }
.mobile-nav-link { display:flex; align-items:center; gap:1rem; font-size:1.75rem; font-weight:800; padding:.75rem 0; border-bottom:1px solid var(--border); color:var(--text); transition:color .3s; }
.mobile-nav-link:hover { color:var(--gold-light); }
.mobile-nav-link span { font-size:.72rem; font-weight:700; letter-spacing:.1em; color:var(--gold); }
.mobile-contact { display:flex; align-items:center; gap:.75rem; background:var(--wa); color:var(--wa-text); padding:1.1rem 1.5rem; border-radius:var(--radius); font-size:1.05rem; font-weight:700; margin-top:2rem; justify-content:center; transition:background .3s; }
.mobile-contact:hover { background:var(--wa-dark); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100svh;
  display:flex; align-items:center; justify-content:center;
  padding: var(--nav-h) var(--px) clamp(3rem,10vw,5rem);
  overflow:hidden; text-align:center;
}

.hero-media { position:absolute; inset:0; z-index:0; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(
    180deg,
    rgba(6,12,24,.75) 0%,
    rgba(6,12,24,.55) 30%,
    rgba(6,12,24,.72) 65%,
    rgba(6,12,24,.97) 100%
  );
}

.hero-content {
  position:relative; z-index:1;
  max-width:780px; width:100%;
  display:flex; flex-direction:column; align-items:center;
}

.hero-kicker { font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:1.1rem; }

.hero-title {
  font-family:'Bebas Neue','Inter',sans-serif;
  font-size: clamp(4.5rem,22vw,11rem);
  font-weight:400; letter-spacing:.02em; line-height:.9;
  margin-bottom:1.5rem; display:block;
}
.ht-line   { display:block; }
.ht-gold   { color:var(--gold-light); }

.hero-sub {
  font-size:clamp(1rem,2.5vw,1.15rem);
  color:rgba(232,226,216,.88);
  max-width:580px; line-height:1.65; margin-bottom:2rem;
}

.hero-actions { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; margin-bottom:1.5rem; }

.hero-trust { display:flex; flex-wrap:wrap; gap:.4rem 1.25rem; justify-content:center; font-size:.78rem; color:rgba(232,226,216,.55); }

.hero-scroll-hint {
  position:absolute; bottom:2rem; right:var(--px); z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.35);
}
.scroll-dot { animation:scrollBounce 2.2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 55%{transform:translateY(9px);opacity:.25} }

/* ── PROCESS (steps after hero) ──────────────────────── */
.process {
  background: var(--navy-2);
  padding: clamp(3.5rem,9vw,6rem) var(--px);
}
.process-inner { max-width:var(--page-max); margin:0 auto; }
.process-head  { text-align:center; max-width:640px; margin:0 auto 3rem; }
.process-head h2 { font-size:clamp(2rem,6vw,3.5rem); margin:.5rem 0 1rem; }
.process-sub { color:var(--text-muted); font-size:1.05rem; }

.psteps {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,240px),1fr));
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-bottom:2.5rem;
}

.pstep {
  background:var(--navy-3);
  padding:2rem 1.75rem;
  display:flex; flex-direction:column; gap:.75rem;
  transition:background .3s;
}
.pstep:hover { background:var(--navy-4); }

.pstep-head { display:flex; align-items:center; gap:.75rem; margin-bottom:.25rem; }
.pstep-num {
  font-family:'Bebas Neue',sans-serif;
  font-size:2.25rem; letter-spacing:.04em; line-height:1;
  color:var(--gold); flex-shrink:0;
}
.pstep-connector {
  flex:1; height:1px; background:var(--gold-border);
  display:none;
}

.pstep-icon {
  width:52px; height:52px; border-radius:var(--radius);
  background:var(--navy-4); border:1px solid var(--border-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
}
.pstep-icon--gold { background:var(--gold-dim); border-color:var(--gold-border); color:var(--gold-light); }

.pstep h3 { font-size:1.05rem; font-weight:700; color:var(--text); }
.pstep > p { font-size:.875rem; color:var(--text-muted); line-height:1.65; }
.pstep strong { color:var(--text); }

.pstep-details {
  margin-top:.25rem;
  display:flex; flex-direction:column; gap:.3rem;
}
.pstep-details li {
  font-size:.8rem; color:var(--text-dim);
  padding-left:1rem; position:relative;
}
.pstep-details li::before {
  content:'·'; position:absolute; left:0;
  color:var(--gold); font-size:1rem; line-height:1;
}

.process-cta {
  display:flex; flex-wrap:wrap; align-items:center; gap:1.5rem;
  background:var(--gold-dim); border:1px solid var(--gold-border);
  border-radius:var(--radius-lg); padding:1.75rem 2rem;
}
.process-cta p { flex:1; min-width:200px; font-size:.95rem; color:var(--text); }

/* ── PROOF STRIP ──────────────────────────────────────── */
.proof-strip { background:var(--gold); color:var(--navy); overflow:hidden; padding:.9rem 0; }
.marquee-track { overflow:hidden; }
.marquee-inner {
  display:flex; align-items:center; white-space:nowrap;
  animation:marquee 30s linear infinite;
}
.marquee-inner span { font-size:.82rem; font-weight:700; letter-spacing:.06em; padding:0 1.5rem; }
.marquee-inner i    { font-style:normal; opacity:.45; font-size:.6rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion:reduce) { .marquee-inner { animation:none; } }

/* ── FEATURED STORY ───────────────────────────────────── */
.featured {
  max-width:var(--page-max); margin:0 auto;
  padding:clamp(4rem,10vw,7rem) var(--px);
  display:grid; gap:3rem;
}

.featured-photo-col { position:relative; }
.featured-photo-wrap {
  border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:3/4; box-shadow:var(--shadow-lg);
}
.featured-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:center top; transition:transform .6s ease; }
.featured-photo-wrap:hover img { transform:scale(1.03); }

.featured-stat {
  position:absolute; bottom:-1.25rem; right:-.75rem;
  background:var(--gold); color:var(--navy);
  border-radius:var(--radius); padding:1rem 1.25rem;
  text-align:center; box-shadow:var(--shadow); min-width:120px;
}
.featured-stat strong { display:block; font-family:'Bebas Neue',sans-serif; font-size:2.5rem; line-height:1; letter-spacing:.02em; }
.featured-stat span   { font-size:.7rem; font-weight:600; line-height:1.3; opacity:.72; }

.featured-copy { display:flex; flex-direction:column; justify-content:center; padding-top:2.5rem; }
.featured-copy h2 { font-size:clamp(1.85rem,5vw,3rem); margin-bottom:1.5rem; color:var(--text); }
.featured-lead { font-size:1.1rem; line-height:1.7; color:var(--text); margin-bottom:1rem; }
.featured-copy p { color:var(--text-muted); margin-bottom:2rem; }
.btn-featured { align-self:flex-start; }

/* ── SERVICES (redesigned) ────────────────────────────── */
.services {
  background: var(--navy-2);
  padding: clamp(4rem,10vw,7rem) var(--px);
}
.section-head { max-width:var(--page-max); margin:0 auto 3rem; }
.section-head h2 { font-size:clamp(2rem,6vw,3.5rem); margin-top:.5rem; }

.svc-grid {
  max-width:var(--page-max); margin:0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,320px),1fr));
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}

.svc-card {
  background:var(--navy-3);
  padding:2rem 1.75rem;
  display:flex; gap:1.25rem;
  transition:background .3s var(--ease);
  position:relative;
}
.svc-card:hover { background:var(--navy-4); }
.svc-card--highlight { background:var(--gold-dim); }
.svc-card--highlight:hover { background:rgba(200,153,31,.2); }

.svc-card-num {
  font-family:'Bebas Neue',sans-serif;
  font-size:3rem; letter-spacing:.03em; line-height:.85;
  color:var(--gold-border);
  flex-shrink:0; width:52px; text-align:center;
  transition:color .3s;
}
.svc-card:hover .svc-card-num { color:var(--gold); }

.svc-card-body { flex:1; display:flex; flex-direction:column; gap:.6rem; }
.svc-emoji { font-size:1.6rem; line-height:1; }
.svc-card h3 { font-size:1rem; font-weight:700; color:var(--text); }
.svc-card p  { font-size:.875rem; color:var(--text-muted); line-height:1.65; flex:1; }

.svc-tags {
  display:flex; flex-wrap:wrap; gap:.35rem; margin-top:.25rem;
}
.svc-tags span {
  font-size:.7rem; font-weight:600; letter-spacing:.06em;
  background:var(--navy-4); border:1px solid var(--border-2);
  color:var(--text-muted); padding:.2rem .55rem; border-radius:100px;
}
.svc-card--highlight .svc-tags span { background:var(--gold-dim); border-color:var(--gold-border); color:var(--gold-light); }

/* ── GALLERY ──────────────────────────────────────────── */
.gallery { background:var(--navy-2); padding:clamp(4rem,10vw,7rem) var(--px); }
.gallery-head { max-width:var(--page-max); margin:0 auto 3rem; }
.gallery-head h2 { font-size:clamp(2rem,6vw,3.5rem); margin:.5rem 0 1rem; }
.gallery-head p { color:var(--text-muted); }

.gallery-grid {
  max-width:var(--page-max); margin:0 auto 2.5rem;
  display:grid; grid-template-columns:1fr 1fr; gap:.75rem;
}

.gitem { border-radius:var(--radius); overflow:hidden; position:relative; background:var(--navy-3); margin:0; }
.gitem--tall { grid-row:span 2; }
.gitem--wide { grid-column:span 2; }

.gitem img { width:100%; height:100%; object-fit:cover; display:block; min-height:180px; transition:transform .5s ease; }
.gitem--tall img { min-height:360px; }
.gitem:hover img { transform:scale(1.04); }

.gitem figcaption {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top,rgba(6,12,24,.92) 0%,transparent 100%);
  padding:1.5rem 1rem .85rem;
  font-size:.75rem; color:rgba(232,226,216,.7);
  transform:translateY(100%); transition:transform .3s var(--ease);
}
.gitem:hover figcaption { transform:none; }

.gallery-fb { max-width:var(--page-max); margin:0 auto; display:flex; flex-wrap:wrap; align-items:center; gap:1.25rem; }
.gallery-fb p { color:var(--text-muted); flex:1; min-width:200px; }

/* ── ABOUT ────────────────────────────────────────────── */
.about { max-width:var(--page-max); margin:0 auto; padding:clamp(4rem,10vw,7rem) var(--px); display:grid; gap:3rem; }
.about-img-wrap { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-lg); }
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-copy { display:flex; flex-direction:column; justify-content:center; }
.about-copy h2 { font-size:clamp(2rem,5vw,3rem); margin:.5rem 0 1.5rem; }
.about-lead { font-size:1.05rem; color:var(--text); margin-bottom:1.5rem; }
.about-list { margin-bottom:2rem; display:flex; flex-direction:column; gap:.65rem; }
.about-list li { display:flex; align-items:flex-start; gap:.75rem; font-size:.9rem; color:var(--text-muted); line-height:1.5; }
.about-list li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; }
.about-identity { display:flex; align-items:center; gap:1rem; padding:1.25rem 1.5rem; background:var(--navy-3); border:1px solid var(--border); border-radius:var(--radius); }
.about-logo-img { width:52px; height:52px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.about-identity strong { display:block; font-weight:700; color:var(--text); font-size:.95rem; }
.about-identity span   { font-size:.8rem; color:var(--text-muted); }

/* ── ZONE ─────────────────────────────────────────────── */
.zone { background:var(--navy); padding:clamp(4rem,10vw,7rem) var(--px); }
.zone .section-head { margin-bottom:2.5rem; }
.zone .section-head h2 { font-size:clamp(2rem,6vw,3.5rem); }
.zone-intro { color:var(--text-muted); font-size:1.05rem; max-width:680px; margin-top:.75rem; }

.zone-areas {
  max-width:var(--page-max); margin:0 auto 2.5rem;
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,220px),1fr));
  gap:1rem;
}

.zone-area {
  background:var(--navy-2); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem;
}
.zone-area h3 {
  display:flex; align-items:center; gap:.5rem;
  font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1rem;
}
.zone-area h3 svg { flex-shrink:0; opacity:.6; }
.zone-area ul { display:flex; flex-direction:column; gap:.4rem; }
.zone-area li {
  font-size:.875rem; color:var(--text-muted);
  padding-left:.9rem; position:relative; line-height:1.4;
}
.zone-area li::before { content:''; position:absolute; left:0; top:.5rem; width:4px; height:4px; background:var(--gold); border-radius:50%; }

.zone-area--cta {
  background:var(--gold-dim); border-color:var(--gold-border);
  display:flex; flex-direction:column; gap:1rem;
}
.zone-area--cta h3 { color:var(--gold-light); }
.zone-area--cta p  { font-size:.875rem; color:var(--text-muted); line-height:1.65; }
.zone-area--cta .btn-wa { font-size:.85rem; padding:.7rem 1.2rem; }

.zone-seo-block {
  max-width:var(--page-max); margin:0 auto;
  background:var(--navy-2); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem;
}
.zone-seo-block p {
  font-size:.9rem; color:var(--text-muted); line-height:1.8;
  max-width:900px;
}
.zone-seo-block strong { color:var(--text); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { padding:clamp(4rem,10vw,7rem) var(--px); background:var(--navy-2); }
.faq-head { max-width:var(--page-max); margin:0 auto 3rem; }
.faq-head h2 { font-size:clamp(2rem,6vw,3.5rem); margin:.5rem 0; }

.faq-list {
  max-width:var(--page-max); margin:0 auto;
  border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden;
}
details { border-bottom:1px solid var(--border); }
details:last-child { border-bottom:none; }

summary {
  display:flex; align-items:center; gap:1rem;
  padding:1.5rem 1.75rem; cursor:pointer; list-style:none;
  background:var(--navy-3); transition:background .3s;
  -webkit-tap-highlight-color:transparent; min-height:64px;
}
summary::-webkit-details-marker { display:none; }
summary:hover { background:var(--navy-4); }
details[open]>summary { background:var(--navy-4); }

.faq-num { font-family:'Bebas Neue',sans-serif; font-size:1.1rem; color:var(--gold); letter-spacing:.05em; flex-shrink:0; min-width:28px; }
summary strong { flex:1; font-size:.95rem; font-weight:600; color:var(--text); line-height:1.4; }
.faq-icon { font-style:normal; font-size:1.4rem; color:var(--gold); font-weight:300; flex-shrink:0; transition:transform .3s; line-height:1; }
details[open] .faq-icon { transform:rotate(45deg); }

.faq-answer { background:var(--navy); padding:0 1.75rem 1.5rem calc(1.75rem + 28px + 1rem); }
.faq-answer p { font-size:.9rem; color:var(--text-muted); line-height:1.7; }
.faq-answer a { color:var(--gold-light); text-decoration:underline; text-underline-offset:3px; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact { background:var(--navy-3); }
.contact-inner {
  max-width:var(--page-max); margin:0 auto;
  padding:clamp(4rem,10vw,7rem) var(--px);
  display:grid; gap:3rem;
}
.contact-left h2 { font-size:clamp(2rem,6vw,3.5rem); margin:.5rem 0 1.25rem; }
.contact-left>p { color:var(--text-muted); font-size:1.05rem; margin-bottom:2rem; }
.contact-btns { display:flex; flex-direction:column; align-items:flex-start; gap:.75rem; margin-bottom:1.5rem; }
.contact-note { font-size:.8rem; color:var(--text-dim); }
.contact-right { display:none; }
.contact-img-wrap { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; }
.contact-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.contact-img-badge { position:absolute; bottom:1.5rem; right:1.5rem; background:var(--gold); color:var(--navy); border-radius:var(--radius); padding:1rem; text-align:center; box-shadow:var(--shadow); }
.contact-img-badge .big   { display:block; font-family:'Bebas Neue',sans-serif; font-size:2.75rem; letter-spacing:.02em; line-height:1; }
.contact-img-badge .small { font-size:.65rem; font-weight:600; opacity:.7; line-height:1.3; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background:var(--navy); border-top:1px solid var(--border); }
.footer-inner {
  max-width:var(--page-max); margin:0 auto;
  padding:2.5rem var(--px);
  display:flex; flex-direction:column; gap:1.5rem; align-items:flex-start;
}
.footer-brand img { width:48px; height:48px; border-radius:50%; object-fit:cover; opacity:.75; transition:opacity .3s; }
.footer-brand:hover img { opacity:1; }
.footer-nav { display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; }
.footer-nav a { font-size:.875rem; color:var(--text-muted); transition:color .3s; }
.footer-nav a:hover { color:var(--text); }
.footer-legal { font-size:.75rem; color:var(--text-dim); line-height:1.65; }
.footer-legal a { color:var(--text-dim); text-decoration:underline; text-underline-offset:3px; }

/* ── STICKY WA ────────────────────────────────────────── */
.sticky-wa {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:200;
  display:flex; align-items:center; gap:.5rem;
  background:var(--wa); color:var(--wa-text);
  padding:.85rem 1.25rem; border-radius:100px;
  font-size:.88rem; font-weight:700;
  box-shadow:0 4px 24px rgba(37,211,102,.4),0 2px 8px rgba(0,0,0,.3);
  transition:transform .3s var(--ease),box-shadow .3s,opacity .3s;
}
.sticky-wa:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(37,211,102,.5); }
.sticky-wa.hidden { opacity:0; pointer-events:none; transform:translateY(8px); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (min-width:480px) {
  .brand-name { display:block; }
}

@media (min-width:640px) {
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
  .gitem img { min-height:220px; }
  .contact-btns { flex-direction:row; flex-wrap:wrap; align-items:center; }
  .pstep-connector { display:block; }
}

@media (min-width:900px) {
  .desktop-nav { display:flex; }
  .desktop-cta { display:flex; }
  .menu-toggle { display:none; }

  .featured { grid-template-columns:1fr 1fr; align-items:center; gap:5rem; }
  .featured-copy { padding-top:0; }

  .about { grid-template-columns:1fr 1fr; align-items:center; gap:5rem; }

  .contact-inner { grid-template-columns:1fr 1fr; align-items:center; gap:5rem; }
  .contact-right { display:block; }
  .contact-btns { flex-direction:column; align-items:flex-start; }

  .footer-inner { flex-direction:row; align-items:center; justify-content:space-between; flex-wrap:wrap; }

  .psteps { grid-template-columns:repeat(4,1fr); }
}

@media (min-width:1100px) {
  .gallery-grid { grid-template-columns:repeat(4,1fr); }
  .zone-areas { grid-template-columns:repeat(6,1fr); }
}

/* iOS/Android */
@supports (-webkit-touch-callout:none) { .hero { min-height:100svh; } }
a,button,summary { -webkit-tap-highlight-color:transparent; }
.site-nav {
  padding-left:  max(var(--px), env(safe-area-inset-left));
  padding-right: max(var(--px), env(safe-area-inset-right));
}
.sticky-wa {
  bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 1rem));
  right:  max(1.5rem, env(safe-area-inset-right));
}
.site-footer { padding-bottom: env(safe-area-inset-bottom); }
