/* ============================================================
   VILLA ELOISE — Sito Istituzionale 2026
   Design System · Tutti i componenti
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --bg:           #F6F3EC;
  --bg-alt:       #E8DBCA;
  --white:        #FFFFFF;
  --text:         #222222;
  --text-muted:   #6E645A;
  --gold:         #C5A75F;
  --gold-light:   #D8BE84;
  --gold-dark:    #A2854A;
  --emerald:      #22453F;
  --emerald-bg:   rgba(34, 69, 63, 0.07);
  --rose:         #DBB0A3;
  --rose-dark:    #C8927F;
  --border:       rgba(34, 34, 34, 0.10);
  --error:        #B03A2E;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1160px;
  --gutter:    clamp(1.5rem, 5vw, 4rem);
}

/* ============================================================
   RESET
   ============================================================ */

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
ul, ol { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--text); }
.section--white { background: var(--white); }

.label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.label--light { color: var(--gold-light); }

.divider {
  width: 36px;
  height: 1px;
  background: var(--rose);
  margin: 2rem 0;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%     { transform: scaleY(0); transform-origin: top; }
  49.99% { transform: scaleY(1); transform-origin: top; }
  50%    { transform: scaleY(1); transform-origin: bottom; }
  100%   { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes menuOpen {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   NAVIGATION — full site nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--gutter);
  transition: background 0.45s, box-shadow 0.45s, backdrop-filter 0.45s;
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}

/* Logo */
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.25s;
}
.nav__logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav__logo:hover { opacity: 0.7; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  list-style: none;
}

.nav__link {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav__link:hover          { color: var(--gold); }
.nav__link.active         { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* Right side actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* CTA button */
.nav__cta {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav__cta:hover { color: var(--gold); }

/* Hamburger button (mobile only) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 2px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile fullscreen menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__mobile-link {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-link em    { font-style: italic; color: var(--gold); }

.nav__mobile-cta {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  margin-top: 1rem;
  transition: color 0.25s;
}
.nav__mobile-cta:hover { color: var(--gold); }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.25s;
}
.nav__mobile-close:hover { color: var(--gold); }

/* Simple nav (Grand Opening) — overrides when .nav--simple is present */
.nav--simple .nav__links,
.nav--simple .nav__hamburger { display: none; }
.nav--simple .nav__cta { display: inline-block; }

/* Static logo (no homepage link) */
.nav__logo--static { cursor: default; }
.nav__logo--static:hover { opacity: 1; }
.footer__logo--static { cursor: default; }
.footer__logo--static:hover { opacity: 1; }

/* ============================================================
   HERO — main home hero (full viewport)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../img/hero.jpg') center 30% / cover no-repeat;
  background-color: #D9C8B0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 76% at 50% 42%,
      rgba(246,243,236,0.97) 0%,
      rgba(246,243,236,0.86) 32%,
      rgba(246,243,236,0.50) 62%,
      rgba(246,243,236,0.12) 100%
    );
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246,243,236,0.60) 0%,
    rgba(246,243,236,0.45) 30%,
    rgba(246,243,236,0.42) 65%,
    rgba(246,243,236,0.86) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem var(--gutter);
  max-width: 860px;
}

.hero__logo {
  display: block;
  width: auto;
  max-width: clamp(120px, 17vw, 180px);
  height: auto;
  margin: 0 auto 1.75rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.1s var(--ease) 0.15s forwards;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.1s var(--ease) 0.62s forwards;
}

.hero__text {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) 0.75s forwards;
}

.hero__date {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) 0.72s forwards;
}

.hero__free {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -1.85rem;
  margin-bottom: 2.75rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) 0.95s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s var(--ease) 0.95s forwards;
  display: inline-flex;
}

.hero__meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}

.hero__meta-item {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.6s forwards;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.4s ease-in-out 1.8s infinite;
}

/* ============================================================
   PAGE HERO — inner pages (smaller, editorial)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: calc(clamp(4rem, 10vw, 8rem) + 80px) var(--gutter) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--bg-alt);
}

/* Background image variant */
.page-hero--img {
  background-size: cover;
  background-position: center;
}

.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(246,243,236,0.92) 0%,
    rgba(246,243,236,0.72) 55%,
    rgba(246,243,236,0.40) 100%
  );
  pointer-events: none;
}

/* Dark variant */
.page-hero--dark {
  background: var(--text);
}
.page-hero--dark .page-hero__eyebrow { color: var(--gold-light); }
.page-hero--dark .page-hero__title   { color: rgba(246,243,236,0.95); }
.page-hero--dark .page-hero__title em { color: var(--gold-light); }
.page-hero--dark .page-hero__subtitle { color: rgba(246,243,236,0.55); }

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 1.1s var(--ease) 0.35s forwards;
}
.page-hero__title em { color: var(--gold); font-style: italic; }

.page-hero__subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 560px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.95s var(--ease) 0.5s forwards;
}

.page-hero__text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 540px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.page-hero__divider {
  width: 36px;
  height: 1px;
  background: var(--rose);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.img-placeholder {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #DECFB8 50%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  text-align: center;
  padding: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn--primary {
  color: var(--text);
  border: 1px solid rgba(34,34,34,0.4);
  padding: 1rem 2.5rem;
}
.btn--primary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn--outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--ghost {
  color: rgba(246,243,236,0.85);
  border: 1px solid rgba(246,243,236,0.3);
  padding: 1rem 2.5rem;
}
.btn--ghost:hover {
  background: rgba(246,243,236,0.1);
  border-color: rgba(246,243,236,0.6);
  color: var(--bg);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 1.3rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn--submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn--submit:hover::before    { transform: translateX(0); }
.btn--submit:hover            { letter-spacing: 0.28em; }
.btn--submit .btn__text,
.btn--submit .btn__arrow      { position: relative; z-index: 1; }
.btn--submit:disabled         { opacity: 0.7; cursor: not-allowed; }
.btn--submit:disabled::before { display: none; }

.btn__arrow { display: inline-block; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   STORIA — sezione narrativa standard
   ============================================================ */

.storia { background: var(--bg); }

.storia__grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.storia__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  position: sticky;
  top: 8rem;
}
.storia__title em { color: var(--gold); font-style: italic; }

.storia__text {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.storia__text strong { color: var(--text); font-weight: 400; }

.storia__divider {
  width: 36px;
  height: 1px;
  background: var(--rose);
  margin: 2rem 0;
}

.storia__detail {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   EDITORIAL SECTION — testo centrato largo
   ============================================================ */

.editorial {
  text-align: center;
}

.editorial__label { margin-bottom: 1rem; }

.editorial__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 2rem;
}
.editorial__title em { color: var(--gold); font-style: italic; }

.editorial__lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.editorial__text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

/* ============================================================
   SPLIT — immagine + testo affiancati
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__visual {
  position: relative;
  overflow: hidden;
}

.split__visual img,
.split__visual .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split__visual:hover img { transform: scale(1.04); }

.split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(246,243,236,0.15) 100%);
  pointer-events: none;
}

.split--reverse .split__visual::after {
  background: linear-gradient(to left, transparent 70%, rgba(246,243,236,0.15) 100%);
}

.split__content {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 7vw, 6rem);
  background: var(--bg);
}

.split--alt .split__content { background: var(--bg-alt); }
.split--dark .split__content { background: var(--text); }

.split__inner { max-width: 520px; }

.split__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.split__title em { color: var(--gold); font-style: italic; }

.split--dark .split__title { color: rgba(246,243,236,0.95); }

.split__text {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.split--dark .split__text { color: rgba(246,243,236,0.55); }

.split__quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--emerald);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 2rem;
}

/* ============================================================
   THREE PILLARS — card griglia x3
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.pillar {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-top: 2px solid var(--gold);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(34,34,34,0.12);
}

.pillar__num {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pillar__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillar__text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pillar__link {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.pillar__link:hover { border-color: var(--gold); }

/* ============================================================
   FEATURE CARDS — griglia highlights
   ============================================================ */

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.feature-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px -10px rgba(197,167,95,0.15);
}

.feature-card__icon {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.feature-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.feature-card__text {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   HIGHLIGHTS LIST — punti chiave bullet elegante
   ============================================================ */

.highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.highlights__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.highlights__item:last-child { border-bottom: none; }

.highlights__num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 1.5rem;
}

.highlights__body {
  flex: 1;
}

.highlights__title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.highlights__desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   EVENT TYPES GRID
   ============================================================ */

.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.event-type {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.event-type:hover { background: var(--bg-alt); }

.event-type__label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.event-type__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   EXPERIENCE TIMELINE — percorso giornata
   ============================================================ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline__step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline__step:last-child { border-bottom: none; }

.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.2rem;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline__time {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

.timeline__body { padding-bottom: 0.5rem; }

.timeline__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   CTA BAND — sezione piena con CTA
   ============================================================ */

.cta-band {
  background: var(--bg-alt);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}

.cta-band--dark {
  background: var(--text);
}

.cta-band--emerald {
  background: var(--emerald);
}

.cta-band__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cta-band--dark .cta-band__label,
.cta-band--emerald .cta-band__label { color: var(--gold-light); }

.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.cta-band__title em { color: var(--gold); font-style: italic; }
.cta-band--dark .cta-band__title { color: rgba(246,243,236,0.95); }
.cta-band--dark .cta-band__title em { color: var(--gold-light); }
.cta-band--emerald .cta-band__title { color: rgba(246,243,236,0.95); }

.cta-band__text {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.cta-band--dark .cta-band__text { color: rgba(246,243,236,0.5); }
.cta-band--emerald .cta-band__text { color: rgba(246,243,236,0.65); }

.cta-band__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TERRAZZA SECTION — sezione panoramica scenografica
   ============================================================ */

.terrazza {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../img/terrazza.jpg') center 30% / cover no-repeat;
  background-color: #D2C0A6;
}

.terrazza::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(246,243,236,0.94) 0%,
    rgba(246,243,236,0.75) 45%,
    rgba(246,243,236,0.20) 100%
  );
}

.terrazza--right::before {
  background: linear-gradient(
    270deg,
    rgba(246,243,236,0.94) 0%,
    rgba(246,243,236,0.75) 45%,
    rgba(246,243,236,0.20) 100%
  );
}

.terrazza__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  max-width: 580px;
}

.terrazza--right .terrazza__content {
  margin-left: auto;
}

.terrazza__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.terrazza__title em { color: var(--gold); font-style: italic; }

.terrazza__text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   SPACES GRID — griglia degli spazi
   ============================================================ */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.space-item {
  display: flex;
  flex-direction: column;
}

.space-item__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.space-item__visual img,
.space-item__visual .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.space-item:hover .space-item__visual img { transform: scale(1.06); }

.space-item__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.space-item__desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.galleria {
  overflow: hidden;
}

.galleria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 60vh;
  min-height: 420px;
}

.galleria__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galleria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease);
  display: block;
}

.galleria__item--vintage img { object-position: center top; }
.galleria__item--terrazza img { object-position: center 30%; }
.galleria__item--affreschi img { object-position: center center; }

.galleria__item:hover img { transform: scale(1.06); }

.galleria__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(34,34,34,0.65) 0%, transparent 100%);
  color: rgba(246,243,236,0.88);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.galleria__item:hover .galleria__caption { opacity: 1; transform: translateY(0); }
.galleria__item + .galleria__item { border-left: 1px solid rgba(246,243,236,0.15); }

/* ============================================================
   INTRO EVENTO (Grand Opening)
   ============================================================ */

.intro-evento { background: var(--bg-alt); text-align: center; }
.intro-evento__header { margin-bottom: 2.5rem; }
.intro-evento__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
}
.intro-evento__title em { color: var(--gold); font-style: italic; }

.intro-evento__lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 4.5rem;
}

.intro-evento__pilastri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
  text-align: left;
}

.intro-evento__pilastro {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-top: 2px solid var(--gold);
  position: relative;
}

.intro-evento__pilastro-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-evento__pilastro-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.intro-evento__pilastro-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.intro-evento__nota {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   PROGRAMMA (Grand Opening)
   ============================================================ */

.programma { background: var(--bg-alt); }
.programma__header { text-align: center; margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.programma__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
}
.programma__title em { color: var(--gold); font-style: italic; }

.programma__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.programma__day-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.programma__day-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}

.programma__day-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}

.programma__month {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.turno { padding: 2rem; margin-bottom: 1.5rem; }
.turno--day { background: var(--white); border-left: 3px solid var(--gold); }
.turno--exclusive { background: var(--emerald); border-left: 3px solid var(--gold-light); }
.turno--evening { background: var(--white); border-left: 3px solid var(--emerald); }

.turno__badge {
  font-size: 0.575rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.turno__badge--excl { color: var(--gold-light); }

.turno__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.turno--exclusive .turno__title { color: #F6F3EC; }

.turno__orario {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.turno--exclusive .turno__orario { color: var(--gold-light); }

.turno__desc { font-size: 0.84rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 1rem; }
.turno--exclusive .turno__desc { color: rgba(216,190,132,0.78); }

.turno__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.turno__list li {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.turno--exclusive .turno__list li { color: rgba(216,190,132,0.85); }
.turno__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}
.turno--exclusive .turno__list li::before { background: var(--gold-light); }
.turno__list li strong { color: var(--text); font-weight: 400; }
.turno--exclusive .turno__list li strong { color: #F6F3EC; }
.turno--exclusive .turno__list li strong em { font-weight: 600; font-style: italic; color: #F6F3EC; }

.programma__nota {
  margin-top: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--emerald-bg);
  border-left: 3px solid var(--emerald);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--emerald);
}

/* ============================================================
   SPLIT SECTIONS — Nicolai / Bombelaya (Grand Opening)
   ============================================================ */

.nicolai { background: var(--bg); border-top: 1px solid var(--border); }
.nicolai__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }

.nicolai__visual { position: relative; overflow: hidden; }
.nicolai__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(246,243,236,0.25) 100%);
  pointer-events: none;
}
.nicolai__figure { position: absolute; inset: 0; }
.nicolai__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.nicolai__visual:hover .nicolai__figure img { transform: scale(1.04); }

.nicolai__content { display: flex; align-items: center; padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 7vw, 6rem); background: var(--bg); }
.nicolai__inner { max-width: 540px; }
.nicolai__title { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.1; color: var(--text); margin-bottom: 1.75rem; }
.nicolai__title em { color: var(--gold); font-style: italic; }
.nicolai__subtitle { font-family: var(--serif); font-size: 1.08rem; font-weight: 300; line-height: 1.85; color: var(--text); margin-bottom: 1.5rem; }
.nicolai__text { font-size: 0.9rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.nicolai__punti { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.nicolai__punto { display: flex; align-items: flex-start; gap: 1.25rem; }
.nicolai__punto-num { font-family: var(--serif); font-size: 0.75rem; font-weight: 300; color: var(--gold); letter-spacing: 0.05em; margin-top: 0.1rem; flex-shrink: 0; width: 1.5rem; }
.nicolai__punto-body { display: flex; flex-direction: column; gap: 0.2rem; }
.nicolai__punto-title { font-family: var(--sans); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; color: var(--text); }
.nicolai__punto-desc { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.nicolai__chiusura { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 300; line-height: 1.75; color: var(--emerald); border-left: 2px solid var(--gold); padding-left: 1.25rem; margin: 0; }

.bombelaya { background: var(--text); }
.bombelaya__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.bombelaya__content { display: flex; align-items: center; padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 7vw, 6rem); background: var(--text); position: relative; }
.bombelaya__content::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40%; height: 1px; background: linear-gradient(to left, var(--gold), transparent); pointer-events: none; }
.bombelaya__inner { max-width: 540px; }
.bombelaya__label { color: var(--gold-light); }
.bombelaya__title { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.1; color: rgba(246,243,236,0.95); margin-bottom: 1.75rem; }
.bombelaya__title em { color: var(--gold-light); font-style: italic; }
.bombelaya__subtitle { font-family: var(--serif); font-size: 1.08rem; font-weight: 300; line-height: 1.85; color: rgba(246,243,236,0.80); margin-bottom: 1.5rem; }
.bombelaya__text { font-size: 0.9rem; line-height: 1.9; color: rgba(246,243,236,0.50); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,243,236,0.10); }
.bombelaya__punti { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.bombelaya__punto { display: flex; align-items: flex-start; gap: 1.25rem; }
.bombelaya__punto-num { font-family: var(--serif); font-size: 0.75rem; font-weight: 300; color: var(--gold-light); letter-spacing: 0.05em; margin-top: 0.1rem; flex-shrink: 0; width: 1.5rem; }
.bombelaya__punto-body { display: flex; flex-direction: column; gap: 0.2rem; }
.bombelaya__punto-title { font-family: var(--sans); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(246,243,236,0.90); }
.bombelaya__punto-desc { font-size: 0.8rem; font-weight: 300; color: rgba(246,243,236,0.48); line-height: 1.6; }
.bombelaya__chiusura { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 300; line-height: 1.75; color: rgba(246,243,236,0.70); border-left: 2px solid var(--gold); padding-left: 1.25rem; margin: 0; }
.bombelaya__visual { position: relative; overflow: hidden; }
.bombelaya__visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(34,34,34,0.35) 0%, transparent 45%); z-index: 1; pointer-events: none; }
.bombelaya__figure { position: absolute; inset: 0; }
.bombelaya__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bombelaya__visual:hover .bombelaya__figure img { transform: scale(1.04); }

/* ============================================================
   ACCREDITO / FORM (Grand Opening)
   ============================================================ */

.accredito { background: var(--bg); }
.accredito__card {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem);
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 50px 100px -24px rgba(34,34,34,0.08), 0 10px 24px -10px rgba(34,34,34,0.05);
}
.accredito__header { text-align: center; margin-bottom: 3.5rem; }
.accredito__title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 300; line-height: 1.12; color: var(--text); margin-bottom: 1.25rem; }
.accredito__title em { color: var(--gold); font-style: italic; }
.accredito__desc { font-size: 0.9rem; line-height: 1.85; color: var(--text-muted); max-width: 530px; margin: 0 auto; }
.accredito__desc strong { color: var(--text); font-weight: 400; }

/* ============================================================
   FORM — shared commercial + accredito
   ============================================================ */

.form__row { margin-bottom: 2.25rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form__field { position: relative; }
.form__label { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem; }
.form__input {
  display: block; width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border); padding: 0.45rem 0;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300; color: var(--text);
  transition: border-color 0.3s; outline: none; -webkit-appearance: none; appearance: none; border-radius: 0;
}
.form__input::placeholder { color: rgba(34,34,34,0.28); }
.form__input:focus { border-bottom-color: var(--gold); }
.form__input.has-error { border-bottom-color: var(--error); }
.form__select-wrap { position: relative; }
.form__select { cursor: pointer; padding-right: 1.5rem; }
.form__select-arrow { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 0.7rem; color: var(--gold); pointer-events: none; }
.form__error { display: block; font-size: 0.7rem; color: var(--error); margin-top: 0.4rem; min-height: 1em; opacity: 0; transform: translateY(-4px); transition: opacity 0.25s, transform 0.25s; }
.form__error.visible { opacity: 1; transform: translateY(0); }
.form__checkbox { display: flex; align-items: flex-start; gap: 0.85rem; cursor: pointer; }
.form__checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form__checkbox-box { flex-shrink: 0; width: 15px; height: 15px; border: 1px solid var(--border); margin-top: 3px; transition: all 0.2s; position: relative; }
.form__checkbox input:checked ~ .form__checkbox-box { background: var(--text); border-color: var(--text); }
.form__checkbox input:checked ~ .form__checkbox-box::after { content: ''; position: absolute; top: 1px; left: 4px; width: 4px; height: 7px; border: 1.5px solid var(--white); border-top: none; border-left: none; transform: rotate(45deg); }
.form__checkbox-label { font-size: 0.8rem; line-height: 1.65; color: var(--text-muted); }

/* Fascia oraria selettore (Grand Opening) */
#fascia-wrap { opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
#fascia-wrap.unlocked { opacity: 1; pointer-events: all; }

.ospiti-selector { display: flex; gap: 0.5rem; margin-top: 0.2rem; }
.ospiti-btn { width: 50px; height: 50px; border: 1px solid var(--border); background: transparent; font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--text-muted); transition: all 0.2s; }
.ospiti-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }
.ospiti-btn:not(.active):hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   CONTACT FORM CARD — moduli commerciali
   ============================================================ */

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem);
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 40px 80px -20px rgba(34,34,34,0.07);
}

.contact-card__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-card__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-card__title em { color: var(--gold); font-style: italic; }

.contact-card__desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   SUCCESS STATE (form commerciale)
   ============================================================ */

.success {
  text-align: center;
  padding: 0.5rem 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}

.success__check {
  width: 58px;
  height: 58px;
  border: 1px solid var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
  color: var(--emerald);
}

.success__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.success__text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
}

.success__signature {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* QR / accredito success (Grand Opening) */
.success__subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.success__qr { display: flex; justify-content: center; margin-bottom: 2.25rem; }
.success__details { background: var(--bg); padding: 1.5rem 2rem; max-width: 440px; margin: 0 auto 2rem; text-align: left; }
.success__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.success__row:last-child { border-bottom: none; }
.success__dl-label { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
.success__dl-value { font-family: var(--serif); font-size: 0.95rem; color: var(--text); text-align: right; }
.success__note { font-size: 0.84rem; line-height: 1.85; color: var(--text-muted); max-width: 490px; margin: 0 auto 2rem; }

/* ============================================================
   GRAND OPENING BANNER — link alla landing dall'home
   ============================================================ */

.go-banner {
  background: var(--emerald);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.go-banner__text {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.75);
}

.go-banner__link {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(216,190,132,0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.go-banner__link:hover { border-color: var(--gold-light); }

/* ============================================================
   FOOTER — istituzionale
   ============================================================ */

.footer {
  background: var(--text);
  color: rgba(246,243,236,0.55);
  padding: 5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246,243,236,0.09);
}

.footer__brand {}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.25s;
}
.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__logo:hover { opacity: 0.75; }

.footer__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.28);
  margin-bottom: 1.5rem;
}

.footer__address {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.35);
  margin-bottom: 2rem;
}

.footer__cta-mini {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(197,167,95,0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.footer__cta-mini:hover { color: var(--gold-light); border-color: var(--gold-light); }

.footer__nav-title {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.3);
  margin-bottom: 1.5rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.footer__nav-link {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(246,243,236,0.60);
  transition: color 0.25s;
}
.footer__nav-link:hover { color: var(--gold-light); }

.footer__go-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(197,167,95,0.3);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.footer__go-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.68rem;
  color: rgba(246,243,236,0.22);
}

.footer__bottom a {
  color: rgba(246,243,236,0.35);
  transition: color 0.25s;
}
.footer__bottom a:hover { color: rgba(246,243,236,0.6); }

/* ============================================================
   BOUTIQUE — nota disponibilità progressiva
   ============================================================ */

.boutique-note {
  background: var(--emerald-bg);
  border-left: 3px solid var(--emerald);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
}

.boutique-note__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.boutique-note__text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   STAGIONE 2027 — sezione matrimoni
   ============================================================ */

.stagione-band {
  background: var(--emerald);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  text-align: center;
}

.stagione-band__label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; display: block; }

.stagione-band__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: rgba(246,243,236,0.95);
  margin-bottom: 1.5rem;
}
.stagione-band__title em { color: var(--gold-light); font-style: italic; }

.stagione-band__text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(246,243,236,0.60);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ============================================================
   CONTATTI — page layout
   ============================================================ */

.contatti-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contatti-info__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.contatti-info__title em { color: var(--gold); font-style: italic; }

.contatti-info__text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contatti-info__item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contatti-info__item:last-child { border-bottom: none; }

.contatti-info__item-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}

.contatti-info__item-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.grid-2--center { align-items: center; }

/* ============================================================
   RESPONSIVE — main breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .nav__links {
    gap: 1.25rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .contatti-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  /* Nav — mostra hamburger, nascondi links desktop */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  .storia__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .storia__title { position: static; }

  .programma__grid { grid-template-columns: 1fr; }
  .intro-evento__pilastri { grid-template-columns: 1fr; gap: 1.5rem; }

  .nicolai__grid { grid-template-columns: 1fr; min-height: auto; }
  .nicolai__content { order: 1; padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem); }
  .nicolai__inner { max-width: 100%; }
  .nicolai__visual { order: 2; min-height: 60vw; position: relative; }
  .nicolai__visual::after { display: none; }

  .bombelaya__grid { grid-template-columns: 1fr; min-height: auto; }
  .bombelaya__content { order: 1; padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem); }
  .bombelaya__content::after { display: none; }
  .bombelaya__inner { max-width: 100%; }
  .bombelaya__visual { order: 2; min-height: 60vw; position: relative; }
  .bombelaya__visual::before { display: none; }

  .galleria__grid { grid-template-columns: 1fr; grid-template-rows: 55vw 55vw 55vw; }
  .galleria__item + .galleria__item { border-left: none; border-top: 1px solid rgba(34,34,34,0.1); }
  .galleria__caption { opacity: 1; transform: none; }

  .split {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .split__visual { min-height: 55vw; position: relative; }
  .split__visual::after { display: none; }
  .split__content { padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem); }
  .split__inner { max-width: 100%; }

  .terrazza { min-height: 80vw; }
  .terrazza--right .terrazza__content { margin-left: 0; }
  .terrazza::before { background: linear-gradient(180deg, rgba(246,243,236,0.90) 0%, rgba(246,243,236,0.55) 100%); }

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

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

  .timeline::before { left: 1.5rem; }
  .timeline__step { grid-template-columns: 4rem 1fr; gap: 1rem; }

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

  .contatti-layout { grid-template-columns: 1fr; }

  .page-hero { min-height: 50vh; }

  .hero__meta { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 640px) {
  .form__row--2 { grid-template-columns: 1fr; gap: 1.75rem; }
  .accredito__card { padding: 2rem 1.5rem; }
  .contact-card { padding: 2rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .success__details { padding: 1.25rem; }

  .go-banner { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Hero — vignetta centrale chiara (come desktop) ma più alta per coprire il testo su telefono */
  .hero::before {
    background: radial-gradient(
      ellipse 125% 92% at 50% 45%,
      rgba(246,243,236,0.97) 0%,
      rgba(246,243,236,0.92) 48%,
      rgba(246,243,236,0.60) 80%,
      rgba(246,243,236,0.22) 100%
    );
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(246,243,236,0.38) 0%,
      rgba(246,243,236,0.32) 40%,
      rgba(246,243,236,0.42) 75%,
      rgba(246,243,236,0.66) 100%
    );
  }

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

  .pillars { grid-template-columns: 1fr; }
  .event-types { grid-template-columns: 1fr; }

  .cta-band__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .turno { padding: 1.5rem; }
  .page-hero { min-height: 45vh; }
}
