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

:root {
  --navy:   #03071a;
  --deep:   #060d2e;
  --royal:  #0e1f7a;
  --blue:   #1a3aff;
  --glow:   #3a5fff;
  --sky:    #5b8cff;
  --white:  #ffffff;
  --silver: #b8c8e8;
  --muted:  #6a80b0;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── ANIMATED BACKGROUND ─── */

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, #0a1550 0%, #03071a 60%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  translate: 0 var(--scroll-y, 0px);
  will-change: transform, translate;
}

.orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #2a50ff 0%, #0a1a8a 55%, transparent 100%);
  top: -250px; left: -250px;
  opacity: 0.45;
  animation: drift-1 26s ease-in-out infinite;
}
.orb-2 {
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, #1a3aff 0%, #050f60 50%, transparent 100%);
  bottom: -350px; right: -350px;
  opacity: 0.38;
  animation: drift-2 34s ease-in-out infinite;
}
.orb-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4a6fff 0%, #1020a0 45%, transparent 100%);
  top: 35%; left: 50%;
  opacity: 0.30;
  animation: drift-3 20s ease-in-out infinite;
}
.orb-4 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6080ff 0%, #2030c0 45%, transparent 100%);
  top: 5%; right: 5%;
  opacity: 0.25;
  animation: drift-4 16s ease-in-out infinite;
}
.orb-5 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #3a70ff 0%, #0a2080 50%, transparent 100%);
  bottom: 10%; left: 20%;
  opacity: 0.22;
  animation: drift-5 24s ease-in-out infinite;
}

@keyframes drift-1 {
  0%   { transform: translate(0, 0)          scale(1);    opacity: 0.45; }
  25%  { transform: translate(450px, 220px)  scale(1.14); opacity: 0.58; }
  50%  { transform: translate(260px, 480px)  scale(0.90); opacity: 0.36; }
  75%  { transform: translate(100px, 280px)  scale(1.08); opacity: 0.52; }
  100% { transform: translate(0, 0)          scale(1);    opacity: 0.45; }
}
@keyframes drift-2 {
  0%   { transform: translate(0, 0)            scale(1);    opacity: 0.38; }
  30%  { transform: translate(-400px, -300px)  scale(1.18); opacity: 0.52; }
  60%  { transform: translate(-180px, -460px)  scale(0.86); opacity: 0.28; }
  80%  { transform: translate(-320px, -160px)  scale(1.10); opacity: 0.44; }
  100% { transform: translate(0, 0)            scale(1);    opacity: 0.38; }
}
@keyframes drift-3 {
  0%   { transform: translate(0, 0)           scale(1);    opacity: 0.30; }
  35%  { transform: translate(-320px, 260px)  scale(1.22); opacity: 0.44; }
  65%  { transform: translate(240px, 360px)   scale(0.82); opacity: 0.18; }
  100% { transform: translate(0, 0)           scale(1);    opacity: 0.30; }
}
@keyframes drift-4 {
  0%   { transform: translate(0, 0)           scale(1);    opacity: 0.25; }
  40%  { transform: translate(280px, 320px)   scale(0.86); opacity: 0.38; }
  70%  { transform: translate(-200px, 200px)  scale(1.22); opacity: 0.16; }
  100% { transform: translate(0, 0)           scale(1);    opacity: 0.25; }
}
@keyframes drift-5 {
  0%   { transform: translate(0, 0)           scale(1);    opacity: 0.22; }
  45%  { transform: translate(360px, -280px)  scale(1.18); opacity: 0.36; }
  80%  { transform: translate(140px, -400px)  scale(0.88); opacity: 0.14; }
  100% { transform: translate(0, 0)           scale(1);    opacity: 0.22; }
}

/* ─── LAYOUT ─── */

.page {
  position: relative;
  z-index: 1;
}

/* ─── NAV ─── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(3, 7, 26, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90, 130, 255, 0.12);
  transition: background 0.3s;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--blue), #3a5fff);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: box-shadow 0.3s, opacity 0.25s !important;
  box-shadow: 0 0 18px rgba(58, 95, 255, 0.55), 0 0 40px rgba(58, 95, 255, 0.25);
}

.nav-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 28px rgba(58, 95, 255, 0.8), 0 0 60px rgba(58, 95, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── HERO ─── */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  gap: 0;
}

.hero-upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-logo {
  width: min(340px, 62vw);
  height: auto;
  margin-bottom: 2.2rem;
  filter: drop-shadow(0 0 60px rgba(60, 100, 255, 0.6));
  animation: logo-fadein 1.2s ease-out, logo-pulse 6s ease-in-out 1.2s infinite;
}

/* ─── HERO FEATURES ─── */

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 3.5rem;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(6, 13, 46, 0.65);
  border: 1px solid rgba(90, 130, 255, 0.16);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  text-decoration: none;
  text-align: left;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-feature {
  opacity: 0;
  animation: feature-fadein 0.7s ease-out forwards;
}

.hero-features .hero-feature:nth-child(1) { animation-delay: 1.0s; }
.hero-features .hero-feature:nth-child(2) { animation-delay: 1.3s; }
.hero-features .hero-feature:nth-child(3) { animation-delay: 1.6s; }

@keyframes feature-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-feature:hover {
  border-color: rgba(90, 130, 255, 0.4);
  background: rgba(12, 25, 80, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(10, 30, 120, 0.45);
}

.hero-feature:hover::before {
  opacity: 1;
}

.hf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.8rem;
}

.hf-title {
  font-family: var(--serif);
  font-size: 1.58rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  flex: 1;
}

.hf-arrow {
  width: 22px;
  height: 22px;
  color: var(--sky);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.hero-feature:hover .hf-arrow {
  opacity: 0.7;
  transform: translateX(0);
}

.hf-content {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.hf-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  color: var(--sky);
}

.hf-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes logo-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 60px rgba(60, 100, 255, 0.6)); }
  50%       { filter: drop-shadow(0 0 90px rgba(80, 130, 255, 0.85)); }
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1.6rem;
  background: linear-gradient(135deg, #ffffff 0%, #c0d0ff 50%, #8090e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 720px;
  margin: 0 auto 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: btn-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.btn-group .btn:nth-child(2)::after { animation-delay: 0.35s; }
.btn-group .btn:nth-child(3)::after { animation-delay: 0.7s; }

@keyframes btn-shimmer {
  0%   { left: -80%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}

.btn-primary {
  background: linear-gradient(135deg, #1a3aff, #4a6fff);
  color: var(--white);
  box-shadow: 0 0 40px rgba(40, 80, 255, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(60, 110, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(90, 140, 255, 0.45);
  color: var(--silver);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(90, 140, 255, 0.85);
  color: var(--white);
  background: rgba(40, 80, 255, 0.1);
}

.scroll-hint {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint svg {
  width: 18px;
  color: var(--muted);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── SECTIONS ─── */

section {
  padding: 8rem 2rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.section-label.label-pulsing {
  animation: label-pulse 2.4s ease-in-out;
}

@keyframes label-pulse {
  0%   { color: var(--sky);  text-shadow: none; }
  20%  { color: #b0d4ff;     text-shadow: 0 0 14px rgba(91, 140, 255, 0.9); }
  40%  { color: var(--sky);  text-shadow: none; }
  60%  { color: #b0d4ff;     text-shadow: 0 0 14px rgba(91, 140, 255, 0.9); }
  80%  { color: var(--sky);  text-shadow: none; }
  100% { color: var(--sky);  text-shadow: none; }
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #7090ff, #a0b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title em.em-split {
  background: none;
}

.section-title .letter,
.hero-tagline .letter {
  opacity: 0;
  display: inline;
}

.hero-tagline.h2-reveal {
  background: none;
}

.hero-tagline .letter {
  background: linear-gradient(135deg, #ffffff 0%, #c0d0ff 50%, #8090e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title em .letter {
  background: linear-gradient(135deg, #7090ff, #a0b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.h2-reveal .letter,
.hero-tagline.h2-reveal .letter {
  animation: letter-fadein 0.14s ease-out forwards;
}

@keyframes letter-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin-bottom: 2.8rem;
}

/* ─── ABOUT ─── */

#about {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
}

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

.about-text p {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: rgba(10, 25, 80, 0.5);
  border: 1px solid rgba(90, 130, 255, 0.15);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, background 0.3s;
}

.stat-card:hover {
  border-color: rgba(90, 130, 255, 0.35);
  background: rgba(20, 40, 100, 0.5);
}

.stat-number {
  font-family: var(--sans);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #ffffff, #8090ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations-card {
  grid-column: 1 / -1;
}

.weather-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.wx-svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  color: var(--sky);
  opacity: 0;
}

.wx-svg.wx-animate {
  animation: wx-drop-in 0.8s cubic-bezier(0.34, 1.8, 0.64, 1) 1.8s both;
}

@keyframes wx-drop-in {
  0%   { opacity: 0; transform: translateY(-60px) scale(0.5); }
  60%  { opacity: 1; transform: translateY(12px)  scale(1.18); }
  78%  { transform: translateY(-6px) scale(0.94); }
  90%  { transform: translateY(4px)  scale(1.04); }
  100% { opacity: 1; transform: translateY(0)     scale(1); }
}

.weather-text { flex: 1; }

.weather-currently {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.2rem;
}

.weather-minmax {
  display: flex;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.wx-min { color: #7eb8ff; }
.wx-max { color: #ffb347; }

.weather-cond {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0.15rem 0 0.3rem;
  text-transform: capitalize;
}

.weather-quip {
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.locations-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.2rem;
}

.locations-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
}

.location-pin {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--silver);
  font-size: 1rem;
}

.location-pin svg {
  width: 24px;
  height: 24px;
  color: var(--sky);
  flex-shrink: 0;
}

.location-pin--wider {
  color: var(--muted);
}

.location-pin--wider svg {
  color: var(--muted);
}

/* ─── SERVICES ─── */

#services {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
  background: linear-gradient(180deg, transparent 0%, rgba(14, 31, 122, 0.15) 50%, transparent 100%);
}

.services-intro {
  max-width: 640px;
  margin-bottom: 4rem;
}

.services-intro p {
  color: var(--silver);
  font-size: 1.05rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  background: rgba(8, 18, 60, 0.6);
  border: 1px solid rgba(90, 130, 255, 0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  border-color: rgba(90, 130, 255, 0.3);
  background: rgba(15, 32, 90, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 30, 120, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--sky);
}

.service-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.service-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.service-link-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: arrow-nudge 1.8s ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

/* ─── WHY CHOOSE OSCURA ─── */

#process {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-text p {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.why-text p:last-child {
  margin-bottom: 0;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--silver);
  font-size: 1rem;
}

.why-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--sky);
}

/* ─── NO TICKET CALLOUT ─── */

.no-ticket {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(8, 18, 60, 0.55);
  border: 1px solid rgba(90, 130, 255, 0.18);
  border-left: 3px solid var(--sky);
  border-radius: 4px;
  padding: 2.4rem 3rem;
}

.no-ticket-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  color: var(--sky);
  opacity: 0.85;
}

.no-ticket-text {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.no-ticket-sub {
  color: var(--silver);
  font-size: 0.98rem;
  margin: 0;
}

.no-ai {
  border-left-color: #a78bfa;
  color: #a78bfa;
}

.no-ai .no-ticket-text {
  color: var(--white);
}

/* ─── CONTACT ─── */

#contact {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-inner .section-title {
  margin-bottom: 1.2rem;
}

.contact-inner p {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.4rem;
  margin-bottom: 1.8rem;
  width: min(900px, calc(100vw - 4rem));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.contact-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(91, 140, 255, 0.1);
  border: 1px solid rgba(91, 140, 255, 0.22);
  border-radius: 2px;
  padding: 0.35rem 0.75rem;
}

.contact-email {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 140, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.contact-email:hover {
  color: var(--white);
  border-color: rgba(90, 140, 255, 0.8);
  animation: email-bounce 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes email-bounce {
  0%,100% { transform: translateY(0); }
  18%      { transform: translateY(-10px); }
  36%      { transform: translateY(0); }
  54%      { transform: translateY(-5px); }
  72%      { transform: translateY(0); }
  88%      { transform: translateY(-2px); }
}

.contact-phones {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  padding-top: 5rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(8, 18, 60, 0.6);
  border: 1px solid rgba(90, 130, 255, 0.15);
  border-radius: 4px;
  padding: 1.6rem 2.2rem;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
}

.contact-phone:hover {
  border-color: rgba(90, 130, 255, 0.4);
  background: rgba(15, 32, 90, 0.7);
  box-shadow: 0 12px 40px rgba(10, 30, 120, 0.35);
}

.cp-hover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
  background: rgba(6, 13, 46, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 8px;
  padding: 1.1rem 1.6rem;
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.cp-hover svg {
  width: 52px;
  height: 52px;
}

.cp-hover span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ade80;
  white-space: nowrap;
}

.contact-phone:hover .cp-hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.contact-phone svg {
  width: 44px;
  height: 44px;
  color: var(--sky);
  flex-shrink: 0;
}

.phone-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.phone-number {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ─── GET SUPPORT ─── */

#support {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
  background: linear-gradient(180deg, transparent 0%, rgba(14, 31, 122, 0.12) 50%, transparent 100%);
}

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

.support-text p {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.support-text p:last-child { margin-bottom: 0; }

.support-email-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  padding: 1.1rem 1.4rem;
  background: rgba(6, 13, 46, 0.6);
  border: 1px solid rgba(90, 130, 255, 0.2);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}

.support-email-box:hover {
  background: rgba(14, 31, 122, 0.45);
  border-color: rgba(90, 130, 255, 0.45);
}

.support-email-box svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--sky);
}

.support-email-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.2rem;
}

.support-email-addr {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.support-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  background: rgba(8, 18, 60, 0.6);
  border: 1px solid rgba(90, 130, 255, 0.18);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.support-icon {
  width: 72px;
  height: 72px;
  color: var(--sky);
  opacity: 0.9;
}

.support-cta h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}

.support-cta p {
  color: var(--silver);
  font-size: 0.95rem;
  max-width: 320px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #1a3aff, #4a6fff);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(40, 80, 255, 0.4);
  transition: box-shadow 0.3s, transform 0.3s;
}

.btn-download:hover {
  box-shadow: 0 0 60px rgba(60, 110, 255, 0.65);
  transform: translateY(-2px);
}

.btn-download svg {
  width: 18px;
  height: 18px;
}

.support-note {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

/* ─── FOOTER ─── */

footer {
  border-top: 1px solid rgba(90, 130, 255, 0.1);
  background: rgba(3, 7, 26, 0.7);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: 'mi ritrovai per una selva oscura';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  width: 100%;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 7.8vw, 15rem);
  white-space: nowrap;
  color: rgba(180, 200, 255, 0.07);
  pointer-events: none;
  letter-spacing: 0.02em;
  z-index: 0;
  animation: dante-shimmer 9s ease-in-out infinite;
}

@keyframes dante-shimmer {
  0%, 60%, 100% { color: rgba(180, 200, 255, 0.07); }
  72%           { color: rgba(200, 220, 255, 0.22); }
  84%           { color: rgba(180, 200, 255, 0.07); }
  90%           { color: rgba(200, 220, 255, 0.14); }
  96%           { color: rgba(180, 200, 255, 0.07); }
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col address {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.9;
  font-style: normal;
}

.footer-col a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-reg {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(90, 130, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

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

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 2rem;
  }

  .footer-bottom {
    padding: 1.2rem 2rem;
  }
}

@media (max-width: 768px) {
  /* ── Mobile nav: expand the nav element itself ── */
  .nav-toggle {
    display: flex;
  }

  /* Links hidden in the collapsed bar */
  .nav-links {
    display: none;
  }

  /* When open, nav becomes a full-screen panel */
  nav.open {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100svh; /* svh = small viewport height, accounts for browser chrome */
    height: 100vh;  /* fallback */
    background: #03071a;
    border-bottom: none;
    padding: 0 2rem;
    gap: 0;
  }

  nav.open .nav-brand {
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    font-size: 1.3rem;
  }

  nav.open .nav-toggle {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
  }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    list-style: none;
    animation: menu-in 0.28s ease forwards;
  }

  nav.open .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(90, 130, 255, 0.08);
  }

  nav.open .nav-links li:first-child {
    border-top: 1px solid rgba(90, 130, 255, 0.08);
  }

  nav.open .nav-links a {
    display: block;
    padding: 1.1rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    color: var(--silver);
  }

  nav.open .nav-links a:hover {
    color: var(--white);
    background: rgba(90, 130, 255, 0.06);
  }

  nav.open .nav-cta {
    display: inline-block;
    margin: 1.8rem auto 0;
    padding: 0.8rem 2.4rem !important;
    font-size: 0.82rem !important;
    border-radius: 2px;
  }

  /* Wrap the CTA in its own li so the border/padding rules above don't apply */
  nav.open .nav-links li:has(.nav-cta) {
    border: none;
    padding: 0;
  }

  @keyframes menu-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── Layout ── */
  section { padding: 5rem 1.5rem; }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    flex: none;
    width: 100%;
  }

  .no-ticket {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .contact-phones {
    flex-direction: column;
    align-items: center;
  }

  .contact-phone {
    width: 100%;
    max-width: 360px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 1.2rem 1.5rem;
  }
}
