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

:root {
  --black: #000;
  --ink: #050505;
  --white: #fff;
  --soft: rgba(255,255,255,0.66);
  --muted: rgba(255,255,255,0.42);
  --dim: rgba(255,255,255,0.2);
  --line: rgba(255,255,255,0.1);
  --glow-sm: 0 0 10px rgba(255,255,255,0.62), 0 0 26px rgba(255,255,255,0.18);
  --glow-md: 0 0 18px rgba(255,255,255,0.72), 0 0 48px rgba(255,255,255,0.22);
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 34rem),
    linear-gradient(180deg, #000 0%, #030303 48%, #000 100%);
  font-family: "Pathway Gothic One", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 34%, black, transparent 74%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

#aura-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header, main, .site-footer { position: relative; z-index: 1; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 46px;
  transition: background 0.32s ease, border-color 0.32s ease, padding 0.32s ease;
}

.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.logo-link { display: inline-flex; align-items: center; }
.logo-link img { width: 118px; height: auto; filter: drop-shadow(0 0 7px rgba(255,255,255,0.7)); }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }

.desktop-nav a, .header-action, .btn {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 5px;
}

.desktop-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover, .desktop-nav .nav-active {
  color: var(--white);
  border-color: rgba(255,255,255,0.72);
  text-shadow: var(--glow-sm);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
  font-size: 11px;
  color: var(--white);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(0,0,0,0.34);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 1px;
  background: #fff;
  box-shadow: var(--glow-sm);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 112px 26px 42px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.12), transparent 34rem),
    rgba(0,0,0,0.96);
  backdrop-filter: blur(18px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(28px, 9vw, 46px);
  line-height: 1;
  letter-spacing: 8px;
  text-shadow: var(--glow-md);
}

body.nav-open { overflow: hidden; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 54px;
  padding: 132px 56px 82px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #030303);
  pointer-events: none;
}

.hero-copy { max-width: 760px; position: relative; z-index: 1; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

h1, h2, h3 { text-transform: uppercase; font-weight: 400; }

h1 {
  font-size: clamp(64px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: 8px;
  margin-bottom: 30px;
  text-shadow: var(--glow-md);
}

.lead {
  max-width: 690px;
  color: rgba(255,255,255,0.72);
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 42px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 34px;
  font-size: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn.primary {
  border-color: rgba(255,255,255,0.82);
  color: var(--white);
  box-shadow: var(--glow-sm), inset 0 0 24px rgba(255,255,255,0.035);
}

.btn.secondary { color: rgba(255,255,255,0.58); }

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--white);
  box-shadow: var(--glow-sm);
  color: var(--white);
}

.hero-media {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.14);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 5% -12% 5% 10%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18), transparent 66%);
  filter: blur(10px);
}

.hero-media img, .hero-media video {
  position: relative;
  width: min(500px, 88%);
  max-height: 78svh;
  object-fit: cover;
  filter: grayscale(0.06) contrast(1.08) drop-shadow(0 0 42px rgba(255,255,255,0.18));
}

.hero-media video { aspect-ratio: 4 / 5; }

.hero-video-card video {
  width: min(430px, 92%);
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 0 42px rgba(255,255,255,0.16),
    0 28px 90px rgba(0,0,0,0.62);
}

.hero-proof {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-proof span, .stat-card, .story-card, .collector-frame, .visit-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

.hero-proof span {
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

.section {
  padding: 104px 56px;
  position: relative;
  z-index: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.section-heading h2, .final-cta h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 5px;
  text-shadow: 0 0 38px rgba(255,255,255,0.16);
}

.intro-text {
  font-size: 25px;
  line-height: 1.65;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.68);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.stat-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
  background: #050505;
}

.stat-card strong {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-stack {
  display: grid;
  gap: 18px;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
  background: #020202;
}

.gallery-stack figure {
  position: relative;
  min-height: 340px;
  max-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.08);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.gallery-stack figure:hover img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1.1);
}

.gallery-stack .full img { object-fit: contain; }
.gallery-stack .full {
  min-height: 320px;
  max-height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), #000 68%);
}

.visit-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 54px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255,255,255,0.08), transparent 24rem),
    rgba(255,255,255,0.025);
}

.visit-card h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 22px;
}

.visit-card p, .visit-card address, .story-card p, .collector-intro p {
  color: rgba(255,255,255,0.66);
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 1.7px;
  font-style: normal;
}

.visit-meta {
  display: grid;
  gap: 14px;
}

.visit-meta div {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.34);
}

.visit-meta strong, .story-card strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.map-card {
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
}

.map-panel {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.72fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
}

.map-grid {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 52%, rgba(255,255,255,0.24), transparent 0.38rem),
    linear-gradient(34deg, transparent 0 48%, rgba(255,255,255,0.18) 48.2% 49%, transparent 49.2%),
    linear-gradient(-18deg, transparent 0 42%, rgba(255,255,255,0.16) 42.2% 43.4%, transparent 43.6%),
    linear-gradient(76deg, transparent 0 54%, rgba(255,255,255,0.13) 54.2% 55.4%, transparent 55.6%),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    radial-gradient(circle at 62% 47%, rgba(255,255,255,0.11), transparent 14rem),
    #040404;
  background-size:
    auto,
    auto,
    auto,
    auto,
    74px 74px,
    74px 74px,
    auto,
    auto;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 28px rgba(255,255,255,0.12);
}

.map-grid::before {
  width: 18%;
  height: 42%;
  left: 18%;
  top: 12%;
  transform: rotate(28deg);
  opacity: 0.18;
}

.map-grid::after {
  width: 27%;
  height: 25%;
  right: 10%;
  bottom: 12%;
  transform: rotate(-14deg);
  opacity: 0.14;
}

.street {
  position: absolute;
  z-index: 2;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,255,255,0.3);
  white-space: nowrap;
}

.street-mazzini {
  left: 18%;
  top: 45%;
  transform: rotate(18deg);
}

.street-paola {
  left: -3%;
  top: 57%;
  transform: rotate(-58deg);
}

.street-accademia {
  right: -11%;
  top: 46%;
  transform: rotate(-72deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: 64%;
  top: 49%;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #fff;
  box-shadow:
    0 0 10px rgba(255,255,255,0.95),
    0 0 34px rgba(255,255,255,0.48),
    0 0 76px rgba(255,255,255,0.22);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #000;
}

.map-details {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 16rem),
    #020202;
}

.map-details div {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.34);
}

.map-details strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.map-details span {
  color: rgba(255,255,255,0.58);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.google-map-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr);
  background: #000;
}

.google-map-panel iframe {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  min-height: 260px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 18rem),
    #050505;
}

.story-card span {
  display: block;
  color: rgba(255,255,255,0.32);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.collector-frames {
  display: grid;
  gap: 24px;
  padding: 96px 56px;
  background: #020202;
}

.collector-frame {
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent),
    #000;
  box-shadow: 0 18px 70px rgba(0,0,0,0.6);
}

.collector-frame iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  display: block;
  background: #000;
}

.collector-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding: 70px 56px 0;
}

.collector-intro h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 5px;
  text-shadow: var(--glow-sm);
}

.circle-mark {
  width: min(360px, 86vw);
  aspect-ratio: 1;
  margin: 34px auto 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 16%),
    radial-gradient(circle at 50% 50%, transparent 50%, rgba(255,255,255,0.18) 51%, transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 64%);
  box-shadow:
    inset 0 0 54px rgba(255,255,255,0.08),
    0 0 70px rgba(255,255,255,0.16);
}

.hero-media .circle-image {
  width: min(620px, 94%);
  max-height: 78svh;
  object-fit: contain;
  filter: drop-shadow(0 0 44px rgba(255,255,255,0.2));
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 56px 96px;
}

.quote-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
}

.quote-card p {
  color: rgba(255,255,255,0.72);
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: 1.6px;
  margin-bottom: 26px;
}

.quote-card span {
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.final-cta {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 96px 42px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.1), transparent 64%),
    #000;
}

.final-cta h2 { max-width: 860px; margin: 0 auto 38px; }
.final-cta .hero-actions { justify-content: center; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 56px;
  border-top: 1px solid var(--line);
  background: #020202;
}

.site-footer strong, .site-footer span { display: block; }

.site-footer strong {
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.site-footer span, .footer-links a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a:hover { color: var(--white); }

@media (max-width: 980px) {
  .site-header { padding: 16px 22px; }
  .desktop-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hero, .section-grid, .visit-card, .collector-intro { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 116px 24px 44px; }
  .hero-media { min-height: 430px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .lead { font-size: 19px; }
  .hero-proof { position: static; margin-top: 38px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .section, .collector-frames { padding: 72px 24px; }
  .gallery-stack { width: min(100% - 32px, 900px); padding: 56px 0; }
  .collector-intro { padding: 72px 24px 0; }
  .quote-grid, .story-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .gallery-stack figure { min-height: 300px; max-height: 460px; }
  .visit-card { padding: 34px 24px; }
  .map-card { grid-template-columns: 1fr; }
  .map-panel { grid-template-columns: 1fr; }
  .google-map-panel { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; padding: 38px 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .header-action { display: none; }
  .logo-link img { width: 96px; }
  h1 { font-size: 56px; letter-spacing: 5px; }
  .eyebrow { font-size: 11px; letter-spacing: 5px; }
  .hero-media { min-height: 330px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; padding-left: 18px; padding-right: 18px; letter-spacing: 4px; }
  .mobile-nav a { letter-spacing: 5px; }
  .stats-strip { grid-template-columns: 1fr; }
  .gallery-stack { width: min(100% - 24px, 620px); padding: 42px 0; }
  .gallery-stack figure { min-height: 240px; max-height: 360px; }
  .intro-text { font-size: 21px; }
  .collector-frame iframe { min-height: 620px; }
  .map-grid { min-height: 320px; }
  .map-panel { min-height: 0; }
  .map-details { padding: 18px; }
  .street { font-size: 10px; letter-spacing: 2px; }
  .street-accademia { right: -22%; }
}

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