/* ============================================================
   ImagoLogos Ghost Theme — screen.css
   Palette: Navy #0F4169 | Terracotta #C9845A | Crema #F7F3EE
   Font: Barlow Condensed (titoli) + Barlow (corpo)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  background: #F7F3EE;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- CSS Variables --- */
:root {
  --navy: #0F4169;
  --navy-dark: #0a2d4a;
  --terracotta: #C9845A;
  --cream: #F7F3EE;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #666;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(15,65,105,0.10);
  --shadow-hover: 0 8px 32px rgba(15,65,105,0.18);
  --font-title: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(15,65,105,0.18);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.site-logo img {
  height: 2.6rem;
  width: auto;
  display: block;
}
.site-logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-mobile {
  display: none;
  background: rgba(10,45,74,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile {
  display: block;
  text-align: center;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 700px;
}
.hero-title .accent { color: var(--terracotta); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 3rem;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #b8734e; transform: translateY(-1px); }
.btn-secondary {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   SECTIONS — Common
   ============================================================ */
.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--terracotta); }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ============================================================
   CHI SIAMO
   ============================================================ */
.chi-siamo { background: var(--cream); }
.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.chi-siamo-photo {
  position: relative;
}
.chi-siamo-photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.chi-siamo-photo::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius);
  z-index: -1;
}
.chi-siamo-badge {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.chi-siamo-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.chi-siamo-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
}
.chi-siamo-text p + p { margin-top: 1rem; }

/* ============================================================
   SERVIZI
   ============================================================ */
.servizi { background: var(--white); }
.servizi-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(15,65,105,0.1);
}
.servizi-tab {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.servizi-tab.active {
  color: var(--navy);
  border-bottom-color: var(--terracotta);
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}
.servizio-card {
  padding: 2rem;
  border: 1px solid rgba(15,65,105,0.08);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.servizio-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.servizio-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.servizio-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.servizio-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}
.servizio-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============================================================
   NOLEGGIO
   ============================================================ */
.noleggio {
  background: var(--navy);
  color: var(--white);
}
.noleggio .section-title { color: var(--white); }
.noleggio .section-lead { color: rgba(255,255,255,0.75); }
.noleggio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
}
.noleggio-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.noleggio-badge .check { color: var(--terracotta); font-size: 1rem; }

/* ============================================================
   COME FUNZIONA
   ============================================================ */
.come-funziona { background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.25;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.step-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

/* ============================================================
   TRATTAMENTI (Risultati sulla pelle)
   ============================================================ */
.trattamenti { background: var(--white); }
.trattamento-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.trattamento-row:last-child { margin-bottom: 0; }
.trattamento-row.reverse { direction: rtl; }
.trattamento-row.reverse > * { direction: ltr; }
.trattamento-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.trattamento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.trattamento-img:hover img { transform: scale(1.03); }
.trattamento-badge {
  display: inline-block;
  background: rgba(201,132,90,0.12);
  color: var(--terracotta);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.trattamento-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.trattamento-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}
.trattamento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trattamento-tag {
  background: rgba(15,65,105,0.07);
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

/* ============================================================
   FORM CONTATTO
   ============================================================ */
.contatto { background: var(--cream); }
.contatto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15,65,105,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,65,105,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #b8734e; transform: translateY(-1px); }
.contatto-info h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contatto-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.contatto-info-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--navy);
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.newsletter-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.newsletter-title .accent { color: var(--terracotta); }
.newsletter-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { outline: none; border-color: var(--terracotta); }
.newsletter-btn {
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #b8734e; }

/* ============================================================
   BLOG — Index
   ============================================================ */
.blog-header {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.blog-header-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.blog-header-title .accent { color: var(--terracotta); }
.blog-header-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.post-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.post-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.post-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}
.post-card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.post-card-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
}
.post-card-cta {
  margin-top: 1.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============================================================
   BLOG — Post singolo
   ============================================================ */
.post-hero {
  position: relative;
  height: clamp(240px, 45vw, 420px);
  overflow: hidden;
}
.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,65,105,0.5) 0%, rgba(15,65,105,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.25rem, 4vw, 3rem);
}
.post-hero-content { max-width: 800px; }
.post-hero-tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.post-hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.post-hero-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--font-title);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 6rem);
}
.post-excerpt-highlight {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}
.gh-content h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.1;
}
.gh-content h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.gh-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.25rem;
}
.gh-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.5rem;
  background: rgba(201,132,90,0.06);
  margin: 2rem 0;
  font-style: italic;
  color: #555;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.gh-content ul, .gh-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.25rem;
}
.gh-content li {
  margin-bottom: 0.4rem;
  color: #444;
  line-height: 1.7;
}
.gh-content img {
  border-radius: var(--radius);
  margin: 2rem 0;
}
.post-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 4rem;
}
.post-cta-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.post-cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.post-back {
  display: block;
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer-brand img { height: 2.8rem; margin-bottom: 1.25rem; }
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}
.footer-col-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PAGE — Generica
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}
.page-header-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-terracotta { color: var(--terracotta); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.divider {
  width: 3rem;
  height: 3px;
  background: var(--terracotta);
  margin: 1.5rem 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .chi-siamo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .chi-siamo-photo { max-width: 420px; margin: 0 auto; }
  .contatto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trattamento-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .trattamento-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .noleggio-badges { flex-direction: column; }
  .post-card-meta { flex-direction: column; gap: 0.25rem; }
}

/* ============================================================
   KOENIG EDITOR — classi obbligatorie Ghost
   ============================================================ */

/* Larghezze immagini Koenig */
.gh-content .kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 2rem calc(50% - 42.5vw);
}

.gh-content .kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Card generiche */
.kg-card { margin: 2rem 0; }
.kg-card figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Immagine */
.kg-image-card img { width: 100%; border-radius: var(--radius); }

/* Gallery */
.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* Embed / Video */
.kg-embed-card { display: flex; flex-direction: column; align-items: center; }
.kg-embed-card iframe { max-width: 100%; }

/* Bookmark */
.kg-bookmark-card { border: 1px solid #e5e5e5; border-radius: var(--radius); overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { flex: 1; padding: 1rem; }
.kg-bookmark-title { font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.kg-bookmark-description { font-size: 0.9rem; color: var(--text-muted); }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* Button */
.kg-button-card { display: flex; justify-content: center; margin: 2rem 0; }
.kg-btn { display: inline-block; padding: 0.75rem 2rem; background: var(--navy); color: #fff; border-radius: var(--radius); font-family: var(--font-title); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: background 0.2s; }
.kg-btn:hover { background: var(--terracotta); }

/* Callout */
.kg-callout-card { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; background: rgba(15,65,105,0.06); border-left: 4px solid var(--navy); border-radius: var(--radius); margin: 2rem 0; }
.kg-callout-emoji { font-size: 1.5rem; }
.kg-callout-text { font-size: 0.95rem; }

/* Toggle */
.kg-toggle-card { border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1rem 0; }
.kg-toggle-heading { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; }
.kg-toggle-content { margin-top: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }

/* NFT / Product card */
.kg-product-card { border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.kg-product-card-image { max-width: 200px; margin: 0 auto 1rem; }

/* Header card */
.kg-header-card { padding: 4rem 2rem; text-align: center; background: var(--navy); color: #fff; border-radius: var(--radius); }
.kg-header-card h2 { font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; text-transform: uppercase; }
.kg-header-card p { margin-top: 1rem; opacity: 0.8; }

/* Audio */
.kg-audio-card { border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 1rem; }
.kg-audio-player { width: 100%; }

/* Video */
.kg-video-card { position: relative; }
.kg-video-card video { width: 100%; border-radius: var(--radius); }

/* File */
.kg-file-card { border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 1rem 1.25rem; }
.kg-file-card-container { display: flex; align-items: center; gap: 1rem; }
.kg-file-card-title { font-weight: 600; color: var(--navy); }
.kg-file-card-caption { font-size: 0.85rem; color: var(--text-muted); }
