/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --black:    #090909;
  --black-2:  #111111;
  --black-3:  #181818;
  --black-4:  #222222;
  --cream:    #F0EBE3;
  --cream-2:  #C4BAA8;
  --cream-3:  #7A6E64;
  --red:      #C8102E;
  --red-dark: #9E0C22;
  --red-glow: rgba(200,16,46,.22);
  --gold:     #C49A5B;
  --line:     rgba(240,235,227,.08);
  --line-2:   rgba(240,235,227,.14);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --content-w: 1180px;
  --nav-h:     72px;
}

@property --mesh-a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--black);
  color: var(--cream);
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; line-height: 1.07; letter-spacing: -0.025em; }

::selection { background: var(--red); color: var(--cream); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--black);
  z-index: 9999; border-radius: 6px; font-weight: 600; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.section { padding-block: clamp(5rem, 11vw, 10rem); }

.label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: .9rem;
  display: block;
}

h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 2.2vw, 1.45rem); }
h2 em, h3 em { font-style: italic; color: var(--red); font-weight: 300; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 60px;
  font-family: var(--sans); font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  transition: all .35s var(--ease-out);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-red {
  background: var(--red); color: var(--cream);
  box-shadow: 0 4px 24px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--red-glow);
}
.btn-outline {
  border: 1px solid var(--line-2); color: var(--cream-2);
}
.btn-outline:hover {
  border-color: var(--cream); color: var(--cream);
  background: rgba(240,235,227,.06);
  transform: translateY(-2px);
}

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.splash.is-out { opacity: 0; transform: scale(1.04); pointer-events: none; }

.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  animation: splashFade .6s var(--ease-out) both;
}
@keyframes splashFade { from { opacity: 0; transform: translateY(12px); } }

.splash-glyph {
  font-size: 3.2rem; line-height: 1;
  animation: splashFloat 1.8s var(--ease-soft) infinite alternate;
}
@keyframes splashFloat { to { transform: translateY(-8px); } }

.splash-words {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.splash-line-1 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 200; letter-spacing: .22em;
  color: var(--cream); text-transform: uppercase;
}
.splash-line-2 {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic; font-weight: 300; letter-spacing: .15em;
  color: var(--red); text-transform: uppercase;
}
.splash-rule {
  width: 40px; height: 1px; background: var(--line-2);
  animation: splashRule .5s var(--ease-out) .3s both;
}
@keyframes splashRule { from { width: 0; } }

/* =============================================================
   6. Mobile menu
   ============================================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li + li { margin-top: .2rem; }
.mobile-menu ul a {
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 2.6rem); font-weight: 300;
  color: var(--cream-2); letter-spacing: -.01em;
  transition: color .2s var(--ease-out);
  display: block; padding: .4rem 0;
}
.mobile-menu ul a:hover { color: var(--cream); }

.mobile-menu-info {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  font-size: .8rem; color: var(--cream-3); letter-spacing: .06em;
}

/* =============================================================
   7. Nav — floating glass pill
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  border: 1px solid transparent;
  border-radius: 0;
  /* Animate all shape/colour properties */
  transition:
    top .55s var(--ease-out),
    left .55s var(--ease-out),
    right .55s var(--ease-out),
    height .55s var(--ease-out),
    padding .55s var(--ease-out),
    border-radius .55s var(--ease-out),
    background .45s var(--ease-out),
    border-color .45s var(--ease-out),
    box-shadow .55s var(--ease-out);
}
/* Glass pill on scroll */
.nav.is-solid {
  top: 10px;
  left: 1rem;
  right: 1rem;
  height: 58px;
  padding: 0 1.5rem;
  border-radius: 60px;
  background: rgba(9,9,9,.72);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-color: rgba(255,255,255,.09);
  box-shadow:
    0 0 0 .5px rgba(255,255,255,.05) inset,
    0 8px 40px rgba(0,0,0,.5),
    0 2px 12px rgba(0,0,0,.35);
}
/* Subtle glass highlight at the top of the pill */
.nav.is-solid::after {
  content: "";
  position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  border-radius: 60px;
  pointer-events: none;
}

.nav-brand {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--serif); font-size: 1rem; font-style: italic; font-weight: 300;
  color: var(--cream); letter-spacing: .02em;
  transition: color .2s;
}
.nav-brand:hover { color: var(--red); }
.nav-brand-icon { font-size: 1.1rem; }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .83rem; font-weight: 450; color: var(--cream-3); letter-spacing: .01em;
  transition: color .25s var(--ease-out);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 34px; padding: 4px 0; z-index: 1001;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out), width .35s var(--ease-out);
  transform-origin: left center;
}
.hamburger span:nth-child(2) { width: 70%; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(0, -1px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(0, 1px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease-soft) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,.55) 0%,
    rgba(9,9,9,.3) 50%,
    rgba(9,9,9,.75) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .045; pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.4rem;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 6rem;
  max-width: 860px;
}

.hero-status {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(9,9,9,.5);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.04) inset, 0 4px 20px rgba(0,0,0,.3);
  padding: .45rem 1.1rem; border-radius: 60px;
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  color: var(--cream-2);
  animation: fadeDown .6s var(--ease-out) .8s both;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } }

.hero-status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-3);
  transition: background .4s;
}
.hero-status-dot.is-open {
  background: #3dd68c;
  box-shadow: 0 0 0 3px rgba(61,214,140,.2);
  animation: dotPulse 2.2s ease-in-out infinite;
}
.hero-status-dot.is-closed { background: var(--red); }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61,214,140,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(61,214,140,.04); }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-3);
  animation: fadeDown .6s var(--ease-out) 1s both;
}
.hero-eyebrow-dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--red);
}

.hero-title { /* animazione gestita via .ht-line > span (lineReveal) */ }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } }
.hero-title em { color: var(--red); font-style: italic; font-weight: 300; }
.ht-line { display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--cream-2); line-height: 1.55;
  animation: fadeUp .8s var(--ease-out) 1.25s both;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem;
  animation: fadeUp .8s var(--ease-out) 1.4s both;
}

.hero-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3);
  animation: fadeUp .8s var(--ease-out) 2s both;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cream-3), transparent);
  animation: scrollDrop 1.8s var(--ease-soft) 2.2s infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 540px) {
  .hero-sub { font-size: .92rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-scroll-cue { display: none; }
}

/* =============================================================
   9. Ticker
   ============================================================= */
.ticker {
  background: var(--red); overflow: hidden;
  padding-block: .85rem; position: relative; z-index: 1;
}
.ticker-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 32s linear infinite;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(240,235,227,.92);
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-sep { font-size: .9rem; opacity: .7; flex-shrink: 0; }

/* =============================================================
   10. Concept
   ============================================================= */
.concept-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--gutter);
  align-items: start;
}

.concept-visual {
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.concept-img-frame {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 3/4;
}
.concept-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.concept-img-frame:hover img { transform: scale(1.04); }
.concept-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,.5) 0%, transparent 60%);
}
.concept-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--red); color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; font-weight: 300; letter-spacing: .02em;
  padding: 1rem 1.2rem; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 0; line-height: 1.2;
  text-align: center;
}

.concept-content h2 { margin-bottom: 1.5rem; line-height: 1.1; }
.concept-lead {
  color: var(--cream-2); line-height: 1.7; margin-bottom: 3rem;
  font-size: .98rem; max-width: 44ch;
}

.pillars { display: flex; flex-direction: column; }
.pillar {
  display: flex; gap: 1.5rem;
  padding: 1.6rem 0; border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-num {
  font-family: var(--serif); font-size: 2rem; font-style: italic;
  color: var(--red); line-height: 1; flex-shrink: 0; opacity: .6; width: 3ch;
}
.pillar h3 {
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  color: var(--cream); margin-bottom: .35rem; letter-spacing: 0;
}
.pillar p { font-size: .85rem; color: var(--cream-3); line-height: 1.6; max-width: 38ch; }

@media (max-width: 960px) {
  .concept-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .concept-visual { position: static; max-width: 480px; margin-inline: auto; }
}

/* =============================================================
   11. Menu
   ============================================================= */
.menu-header {
  text-align: center; margin-bottom: 2.5rem; padding-inline: var(--gutter);
}
.menu-header h2 { margin-top: .5rem; }

.menu-track-wrap {
  overflow-x: auto; overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding-block: 1.5rem 2rem;
  scrollbar-width: none;
}
.menu-track-wrap::-webkit-scrollbar { display: none; }

.menu-track {
  display: flex; gap: 1.5rem;
  padding-inline: var(--gutter);
  width: max-content;
}

.menu-card {
  flex: 0 0 320px; width: 320px;
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
}
.menu-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent;
  transition: background .4s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 8px 20px var(--red-glow);
}
.menu-card:hover::before { background: var(--red); }

.menu-card--signature::before { background: var(--red); }

.menu-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(9,9,9,.65));
}
.menu-card-num {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--serif); font-size: 1.6rem; font-style: italic;
  color: rgba(240,235,227,.5); line-height: 1;
}
.menu-card-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--red); color: var(--cream);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 60px;
}

.menu-card-body { padding: 1.4rem; }
.menu-card-body h3 {
  font-size: 1.15rem; font-weight: 400; margin-bottom: .5rem; color: var(--cream);
}
.menu-card-body p { font-size: .83rem; color: var(--cream-3); line-height: 1.55; margin-bottom: 1.2rem; }

.menu-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem; }
.menu-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.menu-card-tags span {
  font-size: .68rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-3); border: 1px solid var(--line); padding: .2rem .6rem; border-radius: 60px;
}
.menu-card-price {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: var(--gold); white-space: nowrap; flex-shrink: 0; line-height: 1;
}

.menu-hint {
  text-align: center; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-3); margin-top: 1rem; padding-inline: var(--gutter);
}

@media (max-width: 540px) {
  .menu-card { flex: 0 0 275px; width: 275px; }
}

/* =============================================================
   12. Il vaso
   ============================================================= */
.vaso { background: var(--black-2); }

.vaso-wrap {
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--gutter);
}
.vaso-header { margin-bottom: 4rem; max-width: 600px; }
.vaso-header h2 { margin-block: .5rem 1rem; }
.vaso-intro { color: var(--cream-3); font-size: .98rem; line-height: 1.65; max-width: 44ch; }

.vaso-steps {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
}

.vaso-step {
  display: flex; flex-direction: column; gap: 1.2rem;
  padding: 2.5rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background .35s var(--ease-out);
}
.vaso-step:hover { background: rgba(240,235,227,.02); }
.vaso-step:nth-child(even) { border-right: 0; }
.vaso-step:nth-last-child(-n+2) { border-bottom: 0; }

.vaso-step-roman {
  font-family: var(--serif); font-size: 2.6rem; font-style: italic; font-weight: 200;
  color: var(--red); line-height: 1; opacity: .7;
}
.vaso-step-content h3 {
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  color: var(--cream); margin-bottom: .5rem; letter-spacing: 0;
}
.vaso-step-content p { font-size: .85rem; color: var(--cream-3); line-height: 1.6; margin-bottom: 1rem; }
.vaso-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.vaso-tags span {
  font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-2); border: 1px solid var(--line-2);
  padding: .25rem .7rem; border-radius: 60px;
}

@media (max-width: 720px) {
  .vaso-steps { grid-template-columns: 1fr; }
  .vaso-step { border-right: 0 !important; }
  .vaso-step:last-child { border-bottom: 0; }
  .vaso-step:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .vaso-step:last-child { border-bottom: 0; }
}

/* =============================================================
   13. Where
   ============================================================= */
.where-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--gutter);
  align-items: center;
}

.where-content h2 { margin-block: .5rem 2rem; }

.where-status-card {
  background: rgba(18,18,18,.65);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.04) inset, 0 8px 32px rgba(0,0,0,.3);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
  transition: border-color .4s, box-shadow .4s;
}
.where-status-card.is-open {
  border-color: rgba(61,214,140,.22);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.04) inset, 0 8px 32px rgba(61,214,140,.06);
}
.where-status-card.is-closed { border-color: rgba(200,16,46,.18); }

.where-status-main {
  display: flex; align-items: center; gap: .7rem; margin-bottom: .4rem;
}
.where-status-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-3); transition: background .4s;
}
.where-status-dot.is-open {
  background: #3dd68c;
  box-shadow: 0 0 0 4px rgba(61,214,140,.15);
  animation: dotPulse 2.2s ease-in-out infinite;
}
.where-status-dot.is-closed { background: var(--red); }
.where-status-label {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic; font-weight: 300;
  color: var(--cream);
}
.where-status-detail { font-size: .83rem; color: var(--cream-3); line-height: 1.4; padding-left: 1.7rem; }

.where-address { margin-bottom: 2rem; }
.where-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.where-row svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.where-row div { display: flex; flex-direction: column; gap: .15rem; }
.where-row strong { font-size: .9rem; color: var(--cream); font-weight: 600; }
.where-row span { font-size: .85rem; color: var(--cream-3); line-height: 1.4; }
.where-closed-day { color: var(--red) !important; font-weight: 500; }
.where-btn { margin-top: 0; }

.where-visual { position: relative; }
.where-map-frame {
  border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 3/4;
  border: 1px solid var(--line);
}
.where-map-frame iframe {
  width: 100%; height: 100%; display: block;
  filter: grayscale(1) invert(1) contrast(0.82) brightness(0.78);
}

@media (max-width: 960px) {
  .where-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .where-visual { max-width: 480px; margin-inline: auto; }
}

/* =============================================================
   13-b. Photo Wall — muro di polaroid sparsi
   ============================================================= */
.wall {
  background: var(--black-2);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.wall-header {
  max-width: 1100px; margin-inline: auto;
  padding-inline: var(--gutter); margin-bottom: 3rem;
}
.wall-header h2 { margin-top: .5rem; }

/* Muro con posizionamento assoluto */
.wall-board {
  position: relative;
  height: 660px;
  max-width: 1100px; margin-inline: auto;
  /* Sfondo muro scuro con sfumature sottili */
  background:
    radial-gradient(ellipse at 18% 65%, rgba(200,16,46,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 82% 15%, rgba(196,154,91,.025) 0%, transparent 45%),
    #0e0c0a;
  overflow: hidden;
  border-radius: 4px;
}

/* Ogni foto: posizione assoluta, rotazione da CSS var */
.wall-photo {
  position: absolute;
  width: var(--w, 210px);
  /* Polaroid: bordo bianco caldo, più spazio sotto per la didascalia */
  background: #f5f0e8;
  padding: 10px 10px 46px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.25),
    0 5px 16px rgba(0,0,0,.45),
    0 16px 45px rgba(0,0,0,.45),
    0 30px 70px rgba(0,0,0,.25);
  /* Rotazione e pivot vicino al pin in cima */
  transform: rotate(var(--rot, 0deg));
  transform-origin: 50% 8%;
  /* Animazione: solo opacità (con delay per stagger) + transform */
  opacity: 0;
  transition:
    opacity  .65s var(--ease-out) var(--delay, 0s),
    transform .6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  will-change: transform, opacity;
  z-index: 1;
}
.wall-photo.is-visible { opacity: 1; }

/* Z-index naturale: alcune foto davanti, altre dietro */
.wall-photo:nth-child(1) { z-index: 3; }
.wall-photo:nth-child(2) { z-index: 1; }
.wall-photo:nth-child(3) { z-index: 4; }
.wall-photo:nth-child(4) { z-index: 2; }
.wall-photo:nth-child(5) { z-index: 1; }
.wall-photo:nth-child(6) { z-index: 3; }

/* Hover: si raddrizza, si alza, viene in primo piano */
.wall-photo:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.07) !important;
  box-shadow:
    0 2px 5px rgba(0,0,0,.15),
    0 12px 28px rgba(0,0,0,.5),
    0 36px 80px rgba(0,0,0,.55);
  z-index: 20 !important;
  transition:
    transform .5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Puntina rossa */
.wall-pin {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  width: 17px; height: 17px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 35% 30%, #ff5a5a, #c8102e 58%, #850b1f);
  box-shadow: 0 2px 8px rgba(200,16,46,.6), 0 1px 3px rgba(0,0,0,.5);
}
.wall-pin::after {
  content: ""; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: rgba(0,0,0,.28); border-radius: 0 0 2px 2px;
}

/* Foto quadrata */
.wall-photo img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  filter: saturate(1.08) contrast(1.05);
}

/* Didascalia in corsivo sotto */
.wall-caption {
  display: block; text-align: center;
  margin-top: 8px; padding-inline: 2px;
  font-family: var(--serif); font-style: italic; font-size: .8rem;
  color: #5a4938; line-height: 1.3;
}

.wall-note {
  text-align: center; padding-inline: var(--gutter);
  margin-top: 2.5rem;
  font-size: .87rem; color: var(--cream-3); letter-spacing: .02em;
}

/* Mobile: strip orizzontale scorrevole */
@media (max-width: 820px) {
  .wall-board {
    height: auto;
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2.5rem;
    padding: 2.5rem var(--gutter) 3.5rem;
    background: #0e0c0a;
    border-radius: 0;
  }
  .wall-board::-webkit-scrollbar { display: none; }
  .wall-photo {
    position: static;
    flex: 0 0 150px;
    width: 150px !important;
    padding: 7px 7px 38px;
  }
  /* Alternanza inclinazione su mobile */
  .wall-photo:nth-child(odd)  { transform: rotate(-4deg)  translateY(0); }
  .wall-photo:nth-child(even) { transform: rotate(5deg) translateY(16px); }
  .wall-photo:hover {
    transform: rotate(0deg) scale(1.06) translateY(-10px) !important;
  }
  .wall-caption { font-size: .72rem; }
}

/* =============================================================
   14. Social
   ============================================================= */
.social { background: var(--black-2); }
.social-wrap {
  max-width: var(--content-w); margin-inline: auto; padding-inline: var(--gutter);
}
.social-header { margin-bottom: 3rem; }
.social-header h2 { margin-top: .5rem; }
.social-sub {
  color: var(--cream-3); font-size: .95rem; margin-top: .8rem; max-width: 46ch;
}

.social-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

.social-card {
  display: block; position: relative; overflow: hidden;
  background: rgba(18,18,18,.7);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.03) inset, 0 8px 32px rgba(0,0,0,.25);
  border-radius: 20px;
  text-decoration: none; color: inherit;
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s var(--ease-out);
}
.social-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  transition: height .35s var(--ease-out);
}
.social-card--ig::before {
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.social-card--tt::before {
  background: linear-gradient(90deg, #69C9D0 0%, #EE1D52 100%);
}
.social-card:hover { transform: translateY(-10px); }
.social-card:hover::before { height: 3px; }
.social-card--ig:hover {
  border-color: rgba(253,100,60,.25);
  box-shadow: 0 28px 70px rgba(253,100,60,.12), 0 8px 20px rgba(0,0,0,.4);
}
.social-card--tt:hover {
  border-color: rgba(238,29,82,.25);
  box-shadow: 0 28px 70px rgba(238,29,82,.12), 0 8px 20px rgba(0,0,0,.4);
}

/* Radial glow background on hover */
.social-card-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity .5s var(--ease-out);
}
.social-card--ig .social-card-glow {
  background: radial-gradient(ellipse at 70% 0%, rgba(253,29,29,.08) 0%, transparent 65%);
}
.social-card--tt .social-card-glow {
  background: radial-gradient(ellipse at 70% 0%, rgba(238,29,82,.08) 0%, transparent 65%);
}
.social-card:hover .social-card-glow { opacity: 1; }

.social-card-inner {
  position: relative; z-index: 1;
  padding: 2.2rem 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.social-card-head {
  display: flex; align-items: center; gap: 1rem;
}
.social-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.social-card--ig .social-card-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045);
  color: #fff;
}
.social-card--tt .social-card-icon {
  background: #010101; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.social-card-icon svg { width: 24px; height: 24px; }

.social-card-meta {
  display: flex; flex-direction: column; gap: .15rem;
}
.social-card-platform {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-3);
}
.social-card-handle {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic; font-weight: 300;
  color: var(--cream); letter-spacing: -.01em; line-height: 1.1;
}

.social-card-desc {
  font-size: .87rem; color: var(--cream-3); line-height: 1.7;
  flex: 1;
}

.social-card-cta {
  display: flex; align-items: center; gap: .55rem;
  margin-top: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: gap .3s var(--ease-out);
}
.social-card--ig .social-card-cta { color: #fd5c38; }
.social-card--tt .social-card-cta { color: #EE1D52; }
.social-card:hover .social-card-cta { gap: .9rem; }
.social-card-cta svg { transition: transform .3s var(--ease-out); flex-shrink: 0; }
.social-card:hover .social-card-cta svg { transform: translateX(5px); }

@media (max-width: 720px) {
  .social-cards { grid-template-columns: 1fr; }
  .social-card-inner { padding: 1.8rem; }
}

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding-inline: var(--gutter);
}

.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 4rem;
  max-width: var(--content-w); margin-inline: auto;
  padding-block: 4rem 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex; align-items: flex-start; gap: 1rem; max-width: 280px;
}
.footer-icon { font-size: 1.8rem; flex-shrink: 0; }
.footer-brand strong {
  display: block; font-family: var(--serif); font-size: 1.1rem;
  font-style: italic; font-weight: 300; color: var(--cream);
  margin-bottom: .3rem; letter-spacing: .04em;
}
.footer-brand em {
  font-family: var(--sans); font-size: .8rem; color: var(--cream-3);
  font-style: normal; line-height: 1.55;
}

.footer-cols {
  display: flex; gap: 3.5rem; flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: .2rem; }
.footer-col-title {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); margin-bottom: .5rem;
}
.footer-col p { font-size: .83rem; color: var(--cream-3); line-height: 1.5; }
.footer-closed { color: var(--red) !important; }
.footer-link {
  font-size: .83rem; color: var(--cream-3); line-height: 1.8;
  transition: color .2s;
}
.footer-link:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  max-width: var(--content-w); margin-inline: auto;
}
.footer-bottom p { font-size: .73rem; color: var(--cream-3); letter-spacing: .02em; }

@media (max-width: 720px) {
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-cols { gap: 2rem; }
}

/* =============================================================
   16. Reveal on scroll
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   17. Responsive breakpoints
   ============================================================= */
@media (min-width: 720px) { :root { --gutter: 2.5rem; } }
@media (min-width: 1280px) { :root { --gutter: 4rem; } }

/* =============================================================
   18. Scroll progress bar
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 10002;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff6b35 100%);
  pointer-events: none;
  will-change: width;
}

/* =============================================================
   19. Custom cursor (desktop only)
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed; z-index: 10001; pointer-events: none;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--red);
    will-change: transform;
    mix-blend-mode: difference;
    transition: opacity .3s;
  }
  .cursor-ring {
    position: fixed; z-index: 10000; pointer-events: none;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid rgba(200,16,46,.65);
    will-change: transform;
    transition: width .35s var(--ease-out), height .35s var(--ease-out),
                border-color .35s var(--ease-out), opacity .3s;
  }
  .cursor-ring.is-hovered {
    width: 64px; height: 64px;
    border-color: rgba(200,16,46,.35);
  }
  .cursor-ring.is-clicked {
    width: 30px; height: 30px;
    border-color: rgba(200,16,46,.9);
  }
  /* Hide native cursor everywhere */
  .has-cursor,
  .has-cursor * { cursor: none !important; }
}

/* =============================================================
   20. Hero line reveal
   ============================================================= */
.ht-line {
  display: block;
  overflow: hidden;
  /* Padding so italic descenders aren't clipped */
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.ht-line > span {
  display: block;
  transform: translateY(110%);
  animation: lineReveal .95s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 1.15s) both;
}
.ht-line:nth-child(1) > span { --d: 1.05s; }
.ht-line:nth-child(2) > span { --d: 1.22s; }
.ht-line:nth-child(3) > span { --d: 1.39s; }

@keyframes lineReveal { to { transform: translateY(0); } }

/* =============================================================
   21. Hero floating particles
   ============================================================= */
.hero-particle {
  position: absolute; bottom: -5%; z-index: 1;
  pointer-events: none; user-select: none; line-height: 1;
  animation: particleRise linear both;
}
@keyframes particleRise {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-115vh) rotate(540deg); }
}

/* =============================================================
   22. Button shimmer sweep on hover
   ============================================================= */
.btn-red,
.btn-outline { overflow: hidden; }

.btn-red::after,
.btn-outline::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: skewX(-22deg);
  transition: none;
  pointer-events: none;
}
.btn-red:hover::after,
.btn-outline:hover::after {
  left: 170%;
  transition: left .7s var(--ease-out);
}

/* =============================================================
   23. Menu card shine sweep on hover
   ============================================================= */
.menu-card { overflow: hidden; }
.menu-card::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none; transition: none;
}
.menu-card:hover::after {
  left: 170%;
  transition: left .75s var(--ease-out);
}

/* =============================================================
   24. Social card shine sweep on hover
   ============================================================= */
.social-card::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none; transition: none;
  z-index: 2;
}
.social-card:hover::after {
  left: 170%;
  transition: left .75s var(--ease-out);
}

/* =============================================================
   25. Smooth scroll anchor offset fix
   ============================================================= */
[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* =============================================================
   26. Phone mockups — Contattaci
   ============================================================= */
.phones { background: #060505; }
.phones-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
  text-align: center;
}
.phones-wrap h2 { margin-bottom: 3.5rem; }

.phones-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ── Phone body ──────────────────────────────────────────────── */
.iphone {
  perspective: 900px;
  display: inline-block;
  position: relative;
}

/* Red ambient glow behind dialer phone */
.iphone:first-child::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,16,46,.15) 0%, transparent 68%);
  border-radius: 70px;
  pointer-events: none;
  z-index: 0;
}

.iphone__body {
  position: relative;
  width: 235px;
  height: 470px;
  background: #141414;
  border-radius: 38px;
  padding: 6px;
  z-index: 1;
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    0 0 0 2px #2c2c2c,
    inset 0 0 0 1.5px #1f1f1f;
  transition: transform .5s cubic-bezier(0.16,1,0.3,1), box-shadow .5s;
}

/* Notch (Dynamic Island style) */
.iphone__notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #141414;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}
.iphone__speaker {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 5px;
  background: #202020;
  border-radius: 3px;
  z-index: 11;
  pointer-events: none;
}
.iphone__camera {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(36px);
  width: 9px; height: 9px;
  background: #10102a;
  border-radius: 50%;
  border: 1px solid #252535;
  z-index: 11;
  pointer-events: none;
}

/* Screen */
.iphone__screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 33px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Home bar */
.iphone__home-bar {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
}

/* ── Dialer screen ───────────────────────────────────────────── */
.iphone__dial {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 14px 36px;
  background: linear-gradient(175deg, #0d0d0d 0%, #111 100%);
  gap: 4px;
}
.iphone__contact-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(200,16,46,.15);
  border: 1.5px solid rgba(200,16,46,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 2px;
}
.iphone__contact-name {
  color: #fff;
  font-family: var(--font-serif);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.iphone__contact-number {
  color: rgba(255,255,255,.38);
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.iphone__keypad {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  gap: 7px;
  margin: 4px 0;
}
.iphone__key {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1.1;
  font-size: 1rem;
  font-weight: 500;
  gap: 1px;
  transition: background .12s;
  font-family: var(--font-sans);
}
.iphone__key span {
  font-size: .34rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  line-height: 1;
}
.iphone__key--sym span { display: none; }
.iphone__key:hover { background: rgba(255,255,255,.17); }
.iphone__key:active { background: rgba(255,255,255,.25); transform: scale(.92); }

.iphone__call-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--red);
  color: #fff;
  border-radius: 30px;
  padding: .58rem 1.8rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 6px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(200,16,46,.45);
}
.iphone__call-btn:hover {
  background: #a80d24;
  transform: scale(1.05);
  box-shadow: 0 8px 34px rgba(200,16,46,.6);
}

/* ── Map screen ──────────────────────────────────────────────── */
.iphone__map-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 52px 10px 36px;
  background: #0a0a0a;
  gap: 6px;
  min-height: 0;
}
.iphone__map-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.48);
  font-size: .58rem;
  letter-spacing: .05em;
  font-family: var(--font-sans);
  padding: 0 2px;
  flex-shrink: 0;
}
.iphone__map-label svg { color: var(--red); flex-shrink: 0; }
.iphone__map-container {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
  filter: grayscale(1) invert(1) contrast(.82) brightness(.78);
}
.iphone__map-container iframe {
  display: block;
  border: 0;
  pointer-events: none;
}
.iphone__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--red);
  color: #fff;
  border-radius: 20px;
  padding: .48rem 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(200,16,46,.38);
}
.iphone__map-btn:hover {
  background: #a80d24;
  box-shadow: 0 6px 26px rgba(200,16,46,.55);
}

@media (max-width: 560px) {
  .phones-grid { gap: 2rem; }
  .iphone__body { width: 210px; height: 420px; }
  .iphone__keypad { grid-template-columns: repeat(3, 44px); }
  .iphone__key { width: 44px; height: 44px; font-size: .9rem; }
}
