/* ============================================
   RESET & VARIABILI
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #f7f3ec;
  --color-bg-alt: #efe7d8;
  --color-surface: #ffffff;
  --color-text: #2a2420;
  --color-muted: #8a7e6d;
  --color-border: #e3d9c6;
  --color-accent: #a8532f;
  --color-accent-dark: #7d3c20;
  --color-dark: #1c1712;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-width: 1200px;
  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: 0.005em;
  line-height: 1.12;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
/* Il contenuto e' visibile di default: le classi "nascoste in attesa
   dell'animazione" si attivano SOLO se lo script e' effettivamente partito
   (html.js). Se JS non parte per qualsiasi motivo, niente resta invisibile. */
html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-fluid), transform 1s var(--ease-fluid);
}

html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease-fluid), border-color 0.5s var(--ease-fluid), padding 0.4s ease;
  padding: 8px 0;
}

.site-header.scrolled,
body:not(.has-hero) .site-header {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  transition: filter 0.4s ease;
}

.logo .logo-light { display: none; }
.logo .logo-dark { display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  position: relative;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 6px;
  transition: opacity 0.3s ease;
  color: var(--color-text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-fluid);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 12px 24px;
  font-size: 0.75rem;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--color-text);
  transition: background 0.3s ease;
}

/* ============================================
   HERO — illustrazione stile taccuino
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: radial-gradient(ellipse 1300px 900px at 50% 35%, #f6efdd 0%, #f0e6cd 55%, #e9dcbc 100%);
}

.hero-crack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 68vw);
  aspect-ratio: 3 / 4;
  z-index: 0;
  opacity: 0;
  animation: crack-in 2.2s var(--ease-fluid) 0.2s forwards;
}

.hero-crack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 38%;
  clip-path: polygon(
    50% 0%, 62% 9%, 57% 20%, 73% 27%, 67% 40%,
    82% 47%, 71% 58%, 78% 69%, 61% 76%, 66% 90%,
    47% 100%, 36% 88%, 41% 76%, 24% 69%, 31% 57%,
    16% 48%, 29% 39%, 21% 25%, 38% 19%, 31% 7%
  );
  filter: grayscale(100%) contrast(1.15);
  mix-blend-mode: multiply;
  animation: crack-zoom 22s ease-in-out infinite alternate;
}

@keyframes crack-in {
  from { opacity: 0; transform: scale(0.92) rotate(-1.5deg); }
  to { opacity: 0.5; transform: scale(1) rotate(0deg); }
}

@keyframes crack-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: min(900px, 100vw);
  height: 60vh;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(246, 239, 221, 0.9) 0%, rgba(246, 239, 221, 0.55) 45%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}

.hidden-svg {
  display: none;
}

.hero-signature {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 34vh;
  min-height: 220px;
  max-height: 340px;
  color: #362a1e;
  z-index: 1;
}

.signature-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-signature 3.6s cubic-bezier(0.65, 0, 0.35, 1) 2.6s forwards;
}

@keyframes draw-signature {
  to { stroke-dashoffset: 0; }
}

.illus-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-line 2s var(--ease-fluid) forwards;
}

.illus-hatch {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0;
  animation: fade-in-hatch 1s ease forwards;
}

.illus-reflection {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  opacity: 0;
  animation: fade-in-soft 1.4s ease forwards;
}

.illus-window {
  fill: #a8532f;
  opacity: 0;
  animation: fade-in-window 0.9s ease forwards;
}

.illus-wash {
  filter: blur(26px);
  mix-blend-mode: multiply;
  opacity: 0;
  animation: fade-in-wash 2.4s ease forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in-soft {
  to { opacity: 0.35; }
}

@keyframes fade-in-hatch {
  to { opacity: 0.55; }
}

@keyframes fade-in-window {
  to { opacity: 0.85; }
}

@keyframes fade-in-wash {
  to { opacity: 0.26; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, transparent 55%, rgba(120, 95, 60, 0.16) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  color: var(--color-text);
  padding: 0 32px;
  max-width: 900px;
}

.hero-kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  opacity: 0;
  animation: fade-up 1s var(--ease-fluid) 0.2s forwards;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 1.1s var(--ease-fluid) 0.4s forwards;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--color-text);
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fade-up 1.1s var(--ease-fluid) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1.1s var(--ease-fluid) 0.8s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  position: absolute;
  left: 36px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade-up 1s ease 2.6s forwards;
}

.hero-label-logo {
  height: 32px;
  width: auto;
}

.hero-label span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--color-text) 60%, transparent);
  z-index: 2;
  opacity: 0.5;
  animation: scroll-cue 2.2s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.25; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   PAGE BANNER (pagine interne)
   ============================================ */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.7), rgba(10, 8, 6, 0.35));
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 32px;
}

.page-banner-content .kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8cbb8;
  margin-bottom: 18px;
}

.page-banner-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

/* ============================================
   BOTTONI
   ============================================ */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid currentColor;
  transition: background 0.4s var(--ease-fluid), color 0.4s var(--ease-fluid), border-color 0.4s ease;
}

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
}

.btn-outline-dark {
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-outline-dark:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ============================================
   SEZIONI GENERICHE
   ============================================ */
.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-dark);
  color: #f2ece1;
}

.section-dark .section-header .kicker { color: #d99a72; }
.section-dark .text-muted { color: #b3a998; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.left {
  text-align: left;
}

.section-header .kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.section-narrow {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.text-muted {
  color: var(--color-muted);
}

/* ============================================
   TARGET CARDS (Coppie / Single / Business)
   ============================================ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
}

.target-card {
  background: var(--color-surface);
  padding: 56px 40px;
  text-align: center;
  transition: background 0.4s ease, transform 0.5s var(--ease-fluid);
}

.target-card:hover {
  background: var(--color-dark);
  color: #f2ece1;
  transform: translateY(-6px);
}

.target-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--color-accent);
}

.target-card .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.target-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.target-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.target-card:hover p {
  color: #cfc4b2;
}

/* ============================================
   CRACK — foto B&N ritagliata a frattura
   ============================================ */
.crack-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 32px 100px;
}

.crack-wrap {
  width: min(560px, 88vw);
  aspect-ratio: 3 / 4;
  position: relative;
}

.crack-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
  clip-path: polygon(
    50% 0%, 62% 9%, 57% 20%, 73% 27%, 67% 40%,
    82% 47%, 71% 58%, 78% 69%, 61% 76%, 66% 90%,
    47% 100%, 36% 88%, 41% 76%, 24% 69%, 31% 57%,
    16% 48%, 29% 39%, 21% 25%, 38% 19%, 31% 7%
  );
  filter: grayscale(100%) contrast(1.12);
  transition: transform 1.8s var(--ease-fluid);
}

.crack-wrap:hover .crack-media {
  transform: scale(1.05);
}

.crack-caption {
  max-width: 360px;
  text-align: center;
}

.crack-caption .kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.crack-caption p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text);
}

@media (min-width: 780px) {
  .crack-section {
    flex-direction: row;
    justify-content: center;
    gap: 72px;
    padding: 100px 32px;
  }

  .crack-caption {
    text-align: left;
  }
}

/* ============================================
   SPLIT (immagine + testo alternati)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  clip-path: inset(0 0 0 0);
}

html.js .split-media.reveal {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.3s var(--ease-fluid);
}

html.js .split-media.reveal.in-view {
  clip-path: inset(0 0 0 0%);
}

html.js .split.reverse .split-media.reveal {
  clip-path: inset(0 100% 0 0);
}

html.js .split.reverse .split-media.reveal.in-view {
  clip-path: inset(0 0% 0 0);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-fluid);
}

html.js .split-media.reveal img {
  transform: scale(1.12);
}

html.js .split-media.reveal.in-view img {
  transform: scale(1);
}

.split:hover .split-media img {
  transform: scale(1.06);
}

.split-body .kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.split-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 22px;
}

.split-body p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.feature-list {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.feature-list li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  color: var(--color-text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--color-accent);
}

.diet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.diet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.diet-badge svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   GALLERIA CAMERE
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.room-card {
  overflow: hidden;
}

.room-card .room-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-fluid);
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-card .room-body {
  padding: 24px 4px;
}

.room-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.room-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ============================================
   ICONE SERVIZI
   ============================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.icon-item {
  text-align: center;
}

.icon-item .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.icon-item .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.icon-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.icon-item p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ============================================
   INFO UTILI (cards smart)
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 36px;
}

.info-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.info-card .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.wifi-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  margin-top: 14px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
}

.wifi-field button {
  background: none;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 8px;
}

.wifi-field button:hover {
  color: var(--color-accent-dark);
}

.transport-list {
  margin-top: 8px;
}

.transport-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.transport-list li:last-child { border-bottom: none; }
.transport-list .val { color: var(--color-accent); font-weight: 500; }

.restaurant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.restaurant-card {
  border: 1px solid var(--color-border);
  padding: 24px;
  background: var(--color-surface);
}

.restaurant-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.restaurant-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.restaurant-card p {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.map-embed {
  border: 1px solid var(--color-border);
  overflow: hidden;
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(35%) contrast(1.05);
}

/* ============================================
   CONTATTI
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-details dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-top: 24px;
  margin-bottom: 6px;
}

.contact-details dt:first-child { margin-top: 0; }

.contact-details dd {
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: #cfc4b2;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-grid img {
  height: 34px;
  margin-bottom: 18px;
}

.footer-grid p {
  font-size: 0.9rem;
  color: #a89b86;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f2ece1;
  margin-bottom: 18px;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #8a7f6c;
}

/* ============================================
   BARRA SMART MOBILE (solo su cellulare)
   ============================================ */
.mobile-bar {
  display: none;
}

@media (max-width: 780px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(28, 23, 18, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 6px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #cfc4b2;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-bar .icon {
    width: 21px;
    height: 21px;
  }

  .mobile-bar .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
  }

  .mobile-bar a.active,
  .mobile-bar a:hover {
    color: #fff;
  }

  body {
    padding-bottom: 74px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .split-media { order: 0; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 320px;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-fluid);
  }

  .main-nav.aperto {
    transform: translateX(0);
  }

  .main-nav a {
    color: #f2ece1 !important;
    padding: 14px 0;
    width: 100%;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.aperto span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.aperto span:nth-child(2) { opacity: 0; }
  .nav-toggle.aperto span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .section {
    padding: 80px 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header .container {
    height: 72px;
  }

  .logo img {
    height: 32px;
  }
}
