/* ============================================================
   DO.MA.apartment — Stylesheet
   Boutique holiday house · Molfetta
   ============================================================ */

:root {
  --black: #0E0E0E;
  --black-soft: #161616;
  --charcoal: #1F1F1F;
  --gold: #C9A961;
  --gold-light: #E0C285;
  --gold-dark: #A88840;
  --cream: #F4EDE0;
  --cream-bg: #FBF8F2;
  --white: #FFFFFF;
  --ink: #1A1814;
  --ink-soft: #3A332B;
  --muted: #7A736B;
  --line: rgba(26, 24, 20, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --container-narrow: 880px;

  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: inherit; }

/* ===== Helpers ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.section-head { max-width: 720px; margin: 0 auto 64px; }
.section-head.center { text-align: center; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 136, 64, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 224, 0.45);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--cream); }
.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--charcoal); }
.full-w { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 18px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
  background: linear-gradient(to bottom, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.0) 100%);
}
.nav.scrolled {
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
.nav-brand img {
  height: 70px;
  width: auto;
  display: block;
  transition: all var(--transition);
  /* Soft glow that bridges the logo's black background into dark hero */
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.15), 0 10px 30px rgba(0, 0, 0, 0.35);
}
.nav.scrolled .nav-brand img {
  height: 56px;
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.2);
}
/* Hide redundant text — logo already contains brand name */
.nav-brand-text { display: none; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--gold); }
.nav-links a.is-active::after { width: 100%; background: var(--gold); }

.nav-cta {
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite;
}
.hero-slide.is-active { opacity: 1; }
@keyframes heroZoom {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 100%),
    linear-gradient(to bottom, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.4) 50%, rgba(14,14,14,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hero-title .serif-light { font-weight: 300; }
.hero-title .serif-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.9);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 22px 36px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
}
.hero-meta > div { display: flex; flex-direction: column; line-height: 1; }
.hero-meta strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold-light);
}
.hero-meta span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  margin-top: 6px;
}
.hero-meta .meta-sep {
  width: 1px;
  height: 36px;
  background: var(--line-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(244, 237, 224, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 140px 0 100px;
  text-align: center;
  background: var(--cream-bg);
}
.intro .display { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.intro .lead { color: var(--ink-soft); font-size: 1.15rem; }
.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
  color: var(--gold);
}
.intro-divider span {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   ABOUT / L'APPARTAMENTO
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-text .display { margin-bottom: 32px; }
.about-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  color: var(--gold-dark);
  line-height: 1;
}
.about-stats span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.about-media {
  position: relative;
  height: 580px;
}
.about-photo-main,
.about-photo-second {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.about-photo-main {
  top: 0; left: 0;
  width: 70%;
  height: 75%;
}
.about-photo-second {
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border: 8px solid var(--white);
}
.about-photo-main img,
.about-photo-second img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.about-photo-main:hover img,
.about-photo-second:hover img { transform: scale(1.08); }
.about-badge {
  position: absolute;
  top: 30px;
  right: 8%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(168, 136, 64, 0.35);
}
.about-badge span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
}
.about-badge strong {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 120px 0;
  background: var(--cream-bg);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  padding: 48px 32px;
  position: relative;
  transition: all var(--transition);
  border: 1px solid var(--line);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services {
  padding: 80px 0;
  background: var(--black);
  color: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 40px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-item svg {
  width: 32px; height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}
.service-item span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 140px 0;
  background: var(--cream-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.g-item {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--charcoal);
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }

/* ============================================================
   OWNERS
   ============================================================ */
.owners {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
}
.owners-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.owners-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 18px;
}
.owners-values {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}
.owners-values > div {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.owners-values strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.owners-values span {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.owners-quote {
  background: var(--black);
  color: var(--cream);
  padding: 64px 56px;
  position: relative;
  border-top: 4px solid var(--gold);
}
.owners-quote svg {
  color: var(--gold);
  margin-bottom: 24px;
}
.owners-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1.4;
  margin: 0 0 32px;
  font-weight: 300;
}
.quote-author {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: 140px 0;
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  border: 1px solid var(--line);
}
.location-map {
  min-height: 540px;
  background: var(--cream);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  filter: saturate(0.85) contrast(1.05);
}
.location-poi {
  padding: 56px 48px;
  background: var(--cream-bg);
  display: flex;
  flex-direction: column;
}
.location-poi h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 28px;
  color: var(--ink);
}
.location-poi ul { margin-bottom: 32px; flex: 1; }
.location-poi li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.location-poi li span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.location-poi li em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 140px 0;
  background: var(--cream-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .lead { font-size: 1.1rem; }
.contact-list {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 0; }
.ci-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.contact-list a,
.contact-list span:not(.ci-label) {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  display: block;
  line-height: 1.5;
}
.contact-list a:hover { color: var(--gold-dark); }

.contact-form {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.05);
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 0 28px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label.full { margin-bottom: 18px; }
.contact-form label > span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream-bg);
  border-radius: var(--radius);
  font-family: var(--sans);
  color: var(--ink);
  font-size: 0.96rem;
  transition: all var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}
.check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.check input { margin-top: 4px; }
.check a { color: var(--gold-dark); text-decoration: underline; }
.form-note {
  margin: 20px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.form-note a { color: var(--ink); text-decoration: underline; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 120px 0;
  background: var(--black) url('assets/photos/foto-15.jpeg') center/cover;
  background-blend-mode: multiply;
  color: var(--cream);
  text-align: center;
  position: relative;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.85), rgba(14,14,14,0.85));
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip .display {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.cta-strip .display em { color: var(--gold-light); }
.cta-strip p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: rgba(244, 237, 224, 0.85);
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img {
  height: 96px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}
.footer-brand p {
  color: rgba(244, 237, 224, 0.7);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.94rem;
  color: rgba(244, 237, 224, 0.75);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.5);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(8px);
}
.modal-dialog {
  position: relative;
  background: var(--white);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 56px 56px 48px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 50px 100px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal.is-open .modal-dialog { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  font-size: 28px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--cream); color: var(--ink); }
.modal-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.modal-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--gold-dark);
}
.modal-body p,
.modal-body ul {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}
.modal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
}
.modal-body ul li { margin-bottom: 6px; }
.modal-lead {
  font-size: 1.02rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 20px 0 30px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(14, 14, 14, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 64px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-small { min-height: 48vh; padding: 150px 0 70px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-light {
  background: var(--cream-bg);
  color: var(--ink);
  min-height: 40vh;
  padding: 150px 0 60px;
}
.page-hero-light::before { display: none; }

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(244, 237, 224, 0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:not(a) { color: var(--cream); }
.breadcrumb-dark { color: var(--gold-dark); }
.breadcrumb-dark a { color: var(--muted); }
.breadcrumb-dark span:not(a) { color: var(--ink); }

.display-xl {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.display-xl .serif-italic { font-style: italic; color: var(--gold-light); }
.display-xl .serif-light { font-weight: 300; }
.display-dark .serif-italic { color: var(--gold-dark); }

.page-hero-sub {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.9);
  font-weight: 300;
  margin: 0;
}
.sub-dark { color: var(--ink-soft); }

.page-section { padding: 110px 0; background: var(--white); }
.page-section + .page-section { border-top: 1px solid var(--line); }

/* ============================================================
   HIGHLIGHTS (Home)
   ============================================================ */
.highlights {
  padding: 110px 0;
  background: var(--cream-bg);
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.highlight-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  color: var(--ink);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.highlight-img {
  overflow: hidden;
  position: relative;
  min-height: 280px;
}
.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.highlight-card:hover .highlight-img img { transform: scale(1.08); }
.highlight-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.highlight-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.highlight-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

/* ============================================================
   QUOTE SECTION (Home)
   ============================================================ */
.quote-section {
  padding: 110px 0;
  background: var(--white);
  text-align: center;
}
.owners-quote-light {
  color: var(--ink);
}
.owners-quote-light svg {
  color: var(--gold);
  margin: 0 auto 24px;
  display: block;
}
.owners-quote-light p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  margin: 0 auto 28px;
  font-weight: 300;
  max-width: 740px;
}
.owners-quote-light .quote-author {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 32px;
}

/* ============================================================
   BLOG TEASER (Home)
   ============================================================ */
.blog-teaser {
  padding: 110px 0;
  background: var(--cream-bg);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: all var(--transition);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.post-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 32px; }
.post-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 14px;
}
.post-meta em { font-style: normal; }
.post-card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.25;
}
.post-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.7;
}
.teaser-side {
  background: var(--black);
  color: var(--cream);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--gold);
}
.teaser-side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin: 0 0 16px;
}
.teaser-side p {
  color: rgba(244, 237, 224, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

.link-arrow.muted {
  color: var(--muted);
  border-color: transparent;
  pointer-events: none;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--black);
  color: var(--cream);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-grid > div { padding: 0 8px; }
.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.stats-grid span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
}

/* ============================================================
   ROOM TOUR (Appartamento)
   ============================================================ */
.room-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.room-row:last-child { margin-bottom: 0; }
.room-row-rev { direction: rtl; }
.room-row-rev > * { direction: ltr; }
.room-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  opacity: 0.6;
}
.room-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  margin: 0 0 18px;
  color: var(--ink);
}
.room-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 22px;
}
.room-features {
  display: grid;
  gap: 10px;
}
.room-features li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.room-media {
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.room-media:hover img { transform: scale(1.06); }
/* Landscape variant — for wide photos (es. soppalco con letti affiancati) */
.room-media-wide { aspect-ratio: 3/2; }

/* Coppia di foto di dettaglio sotto una stanza (es. bagno) */
.room-row-bath { margin-bottom: 0; }
.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.room-gallery figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
}
.room-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.room-gallery figure:hover img { transform: scale(1.06); }

.features-page { background: var(--cream-bg); }

/* ============================================================
   VALUES (Chi Siamo)
   ============================================================ */
.values-section { background: var(--cream-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  padding: 44px 32px;
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.value-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
  margin-bottom: 14px;
  opacity: 0.7;
}
.value-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.mission-section { background: var(--white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 0 18px;
}
.mission-quote {
  background: var(--black);
  color: var(--cream);
  padding: 56px 48px;
  border-top: 4px solid var(--gold);
}
.mission-quote svg { color: var(--gold); margin-bottom: 22px; }
.mission-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1.4;
  font-weight: 300;
  margin: 0 0 26px;
}
.mission-quote .quote-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   POSIZIONE
   ============================================================ */
.location-page-section { padding: 0 0 110px; background: var(--white); border-top: 0; }
.nearby-section { background: var(--cream-bg); }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nearby-col {
  background: var(--white);
  padding: 38px 32px;
  border: 1px solid var(--line);
}
.nearby-col h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
}
.poi-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.poi-list li:last-child { border-bottom: 0; }
.poi-list li span {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.poi-list li em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
  flex-shrink: 0;
}
.address-block {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
}

.transport-section { background: var(--white); }
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.transport-card {
  background: var(--cream-bg);
  padding: 44px 32px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all var(--transition);
}
.transport-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.transport-card .feature-icon { margin: 0 auto 24px; }
.transport-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.transport-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-list-section { background: var(--cream-bg); }
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 60px;
  overflow: hidden;
  transition: all var(--transition);
  color: var(--ink);
}
.featured-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.featured-post-img {
  overflow: hidden;
  min-height: 380px;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.featured-post:hover .featured-post-img img { transform: scale(1.06); }
.featured-post-body {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post-body .display {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.featured-post-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 26px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.post-card-coming {
  opacity: 0.85;
  cursor: default;
}
.post-card-coming:hover {
  transform: none;
  box-shadow: 0 25px 50px rgba(0,0,0,0.04);
  border-color: var(--line);
}

.newsletter-card {
  background: var(--black);
  color: var(--cream);
  padding: 56px 48px;
  border-top: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin: 8px 0 12px;
}
.newsletter-card p {
  color: rgba(244, 237, 224, 0.8);
  font-size: 0.98rem;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(244, 237, 224, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(244, 237, 224, 0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   ARTICLE
   ============================================================ */
.article-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.4) 0%, rgba(14,14,14,0.92) 100%);
}
.article-hero .container { position: relative; z-index: 2; }
.article-category {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 28px;
}
.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
.article-title .serif-italic { font-style: italic; color: var(--gold-light); font-weight: 300; }
.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(244, 237, 224, 0.85);
}
.article-meta strong { color: var(--gold-light); font-weight: 500; }
.meta-dot { color: var(--gold); }

.article-body {
  background: var(--white);
  padding: 100px 0 80px;
}
.article-container { max-width: 760px; }
.article-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  font-style: italic;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  margin: 56px 0 22px;
  color: var(--ink);
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 36px 0 16px;
  color: var(--gold-dark);
}
.article-body p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 0 0 22px;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { color: var(--gold-dark); }
.article-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.article-body ul, .article-body ol {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.article-body ul li,
.article-body ol li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 1px;
  background: var(--gold);
}
.article-body ol {
  counter-reset: olist;
}
.article-body ol li {
  counter-increment: olist;
}
.article-body ol li::before {
  content: counter(olist);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.article-figure {
  margin: 50px -80px;
  text-align: center;
}
.article-figure img {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.article-figure figcaption {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

.article-pullquote {
  margin: 50px -20px;
  padding: 36px 40px;
  border-left: 3px solid var(--gold);
  background: var(--cream-bg);
}
.article-pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

.article-cta {
  margin: 60px 0 40px;
  padding: 50px 48px;
  background: var(--black);
  color: var(--cream);
  border-top: 4px solid var(--gold);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--gold-light);
  margin: 0 0 14px;
}
.article-cta p {
  color: rgba(244, 237, 224, 0.85);
  margin: 0 0 26px;
  font-size: 1rem;
}

.article-author {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.article-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--black);
  padding: 8px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.article-author > div { display: flex; flex-direction: column; }
.article-author strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 8px;
}
.article-author p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.related-section { background: var(--cream-bg); padding: 100px 0; }
.related-section .post-grid { margin-bottom: 40px; }
.back-to-blog {
  text-align: center;
  padding-top: 20px;
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-page {
  padding: 80px 0 100px;
  background: var(--white);
}
.legal-page .article-lead {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--muted);
  border-bottom: 0;
  padding-bottom: 0;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 36px 0 12px;
  color: var(--gold-dark);
}
.legal-page p, .legal-page ul {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.legal-page ul li {
  padding-left: 22px;
  position: relative;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.legal-page a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   CONTACT MAP
   ============================================================ */
.contact-map-section { padding: 0 0 110px; background: var(--white); border-top: 0; }
.map-full {
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-full iframe {
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: var(--cream-bg); padding: 90px 0 100px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid,
  .owners-grid,
  .contact-grid,
  .mission-grid,
  .teaser-grid,
  .featured-post,
  .newsletter-card { grid-template-columns: 1fr; gap: 50px; }
  .about-media { height: 480px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 360px; }
  .location-map iframe { min-height: 360px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-card { grid-template-columns: 1fr; }
  .highlight-img { min-height: 240px; aspect-ratio: 16/9; }
  .values-grid,
  .nearby-grid,
  .transport-grid,
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
  .room-row { grid-template-columns: 1fr; gap: 36px; margin-bottom: 60px; }
  .room-row-rev { direction: ltr; }
  .room-media { aspect-ratio: 16/10; }
  .article-figure { margin: 40px 0; }
  .article-pullquote { margin: 40px 0; }
  .featured-post-img { min-height: 280px; }
  .featured-post-body { padding: 40px 32px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-brand img { height: 52px; }
  .nav.scrolled .nav-brand img { height: 46px; }
  .hero { padding: 110px 0 80px; }
  .values-grid,
  .nearby-grid,
  .transport-grid,
  .post-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section { padding: 70px 0; }
  .page-hero, .article-hero { padding: 130px 0 60px; min-height: auto; }
  .article-body { padding: 60px 0; }
  .article-body h2 { font-size: 1.7rem; }
  .article-pullquote { padding: 26px 22px; }
  .article-pullquote p { font-size: 1.3rem; }
  .article-cta { padding: 36px 24px; }
  .featured-post-body { padding: 32px 22px; }
  .newsletter-card { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-meta { flex-wrap: wrap; gap: 20px; padding: 18px 22px; }
  .hero-meta strong { font-size: 1.6rem; }
  .intro, .about, .features, .gallery, .owners, .location, .contact { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .about-media { height: 420px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .owners-quote { padding: 40px 28px; }
  .owners-quote p { font-size: 1.4rem; }
  .location-poi { padding: 36px 28px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .ci-label { margin-bottom: 4px; }
  .modal-dialog { padding: 48px 28px 36px; }
  .modal-body h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ===== Mobile nav drawer ===== */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-drawer.is-open {
  display: flex;
  opacity: 1;
}
.nav-drawer a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   WHATSAPP — pulsante flottante (stile plugin)
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.6s ease-out infinite;
  transition: transform 0.3s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; transform: scale(1.08); }
.wa-float-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-float-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}
@media (max-width: 720px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float-label { display: none; }
}

/* ============================================================
   SELETTORE LINGUA
   ============================================================ */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.lang-switch-btn:hover { color: var(--gold-light); }
.lang-switch-btn svg { width: 17px; height: 17px; }
.lang-switch-btn .lang-caret { width: 13px; height: 13px; transition: transform var(--transition); }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 172px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--black-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 120;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { width: 100%; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  text-align: left;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
}
.lang-menu button:hover { background: rgba(201, 169, 97, 0.12); color: var(--gold-light); }
.lang-menu button.is-active { color: var(--gold); }
.lang-menu .lang-code {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  min-width: 22px;
}
.lang-menu button.is-active .lang-code { color: var(--gold); }

@media (max-width: 1024px) {
  .lang-switch { margin-left: auto; }
}
