/* ==========================================================
   Atelier Aura — Salone Bellezza Boutique Lucca
   Portfolio demo — Future Is Now
   Palette: rosa cipria, oro rosato, nero soft, crema
   Font: Cormorant Garamond (titoli) + Lato (corpo)
   ========================================================== */

/* --- TOKENS BRAND ATELIER AURA --- */
:root {
  --rose:       #F4C2C2;
  --rose-dark:  #E8A0A0;
  --gold:       #B76E79;
  --gold-dark:  #9A5A64;
  --gold-light: #D4A0A8;
  --noir:       #1A1A1A;
  --noir-soft:  #2D2020;
  --cream:      #FAF7F2;
  --cream-dark: #F2EDE4;
  --white:      #FFFFFF;
  --text-body:  #3D2B2B;
  --text-muted: #7A6060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --radius-pill: 9999px;
  --radius-card: 12px;
  --radius-img:  8px;

  --shadow-soft: 0 4px 20px rgba(183, 110, 121, 0.10);
  --shadow-card: 0 8px 32px rgba(26, 26, 26, 0.08);
  --shadow-hover: 0 16px 48px rgba(183, 110, 121, 0.18);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1160px;

  --section-pad: 96px 0;
  --section-pad-sm: 64px 0;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--noir); }
.section-rose   { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--noir);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }

em { font-style: italic; color: var(--gold); }

.text-light    { color: var(--white); }
.text-light-muted { color: rgba(255,255,255,0.80); }

.label-small {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label-small--light { color: rgba(255,255,255,0.75); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 110, 121, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.btn-link:hover { color: var(--gold-dark); }

.btn-full { width: 100%; }

/* --- NAV --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 24px;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  box-shadow: 0 2px 20px rgba(26,26,26,0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--noir); }
.logo-text em { color: var(--gold); font-style: italic; }
.logo-text--footer { font-size: 1.8rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.navbar.scrolled .nav-menu a { color: var(--text-body); }
.nav-menu a:hover,
.navbar.scrolled .nav-menu a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(183,110,121,0.35);
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--noir); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 10, 0.55) 0%,
    rgba(26, 10, 10, 0.45) 50%,
    rgba(26, 10, 10, 0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-content h1 em { color: var(--rose); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.75;
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header--light h2 { color: var(--white); }
.section-header--light .label-small { color: rgba(255,255,255,0.6); }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.75;
}

/* --- CHI SIAMO --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col__text h2 { margin-bottom: 24px; }
.two-col__text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.two-col__text p strong { color: var(--text-body); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.badge--rose { background: var(--rose); color: var(--gold-dark); }

.rounded-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}
.two-col__image { position: relative; }
.image-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  padding: 16px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

/* --- SERVIZI --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(183,110,121,0.12);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(183,110,121,0.3);
}
.service-card.featured {
  background: linear-gradient(135deg, #FFF0F2 0%, #FAF0F2 100%);
  border-color: var(--rose-dark);
}
.service-badge-popular {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.service-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(183,110,121,0.12);
}
.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

/* --- GALLERIA --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item--tall img { height: 100%; min-height: 452px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,10,10,0.7));
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  padding: 24px 14px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.team-photo-wrap {
  overflow: hidden;
  height: 280px;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

.team-info { padding: 28px; }
.team-info h3 { font-size: 1.35rem; margin-bottom: 4px; }
.team-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; }

/* --- RECENSIONI --- */
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}
.star {
  color: #F4B942;
  font-size: 1.2rem;
}
.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 400;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid rgba(183,110,121,0.10);
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose);
  line-height: 1;
  position: absolute;
  top: 8px; left: 22px;
  opacity: 0.5;
  pointer-events: none;
}
.review-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.review-card.featured-review {
  background: linear-gradient(135deg, var(--rose) 0%, #EEB0B0 100%);
  border-color: var(--rose-dark);
}
.review-stars {
  color: #F4B942;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.review-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
}
.review-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- PRENOTAZIONE --- */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.booking-intro h2 { color: var(--white); margin-bottom: 20px; }
.booking-intro .label-small { color: rgba(255,255,255,0.7); }
.booking-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.booking-perks li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(26,26,26,0.18);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--cream);
  border: 1.5px solid rgba(183,110,121,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A0A0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,110,121,0.12);
}
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --- CONTATTI --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-block { margin-bottom: 32px; }
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.contact-block a { color: var(--text-body); font-weight: 500; }
.contact-block a:hover { color: var(--gold); }

.orari-table { border-collapse: collapse; width: 100%; }
.orari-table td {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0;
  vertical-align: top;
}
.orari-table td:first-child { font-weight: 600; color: var(--text-body); padding-right: 24px; white-space: nowrap; }

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.social-link svg { flex-shrink: 0; color: var(--gold); }

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { display: block; }

/* --- FOOTER --- */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a, .footer-links-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--rose); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--rose); }

/* --- DEMO BADGE --- */
.demo-badge {
  background: var(--noir-soft);
  border-top: 1px solid rgba(183,110,121,0.25);
  text-align: center;
  padding: 16px 24px;
}
.demo-badge p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}
.demo-badge a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.demo-badge a:hover { color: var(--rose); }

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,10,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(26,10,10,0.3);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.modal-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.modal p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 12px; line-height: 1.7; }
.modal-note {
  font-size: 0.78rem;
  color: #B0A0A0;
  margin-bottom: 28px;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 0; }

  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall img { min-height: 300px; }
  .gallery-item img { height: 200px; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; --section-pad-sm: 40px 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100svh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 28px;
    box-shadow: -8px 0 32px rgba(26,26,26,0.12);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: var(--text-body); font-size: 1rem; }
  .nav-menu a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
  }

  /* Hero */
  .hero-content h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Chi siamo */
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col__image { order: -1; }
  .rounded-img { height: 320px; }
  .image-tag { right: 8px; bottom: -12px; }

  /* Servizi */
  .services-grid { grid-template-columns: 1fr; }

  /* Galleria */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item img { height: 180px; }
  .gallery-item--tall img { min-height: 180px; height: 180px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-photo-wrap { height: 240px; }

  /* Recensioni */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Prenotazione */
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .booking-intro { text-align: center; }
  .booking-perks { align-items: center; }
  .booking-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Contatti */
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }

  /* Modal */
  .modal { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }
  .hero-content h1 { font-size: 2.2rem; }
  .booking-form { padding: 24px 16px; }
}
