/* =========================================================
   SPAZIO ALZAIA MILANO — Foglio di stile principale
   Studio Fotografico Daylight Milano
   ========================================================= */

/* Importazione Google Fonts: Playfair Display per titoli, Inter per testo */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
   VARIABILI CSS GLOBALI
   ========================================================= */
:root {
  --color-primary:     #0d0d0d;   /* nero fotografico */
  --color-secondary:   #c8a96e;   /* oro champagne */
  --color-bg:          #f8f5f0;   /* bianco caldo */
  --color-text:        #1a1a1a;
  --color-text-muted:  #666666;
  --color-white:       #ffffff;

  --font-title:  'Playfair Display', serif;
  --font-body:   'Inter', sans-serif;

  --transition-base: 0.4s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --radius-card: 2px;
}

/* =========================================================
   RESET CSS MODERNO
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* =========================================================
   NAVIGAZIONE
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-base), padding var(--transition-base);
}

/* Nav con sfondo quando si scrolla */
.site-nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  padding: 12px 40px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger menu mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

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

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* parallax leggero via JS */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

/* Logo hero */
.hero-logo {
  height: 100px;
  width: auto;
  margin: 0 auto 32px;
  filter: brightness(1.1);
}

/* Decorazione rullino fotografico */
.filmstrip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
  max-width: 700px;
}

.filmstrip-holes {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filmstrip-hole {
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-secondary);
  border-radius: 2px;
  opacity: 0.9;
}

.filmstrip-line {
  flex: 1;
  height: 1px;
  background: var(--color-secondary);
  opacity: 0.6;
  min-width: 40px;
}

/* Contenuto centrale del filmstrip */
.hero-text-block {
  padding: 28px 0;
  position: relative;
}

/* Barre del rullino sopra e sotto */
.filmstrip-bar {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.filmstrip-bar .bar-line {
  height: 2px;
  flex: 1;
  background: var(--color-secondary);
  opacity: 0.7;
}

.filmstrip-bar .bar-holes {
  display: flex;
  gap: 6px;
  padding: 0 12px;
}

.filmstrip-bar .bar-hole {
  width: 12px;
  height: 8px;
  border: 1.5px solid var(--color-secondary);
  border-radius: 2px;
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--color-white);
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.8vw, 0.95rem);
  color: var(--color-secondary);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border:4px color red !important;
  
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-primary);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

/* Freccia scroll verso il basso */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--color-secondary);
  border-bottom: 1.5px solid var(--color-secondary);
  transform: rotate(45deg);
  margin: 0 auto;
}

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

/* =========================================================
   SEZIONE TITOLI — stile comune
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title.light {
  color: var(--color-white);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
  margin: 0 auto;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   SEZIONE 2 — LO STUDIO
   ========================================================= */
.studio-section {
  padding: 100px 40px;
  background: var(--color-bg);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.studio-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 300;
}

.studio-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 20px;
  background: var(--color-white);
  border-left: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base);
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.4;
}

.feature-text strong {
  font-weight: 600;
}

/* =========================================================
   SEZIONE 3 — GALLERY
   ========================================================= */
.gallery-section {
  background: var(--color-primary);
  padding: 100px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.gallery-item-overlay .zoom-icon {
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-base);
  color: var(--color-white);
}

/* SVG icona lente */
.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(13,13,13,0.45);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition-base);
  font-weight: 300;
  background: rgba(0,0,0,0.5);
}

.lightbox-close:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-base);
  z-index: 10000;
}

.lightbox-btn:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* =========================================================
   SEZIONE 4 — PRENOTAZIONE
   ========================================================= */
.booking-section {
  padding: 100px 40px;
  background: var(--color-bg);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* --- Calendario --- */
.calendar-wrap {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.calendar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-base);
  cursor: pointer;
  background: none;
}

.cal-nav-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 0;
  font-weight: 600;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  min-height: 40px;
}

.cal-day:empty {
  cursor: default;
}

.cal-day.free {
  background: var(--color-white);
  border-color: rgba(200, 169, 110, 0.25);
  color: var(--color-text);
}

.cal-day.free:hover {
  border-color: var(--color-secondary);
  background: rgba(200, 169, 110, 0.08);
}

.cal-day.occupied {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  cursor: not-allowed;
}

.cal-day.occupied::after {
  content: 'Occupato';
  font-size: 0.55rem;
  letter-spacing: 0.5px;
  display: block;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 2px;
}

.cal-day.today {
  border-color: var(--color-secondary);
  border-width: 2px;
  font-weight: 700;
}

.cal-day.past {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-day.past:hover {
  border-color: transparent;
  background: transparent;
}

/* Legenda calendario */
.calendar-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 1px;
}

.legend-dot.free { background: var(--color-white); border: 1.5px solid var(--color-secondary); }
.legend-dot.occupied { background: var(--color-primary); }
.legend-dot.today { background: var(--color-white); border: 2px solid var(--color-secondary); }

.calendar-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
}

/* --- Form prenotazione --- */
.booking-form-card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: 40px;
  border-top: 3px solid var(--color-secondary);
}

.form-heading {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 28px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd9;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  border-radius: var(--radius-card);
  appearance: none;
  -webkit-appearance: none;
}

/* Freccia personalizzata per select */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Gruppo orario su 2 colonne */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Campo honeypot nascosto (anti-spam) */
.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Bottone invio */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform 0.2s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
  background: var(--color-secondary);
}

.btn-submit:active {
  transform: scale(0.99);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Spinner caricamento */
.btn-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Messaggio feedback form */
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-card);
  display: none;
  line-height: 1.5;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #4caf50;
  display: block;
}

.form-message.error {
  background: #fce4ec;
  color: #c62828;
  border-left: 3px solid #f44336;
  display: block;
}

/* =========================================================
   CALENDARIO SETTIMANALE
   ========================================================= */

/* Barra di navigazione settimana */
.week-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}

.week-nav-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.week-range-label {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.btn-oggi {
  padding: 5px 12px;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-oggi:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Contenitore con scroll orizzontale touch */
.week-calendar-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Griglia: 60px per le etichette ore + 7 colonne uguali per i giorni */
.week-grid {
  display: grid;
  grid-template-columns: 60px repeat(7, 1fr);
  min-width: 520px; /* forza scroll orizzontale su mobile */
}

/* Cella angolo superiore sinistra (vuota) */
.time-label-header {
  background: #f8f5f0;
  border-bottom: 2px solid #e0e0e0;
}

/* Intestazioni colonne giorno */
.day-header {
  padding: 8px 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  background: #f8f5f0;
  border-bottom: 2px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}

/* Intestazione del giorno odierno evidenziata */
.today-header {
  color: #c8a96e;
  border-bottom: 2px solid #c8a96e;
}

/* Etichette orarie a sinistra */
.time-label {
  font-size: 0.75rem;
  color: #999;
  padding: 4px 8px 4px 4px;
  text-align: right;
  border-right: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fafafa;
}

/* Cella oraria base */
.time-slot {
  height: 48px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-left: none;
  cursor: pointer;
  transition: background 0.2s;
}

/* Cella occupata */
.time-slot.occupied {
  background: #0d0d0d;
  color: white;
  font-size: 0.7rem;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cella libera: hover dorato */
.time-slot.available:hover {
  background: rgba(200, 169, 110, 0.15);
}

/* Cella data passata */
.time-slot.past {
  background: #f5f5f5;
  cursor: default;
  opacity: 0.45;
}

/* Riga di confine (20:00) — non prenotabile */
.time-slot.boundary {
  height: 24px;
  background: #f8f5f0;
  cursor: default;
  border-top: 1px solid #e0e0e0;
}

/* Nota orari fuori fascia sotto il calendario */
.calendar-offhours-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #666666;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.calendar-offhours-note a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* =========================================================
   SEZIONE 5 — DOVE SIAMO
   ========================================================= */
.location-section {
  background: var(--color-primary);
  padding: 100px 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.location-info .section-title {
  color: var(--color-white);
  text-align: left;
}

.location-info .section-divider {
  margin-left: 0;
}

.location-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.location-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.location-item-text {
  padding-top: 0px;
}

.location-item-text .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

.location-item-text .value {
  color: var(--color-white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-item-text .value a {
  color: var(--color-white);
  transition: color var(--transition-base);
}

.location-item-text .value a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* Google Maps iframe */
.map-container {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-primary);
  border-top: 1px solid var(--color-secondary);
  padding: 60px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-title);
  color: var(--color-white);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.87rem;
  transition: color var(--transition-base);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-secondary);
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-secondary);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 700px;
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 10px 28px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-btn-accept:hover {
  background: #d4b878;
}

.cookie-btn-more {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  text-transform: uppercase;
  cursor: pointer;
  background: none;
}

.cookie-btn-more:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* =========================================================
   ANIMAZIONI SCROLL
   ========================================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay animazioni sequenziali */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =========================================================
   ANIMAZIONE HERO (caricamento pagina)
   ========================================================= */
.hero-animate {
  animation: heroFadeUp 1s ease forwards;
  opacity: 0;
}

.hero-animate.delay-logo { animation-delay: 0.2s; }
.hero-animate.delay-bar  { animation-delay: 0.5s; }
.hero-animate.delay-title { animation-delay: 0.6s; }
.hero-animate.delay-sub  { animation-delay: 0.8s; }
.hero-animate.delay-cta  { animation-delay: 1.0s;margin-top: 20px; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-gold { color: var(--color-secondary); }
.text-center { text-align: center; }

/* =========================================================
   MEDIA QUERIES — TABLET (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .studio-grid,
  .booking-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-prev { left: -55px; }
  .lightbox-next { right: -55px; }

  .map-container {
    height: 350px;
  }
}

/* =========================================================
   MEDIA QUERIES — TABLET (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  .site-nav {
    padding: 16px 20px;
  }

  .site-nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,13,13,0.99);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero {
    height: 70vh;
  }

  .hero-logo {
    height: 70px;
  }

  .studio-section,
  .gallery-section,
  .booking-section,
  .location-section {
    padding: 70px 20px;
  }

  .booking-form-card {
    padding: 28px 20px;
  }

  .calendar-wrap {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-btn {
    width: 40px;
    height: 40px;
  }

  /* Calendario settimanale su mobile */
  .week-grid {
    min-width: 560px; /* 3+ giorni visibili prima dello scroll */
  }

  .time-slot {
    height: 36px;
  }

  .time-slot.boundary {
    height: 18px;
  }

  .day-header {
    font-size: 0.7rem;
    padding: 6px 2px;
  }

  .week-range-label {
    font-size: 0.85rem;
  }

  .week-nav-center {
    gap: 6px;
  }
}

/* =========================================================
   MEDIA QUERIES — MOBILE (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-subtitle {
    letter-spacing: 2px;
  }

  .filmstrip-bar {
    max-width: 100%;
  }

  .section-title {
    letter-spacing: 2px;
  }

  .cal-day {
    font-size: 0.72rem;
    min-height: 32px;
  }

  .cal-day.occupied::after {
    display: none;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
