/* ═══════════════════════════════════════════════════════════════
   ARANCETO — LUXURY AGRITURISMO SIRACUSA
   Complete Design System — Vivid Sicilian Identity
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ─── */
:root {
  /* Primary — the orange groves */
  --arancio: #E67E22;
  --arancio-deep: #D35400;
  --arancio-light: #F39C12;

  /* Secondary — Mediterranean sea */
  --blu-mare: #1A6B8A;
  --blu-mare-deep: #145A74;
  --blu-cielo: #5DADE2;

  /* Accent — Sicilian life */
  --limone: #F4D03F;
  --limone-deep: #D4AC0D;
  --bouganville: #C0392B;
  --verde-agave: #27AE60;

  /* Neutrals — volcanic earth + whitewash */
  --lava: #1C1917;
  --pietra: #44403C;
  --pietra-light: #78716C;
  --sabbia: #D6CFC7;
  --calce: #FEFCF9;
  --calce-warm: #FBF7F0;

  /* Functional */
  --text: #292524;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  --white: #ffffff;
  --scrim: rgba(28, 25, 23, 0.4);
  --border: rgba(230, 126, 34, 0.15);
  --border-light: rgba(68, 64, 60, 0.1);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Mulish', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad-y: clamp(5rem, 10vw, 9rem);
  --section-pad-x: clamp(1.5rem, 6vw, 8rem);
  --gap: clamp(2rem, 4vw, 5rem);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28,25,23,0.08);
  --shadow-md: 0 4px 12px rgba(28,25,23,0.1);
  --shadow-lg: 0 12px 40px rgba(28,25,23,0.12);
  --shadow-xl: 0 20px 60px rgba(28,25,23,0.16);
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--arancio) var(--calce-warm);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--calce-warm); }
html::-webkit-scrollbar-thumb {
  background: var(--arancio);
  border-radius: 4px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--calce);
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--arancio);
  color: var(--white);
}

::-moz-selection {
  background: var(--arancio);
  color: var(--white);
}

/* ─── FOCUS STYLES ─── */
:focus-visible {
  outline: 2px solid var(--arancio);
  outline-offset: 3px;
}

/* ─── SKIP TO CONTENT ─── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--arancio);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--limone);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

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

/* ═══════════════════════════════════════════════════════════════
   MAIOLICA DECORATIVE PATTERNS (CSS-only)
   ═══════════════════════════════════════════════════════════════ */
.maiolica-pattern {
  width: 100%;
  height: 100%;
  background:
    repeating-conic-gradient(
      var(--arancio) 0% 25%,
      transparent 0% 50%
    ) 0 0 / 20px 20px,
    repeating-conic-gradient(
      var(--blu-mare) 0% 25%,
      transparent 0% 50%
    ) 10px 10px / 20px 20px;
  opacity: 0.22;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.9s var(--ease-smooth),
              transform 0.9s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-4rem);
  transition: opacity 0.9s var(--ease-smooth),
              transform 0.9s var(--ease-smooth);
}

.reveal-right {
  opacity: 0;
  transform: translateX(4rem);
  transition: opacity 0.9s var(--ease-smooth),
              transform 0.9s var(--ease-smooth);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.22s; }
.stagger-3 { transition-delay: 0.34s; }
.stagger-4 { transition-delay: 0.46s; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--section-pad-x);
  transition: background-color 0.5s ease,
              padding 0.4s ease,
              box-shadow 0.4s ease,
              transform 0.4s var(--ease-smooth);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(254, 252, 249, 0.95);
  padding: 0.75rem var(--section-pad-x);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 101;
  transition: color 0.4s ease;
}

.nav__logo-icon {
  color: var(--arancio-light);
  transition: color 0.4s ease;
}

.nav.scrolled .nav__logo-icon { color: var(--arancio); }

.nav__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.4s ease;
}

.nav__logo-sub {
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  opacity: 0.7;
  font-family: var(--font-body);
}

.nav.scrolled .nav__logo-text { color: var(--lava); }

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

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--arancio);
  transition: width 0.35s var(--ease-smooth);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav.scrolled .nav__links a { color: var(--pietra); }
.nav.scrolled .nav__links a:hover { color: var(--arancio); }

/* Nav CTA button */
.nav__links .nav__cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--white);
  background: var(--arancio);
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  transition: background 0.35s ease,
              transform 0.35s var(--ease-smooth),
              box-shadow 0.35s ease;
}

.nav__links .nav__cta::after { display: none; }

.nav__links .nav__cta:hover {
  background: var(--arancio-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
}

.nav.scrolled .nav__links .nav__cta {
  background: var(--arancio);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 101;
  background: none;
  border: none;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.3s ease,
              background-color 0.4s ease;
}

.hamburger__line:nth-child(1) { transform: translateY(-6px); }
.hamburger__line:nth-child(3) { transform: translateY(6px); }

.nav.scrolled .hamburger__line { background: var(--lava); }

.hamburger.active .hamburger__line { background: var(--white); }
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background: var(--blu-mare);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(230,126,34,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(93,173,226,0.1) 0%, transparent 40%);
}

.mobile-menu__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-smooth);
}

.mobile-menu.open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--arancio-light);
  transition: width 0.35s ease;
}

.mobile-menu__link:hover { color: var(--arancio-light); }
.mobile-menu__link:hover::after { width: 60%; }

.mobile-menu__cta {
  margin-top: 1.5rem;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lava);
  background: var(--arancio-light);
  padding: 1rem 3rem;
  border-radius: 2px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.mobile-menu__cta::after { display: none; }
.mobile-menu__cta:hover {
  background: var(--arancio);
  color: var(--white);
  transform: scale(1.02);
}

.mobile-menu__contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu__contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.mobile-menu__contact a:hover { color: var(--arancio-light); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
}

.hero__media {
  grid-area: 1 / 1;
  position: relative;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(28,25,23,0.3) 0%,
      rgba(28,25,23,0.05) 30%,
      rgba(28,25,23,0.02) 50%,
      rgba(28,25,23,0.55) 75%,
      rgba(28,25,23,0.75) 100%
    );
}

/* Diagonal accent block */
.hero__accent-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(230,126,34,0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__accent-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 40%;
  background: var(--arancio);
}

/* Hero content */
.hero__content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 0 var(--section-pad-x);
  padding-bottom: clamp(4rem, 10vh, 8rem);
  max-width: 60rem;
  color: var(--white);
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: heroFadeUp 1s 0.4s var(--ease-smooth) forwards;
}

.hero__tagline-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--arancio-light);
}

.hero__title {
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(1.5rem);
  animation: heroFadeUp 1.1s 0.6s var(--ease-smooth) forwards;
}

.hero__title em {
  color: var(--arancio-light);
  font-weight: 300;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: heroFadeUp 1s 0.9s var(--ease-smooth) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: heroFadeUp 1s 1.1s var(--ease-smooth) forwards;
}

/* Hero CTAs */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
}

.hero__cta--primary {
  background: var(--arancio);
  color: var(--white);
  border: 2px solid var(--arancio);
}

.hero__cta--primary:hover {
  background: var(--arancio-deep);
  border-color: var(--arancio-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
}

.hero__cta--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.hero__cta--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.hero__cta-arrow svg {
  transition: transform 0.35s var(--ease-smooth);
}

.hero__cta--primary:hover .hero__cta-arrow svg {
  transform: translateX(4px);
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--section-pad-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: heroFadeUp 1s 1.5s var(--ease-smooth) forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero__scroll-line {
  width: 2px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--arancio-light);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* Maiolica corner decoration */
.hero__maiolica {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: heroFadeUp 1s 1.8s var(--ease-smooth) forwards;
}

/* ═══════════════════════════════════════════════════════════════
   STATEMENT STRIP
   ═══════════════════════════════════════════════════════════════ */
.statement {
  position: relative;
  background: var(--arancio);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) var(--section-pad-x);
  overflow: hidden;
}

.statement__pattern-top,
.statement__pattern-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--white) 0px,
      var(--white) 8px,
      transparent 8px,
      transparent 16px
    );
  opacity: 0.4;
}

.statement__pattern-top { top: 0; }
.statement__pattern-bottom { bottom: 0; }

.statement__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  position: relative;
  padding-left: 2rem;
}

.statement__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 60%;
  background: var(--white);
  opacity: 0.5;
  border-radius: 2px;
}

.statement__facts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.statement__fact {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.statement__fact:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 20%;
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.statement__fact-icon {
  display: block;
  margin: 0 auto 0.25rem;
  opacity: 0.7;
}

.statement__fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.statement__fact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--calce);
  overflow: hidden;
}

.about__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

/* Asymmetric media layout */
.about__media {
  position: relative;
}

.about__img-main-wrap {
  position: relative;
  z-index: 1;
}

.about__img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}

.about__img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 50%;
  bottom: 50%;
  border: 3px solid var(--arancio);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.6;
}

.about__img-float-wrap {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  transform: translateY(var(--parallax-float-y, 0));
  transition: transform 0.1s linear;
}

.about__img-float {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--calce);
}

/* Content */
.about__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about__label::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--arancio);
  opacity: 0.4;
}

.about__title {
  margin-bottom: 2rem;
}

.about__title em {
  font-weight: 300;
}

.about__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--pietra);
  margin-bottom: 1.25rem;
}

.about__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--arancio), var(--arancio-light));
  margin: 2rem 0;
  border-radius: 2px;
}

.about__quote {
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--arancio);
}

.about__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--pietra);
}

.about__pattern-accent {
  width: 80px;
  height: 80px;
  margin-top: 2.5rem;
  background:
    repeating-conic-gradient(
      var(--arancio) 0% 25%,
      transparent 0% 50%
    ) 0 0 / 16px 16px;
  opacity: 0.25;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   ROOMS
   ═══════════════════════════════════════════════════════════════ */
.rooms {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--lava);
  color: var(--white);
  position: relative;
}

.rooms__header {
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.rooms__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio-light);
  display: block;
  margin-bottom: 1rem;
}

.rooms__title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.rooms__title em {
  color: var(--arancio-light);
  font-weight: 300;
}

.rooms__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.rooms__cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.rooms__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--arancio);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.rooms__cta:hover {
  background: var(--arancio-deep);
  transform: translateY(-2px);
}

/* Room cards grid */
.rooms__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Room card */
.room-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-smooth),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,255,255,0.15);
}

/* Color edge per room type */
.room-card__visual {
  position: relative;
  overflow: hidden;
}

.room-card__img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.room-card:hover .room-card__img {
  transform: scale(1.05);
}

.room-card__color-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.room-card--blu .room-card__color-edge { background: var(--blu-cielo); }
.room-card--arancio .room-card__color-edge { background: var(--arancio); }
.room-card--limone .room-card__color-edge { background: var(--limone); }

.room-card__body {
  padding: 1.75rem;
}

.room-card__type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.room-card--blu .room-card__type { color: var(--blu-cielo); }
.room-card--arancio .room-card__type { color: var(--arancio-light); }
.room-card--limone .room-card__type { color: var(--limone); }

.room-card__name {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.room-card__price {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.room-card__price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.room-card--blu .room-card__price-amount { color: var(--blu-cielo); }
.room-card--arancio .room-card__price-amount { color: var(--arancio-light); }
.room-card--limone .room-card__price-amount { color: var(--limone); }

.room-card__price-unit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.25rem;
}

.room-card__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-card__amenity {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.room-card__amenity span {
  font-size: 0.9rem;
}

.room-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  width: 100%;
  justify-content: center;
  transition: all 0.35s var(--ease-smooth);
}

.room-card--blu .room-card__cta {
  background: var(--blu-mare);
  color: var(--white);
}
.room-card--blu .room-card__cta:hover {
  background: var(--blu-cielo);
  color: var(--lava);
}

.room-card--arancio .room-card__cta {
  background: var(--arancio);
  color: var(--white);
}
.room-card--arancio .room-card__cta:hover {
  background: var(--arancio-light);
  color: var(--lava);
}

.room-card--limone .room-card__cta {
  background: var(--limone-deep);
  color: var(--lava);
}
.room-card--limone .room-card__cta:hover {
  background: var(--limone);
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCES
   ═══════════════════════════════════════════════════════════════ */
.experiences {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--calce-warm);
}

.experiences__header {
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.experiences__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-agave);
  display: block;
  margin-bottom: 1rem;
}

.experiences__title em {
  color: var(--verde-agave);
}

/* Experience alternating rows */
.exp-row {
  max-width: 1200px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.exp-row:last-child { margin-bottom: 0; }

.exp-row--reverse {
  direction: rtl;
}

.exp-row--reverse > * {
  direction: ltr;
}

/* Media */
.exp-row__media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.exp-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.exp-row:hover .exp-row__media img {
  transform: scale(1.04);
}

.exp-row__number {
  position: absolute;
  top: -0.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.exp-row--normal .exp-row__number {
  right: -1rem;
  color: var(--arancio);
  opacity: 0.25;
}

.exp-row--reverse .exp-row__number {
  left: -1rem;
  color: var(--blu-mare);
  opacity: 0.25;
}

/* Content */
.exp-row__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.exp-row__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--pietra);
  margin-bottom: 1.25rem;
}

.exp-row__detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.exp-row__detail span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--arancio);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exp-row__detail span::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--arancio);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LO CHEF INNAMORATO
   ═══════════════════════════════════════════════════════════════ */
.chef {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--lava);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.chef__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.chef__media {
  position: relative;
}

.chef__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.chef__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--bouganville);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  z-index: 2;
}

.chef__badge-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  display: block;
}

.chef__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bouganville);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.chef__label::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--bouganville);
  opacity: 0.5;
}

.chef__title {
  color: var(--white);
  margin-bottom: 2rem;
}

.chef__title em {
  color: var(--bouganville);
  font-weight: 300;
}

.chef__text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.chef__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.chef__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.chef__feature-icon {
  font-size: 1.2rem;
}

.chef__quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 4px solid var(--bouganville);
  background: rgba(255,255,255,0.04);
  border-radius: 0 4px 4px 0;
}

.chef__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.chef__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bouganville);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--calce);
  position: relative;
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.gallery__header-pattern {
  width: 100px;
  height: 8px;
  margin: 0 auto 1.5rem;
  background:
    repeating-linear-gradient(
      90deg,
      var(--arancio) 0px,
      var(--arancio) 8px,
      var(--blu-mare) 8px,
      var(--blu-mare) 16px,
      var(--limone) 16px,
      var(--limone) 24px
    );
  border-radius: 1px;
  opacity: 0.6;
}

.gallery__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio);
  display: block;
  margin-bottom: 1rem;
}

.gallery__title em {
  color: var(--arancio);
}

/* Masonry grid */
.gallery__masonry {
  max-width: 1300px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}

.gallery__item {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 3px;
  break-inside: avoid;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(28,25,23,0.7));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-smooth);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GALLERY ACCENT BAR ON HOVER ─── */
.gallery__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--arancio);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  z-index: 2;
}

.gallery__item:hover::after {
  transform: scaleX(1);
}

/* ─── JS-DRIVEN LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-xl);
  transition: opacity 0.3s ease;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.lightbox__close:hover {
  background: var(--arancio);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--arancio);
  transform: translateY(-50%) scale(1.08);
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING STRIP
   ═══════════════════════════════════════════════════════════════ */
.booking-strip {
  position: relative;
  background: var(--blu-mare);
  padding: clamp(4rem, 8vw, 6rem) var(--section-pad-x);
  overflow: hidden;
  text-align: center;
}

.booking-strip__inner {
  position: relative;
  z-index: 1;
}

.booking-strip__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-strip__title em {
  color: var(--arancio-light);
  font-style: italic;
}

.booking-strip__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}

.booking-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lava);
  background: var(--arancio-light);
  padding: 1.1rem 2.5rem;
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}

.booking-strip__cta:hover {
  background: var(--arancio);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.booking-strip__pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      rgba(255,255,255,0.07) 0% 25%,
      transparent 0% 50%
    ) 0 0 / 40px 40px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT / REACH
   ═══════════════════════════════════════════════════════════════ */
.reach {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--calce-warm);
}

.reach__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: clamp(2rem, 5vw, 5rem);
}

/* Map column */
.reach__map-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reach__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
}

.reach__map-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.reach__map-blocked {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--calce-warm);
  text-align: center;
}

.reach__map-blocked p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.reach__map-blocked a {
  color: var(--arancio);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.reach__map-blocked a:hover {
  color: var(--arancio-deep);
}

.reach__address-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--arancio);
}

.reach__address-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.reach__address-card p {
  font-size: 0.9rem;
  color: var(--pietra);
  line-height: 1.6;
}

.reach__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--arancio);
  margin-top: 0.75rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.reach__map-link:hover {
  color: var(--arancio-deep);
  gap: 0.6rem;
}

/* Form column */
.reach__form-col {
  padding-top: 1rem;
}

.reach__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arancio);
  display: block;
  margin-bottom: 1rem;
}

.reach__title {
  margin-bottom: 2rem;
}

.reach__title em {
  color: var(--arancio);
}

/* Form */
.reach__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reach__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reach__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.reach__field--full {
  grid-column: 1 / -1;
}

.reach__field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pietra);
  letter-spacing: 0.03em;
}

.reach__input,
.reach__textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--sabbia);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.reach__input:focus,
.reach__textarea:focus {
  outline: none;
  border-color: var(--blu-mare);
  box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.12);
}

.reach__input::placeholder,
.reach__textarea::placeholder {
  color: var(--text-light);
}

.reach__textarea {
  resize: vertical;
  min-height: 100px;
}

.reach__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--arancio);
  border: none;
  padding: 1rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.35s var(--ease-smooth);
}

.reach__submit:hover {
  background: var(--arancio-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.reach__submit svg {
  transition: transform 0.35s var(--ease-smooth);
}

.reach__submit:hover svg {
  transform: translateX(4px);
}

/* Privacy checkbox */
.reach__privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.reach__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--sabbia);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  margin-top: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.reach__checkbox:checked {
  background: var(--arancio);
  border-color: var(--arancio);
}

.reach__checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reach__checkbox:focus-visible {
  outline: 2px solid var(--blu-mare);
  outline-offset: 2px;
}

.reach__privacy-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--pietra);
  cursor: pointer;
}

.reach__privacy-label a {
  color: var(--arancio);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.reach__privacy-label a:hover {
  color: var(--arancio-deep);
}

/* Contact details below form */
.reach__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.reach__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reach__contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reach__contact-item a {
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.reach__contact-item a:hover {
  color: var(--arancio);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--lava);
  color: rgba(255,255,255,0.7);
  padding: clamp(4rem, 8vw, 6rem) var(--section-pad-x) 2rem;
}

.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand */
.footer__brand-logo {
  display: block;
  margin-bottom: 1.25rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  letter-spacing: 0.04em;
}

.footer__brand-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  opacity: 0.5;
  margin-top: 0.1rem;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Columns */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arancio-light);
  margin-bottom: 1.25rem;
}

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

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__nav a:hover {
  color: var(--arancio-light);
  padding-left: 0.25rem;
}

/* Address */
.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__address p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__address a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer__address a:hover {
  color: var(--arancio-light);
}

/* Social */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer__social-link:hover {
  background: var(--arancio);
  color: var(--white);
  transform: translateY(-2px);
}

/* Instagram grid */
.footer__insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 3px;
  overflow: hidden;
}

.footer__insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.footer__insta-grid img:hover {
  opacity: 1;
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--arancio-light);
}

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--arancio);
  border: 1.5px solid var(--arancio);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease,
              visibility 0.4s ease,
              transform 0.4s var(--ease-smooth),
              background 0.3s ease,
              color 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--arancio);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 91;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--ease-spring),
              box-shadow 0.35s ease,
              background 0.35s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
}

.whatsapp-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  background: #22C55E;
}

.whatsapp-fab__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--lava);
  border-top: 3px solid var(--arancio);
  padding: 1.25rem var(--section-pad-x);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-smooth);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner__btn--accept {
  background: var(--arancio);
  color: var(--white);
}

.cookie-banner__btn--accept:hover {
  background: var(--arancio-deep);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-banner__link {
  color: var(--arancio-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.cookie-banner__link:hover {
  color: var(--arancio);
}

/* ═══════════════════════════════════════════════════════════════
   BATCH 2 — MICRO-INTERACTIONS & HOVER STATES
   ═══════════════════════════════════════════════════════════════ */

/* Room card glow on hover */
.room-card--blu:hover { box-shadow: 0 12px 40px rgba(93, 173, 226, 0.25); }
.room-card--arancio:hover { box-shadow: 0 12px 40px rgba(230, 126, 34, 0.25); }
.room-card--limone:hover { box-shadow: 0 12px 40px rgba(244, 208, 63, 0.25); }

/* CTA shimmer on hover */
.hero__cta--primary,
.booking-strip__cta,
.reach__submit {
  position: relative;
  overflow: hidden;
}

.hero__cta--primary::after,
.booking-strip__cta::after,
.reach__submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s var(--ease-smooth);
  pointer-events: none;
}

.hero__cta--primary:hover::after,
.booking-strip__cta:hover::after,
.reach__submit:hover::after {
  background-position: 0% 0;
}

/* Experience row accent line */
.exp-row__content::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--arancio);
  margin-top: 1.5rem;
  transition: width 0.8s var(--ease-smooth);
}

.exp-row.visible .exp-row__content::after {
  width: 60px;
}

/* Nav scroll spy active state */
.nav__links a.active {
  color: var(--arancio);
}

.nav__links a.active::after {
  width: 100%;
}

.nav.scrolled .nav__links a.active {
  color: var(--arancio);
}

/* ═══════════════════════════════════════════════════════════════
   BATCH 5 — SECTION COLOR BLEEDING
   ═══════════════════════════════════════════════════════════════ */

/* Transition from arancio statement to calce about */
.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--arancio), transparent);
  opacity: 0.06;
  pointer-events: none;
}

/* Transition from calce-warm experiences to calce gallery */
.gallery {
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--calce-warm), transparent);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Transition from calce gallery to blu-mare booking strip */
.booking-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--calce), transparent);
  opacity: 0.06;
  pointer-events: none;
}

/* Transition from lava rooms to calce-warm experiences */
.experiences {
  position: relative;
}

.experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--lava), transparent);
  opacity: 0.04;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .hero__tagline,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll,
  .hero__maiolica {
    opacity: 1;
    transform: none;
  }

  .hero__img { animation: none; }

  .exp-row__content::after {
    width: 60px;
    transition: none;
  }

  .gallery__item::after {
    transform: scaleX(1);
    transition: none;
  }

  .hero__cta--primary::after,
  .booking-strip__cta::after,
  .reach__submit::after {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }

  .hero__accent-block { display: none; }

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

  .chef__badge {
    bottom: -1rem;
    right: 1rem;
  }

  .chef__img {
    aspect-ratio: 16 / 10;
  }

  .statement__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .statement__quote {
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .statement__quote::before { display: none; }

  .statement__facts {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .statement__fact:not(:last-child)::after {
    bottom: auto;
    right: -1.5rem;
    left: auto;
    top: 20%;
    width: 1px;
    height: 60%;
  }

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

  .about__img-float-wrap {
    bottom: -1rem;
    right: -1rem;
    width: 45%;
  }

  .rooms__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .rooms__grid .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .exp-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exp-row--reverse {
    direction: ltr;
  }

  .gallery__masonry {
    columns: 2;
  }

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

  .reach__map-wrap {
    aspect-ratio: 16 / 9;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .hero__scroll { display: none; }
  .hero__maiolica { display: none; }

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

  .chef__badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 1rem;
    transform: rotate(-2deg);
  }

  .hero__content {
    padding-bottom: 3rem;
  }

  /* Hero CTAs: pill-style side by side */
  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .hero__cta {
    width: auto;
    padding: 0.85rem 1.5rem;
    font-size: 0.65rem;
  }

  /* Statement facts: row with smaller text */
  .statement__facts {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .statement__fact-value {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .statement__fact-label {
    font-size: 0.62rem;
  }

  .statement__fact:not(:last-child)::after {
    bottom: auto;
    right: -0.5rem;
    left: auto;
    top: 15%;
    width: 1px;
    height: 70%;
  }

  .about__img-accent { display: none; }

  .about__img-float-wrap {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
  }

  /* Room cards: horizontal layout on mobile */
  .rooms__grid {
    grid-template-columns: 1fr;
  }

  .rooms__grid .room-card:last-child {
    max-width: 100%;
  }

  .room-card {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
  }

  .room-card__img {
    aspect-ratio: 3/4;
    height: 100%;
  }

  .room-card__body {
    padding: 1.25rem;
  }

  .room-card__amenities {
    display: none;
  }

  /* Gallery: 2 columns on mobile */
  .gallery__masonry {
    columns: 2;
    column-gap: 0.5rem;
  }

  .gallery__item {
    margin-bottom: 0.5rem;
  }

  .gallery__caption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.7rem;
    padding: 1.5rem 0.75rem 0.75rem;
  }

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

  .reach__contacts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .whatsapp-fab__label { display: none; }

  .whatsapp-fab {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .back-to-top {
    right: 2rem;
    bottom: 5.5rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .exp-row__number {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  /* Lightbox prev/next on mobile */
  .lightbox__prev { left: 0.75rem; }
  .lightbox__next { right: 0.75rem; }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SMALL MOBILE (480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --section-pad-x: 1.25rem;
  }

  .nav {
    padding: 1rem var(--section-pad-x);
  }

  .nav__logo-icon { display: none; }

  .room-card__body {
    padding: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy, Cookie Policy, Termini
   ═══════════════════════════════════════════════════════════════ */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--section-pad-y);
  min-height: 100vh;
}

.legal-page__header {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

.legal-page__header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.legal-page__header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-page__content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pietra);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-page__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-page__content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.legal-page__content ul,
.legal-page__content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page__content ul {
  list-style: disc;
}

.legal-page__content ol {
  list-style: decimal;
}

.legal-page__content a {
  color: var(--arancio-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.legal-page__content a:hover {
  color: var(--arancio);
}

.legal-page__content strong {
  font-weight: 600;
  color: var(--pietra);
}

.legal-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.legal-page__content thead {
  display: table-header-group;
}

.legal-page__content tbody {
  display: table-row-group;
}

.legal-page__content tr {
  display: table-row;
}

.legal-page__content table,
.legal-page__content thead,
.legal-page__content tbody,
.legal-page__content tr {
  width: 100%;
}

.legal-page__content th,
.legal-page__content td {
  display: table-cell;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.legal-page__content th {
  font-weight: 600;
  color: var(--pietra);
  background: var(--calce-warm);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-page__content td {
  color: var(--text);
}

.legal-page__content tbody tr:hover {
  background: var(--calce-warm);
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--arancio);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
  margin-top: 3rem;
}

.legal-page__back:hover {
  color: var(--arancio-deep);
  gap: 0.75rem;
}

.legal-page__back svg {
  transition: transform 0.3s ease;
}

.legal-page__back:hover svg {
  transform: translateX(-3px);
}

/* Legal page nav — simplified */
.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--lava);
  padding: 1rem var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--arancio);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.legal-nav__logo:hover {
  opacity: 0.85;
}

.legal-nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.legal-nav__home {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.legal-nav__home:hover {
  color: var(--arancio-light);
}

/* Legal page footer — simplified, no top border/padding */
.legal-page-footer .footer__bottom {
  padding-top: 0;
  border-top: none;
}

/* Legal page responsive */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }

  .legal-page__content table {
    font-size: 0.82rem;
  }

  .legal-page__content th,
  .legal-page__content td {
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding-top: 88px;
  }

  .legal-page__header h1 {
    font-size: 1.75rem;
  }

  .legal-page__content table {
    font-size: 0.78rem;
  }

  .legal-page__content th,
  .legal-page__content td {
    padding: 0.5rem;
  }

  .legal-nav__logo-text {
    font-size: 1.1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
  .nav, .mobile-menu, .back-to-top, .whatsapp-fab,
  .cookie-banner, .hero__scroll, .hero__maiolica,
  .lightbox { display: none !important; }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND IDENTITY ADDITIONS — v2
   Zagara divider, logo mark, mobile menu brand, hero micro,
   room poem lines, footer motto, form focus refinements
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO MICRO-COPY ─── */
.hero__micro {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(0.75rem);
  animation: heroFadeUp 1s 1.25s var(--ease-smooth) forwards;
}

/* ─── ZAGARA SECTION DIVIDER ─── */
.zagara-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem var(--section-pad-x);
  background: var(--calce);
  color: var(--arancio);
}

.zagara-divider--warm {
  background: var(--calce-warm);
  color: var(--arancio);
}

.zagara-divider__svg {
  width: 240px;
  max-width: 80%;
  height: auto;
  display: block;
}

/* ─── ROOM CARD NAME ─── */
.room-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0 0 0.35rem 0;
}

/* ─── ROOM CARD POEM LINE ─── */
/* Room cards have dark backgrounds, so poem uses white-tinted color */
.room-card__poem {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ─── MOBILE MENU BRAND BLOCK ─── */
.mobile-menu__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  text-align: center;
}

.mobile-menu__brand-mark {
  color: var(--arancio-light);
  margin-bottom: 0.5rem;
}

.mobile-menu__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.mobile-menu__brand-motto {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--arancio-light);
  opacity: 0.75;
}

/* ─── MOBILE MENU NAV wrapper ─── */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ─── FOOTER BRAND MARK & MOTTO ─── */
.footer__brand-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer__brand-mark {
  color: var(--arancio);
  flex-shrink: 0;
}

/* footer brand logo now uses inline-flex row layout (defined above) */

.footer__brand-name {
  line-height: 1.1;
}

.footer__brand-motto {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--arancio);
  margin-bottom: 1rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}

/* ─── COLOR ROLE REFINEMENTS ─── */

/* Bouganville: single micro-accent in statement facts separator */
.statement__fact:not(:last-child)::after {
  background: rgba(192, 57, 43, 0.15);
}

/* Blu-mare: map border accent */
.reach__map-wrap {
  border-color: rgba(26, 107, 138, 0.2);
}

/* Blu-mare: address card left accent already arancio — keep;
   trust element: map link uses blu-mare on hover */
.reach__map-link {
  color: var(--blu-mare);
}

.reach__map-link:hover {
  color: var(--blu-mare-deep);
}

/* ─── BUTTON TRANSITION REFINEMENTS ─── */
.nav__links .nav__cta,
.hero__cta--primary,
.booking-strip__cta,
.reach__submit,
.room-card__cta {
  transition-timing-function: var(--ease-smooth);
  transition-duration: 0.3s;
  transition-property: background-color, color, transform, box-shadow, border-color;
}

/* ─── REDUCED MOTION: ZAGARA DIVIDER ─── */
@media (prefers-reduced-motion: reduce) {
  .hero__micro {
    opacity: 0.6;
    transform: none;
    animation: none;
  }
}

/* ─── RESPONSIVE: zagara divider ─── */
@media (max-width: 768px) {
  .zagara-divider {
    padding: 2rem var(--section-pad-x);
  }

  .zagara-divider__svg {
    width: 180px;
  }

  .mobile-menu__brand {
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .footer__brand-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .room-card__poem {
    font-size: 0.88rem;
  }
}
