/* ================================================================
   AGRITURISMO BELVEDERE
   Palette · sage #7a8d6e · terracotta #b86a4d · beige #f0e6d6
   ================================================================ */

:root {
  --sage:       #7a8d6e;
  --sage-dark:  #5d6f54;
  --sage-deep:  #3d4a37;
  --terracotta: #b86a4d;
  --terracotta-dark: #8e4f38;
  --beige:      #f0e6d6;
  --beige-dark: #d9cdb8;
  --cream:      #faf6ef;
  --ink:        #2d2620;
  --ink-soft:   #5a4f44;
  --line:       #e3d9c6;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1700px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

* { 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);
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(48px, 8.5vw, 112px);
  line-height: 0.98;
  font-weight: 500;
}
h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
}
h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}
h4 {
  font-size: clamp(18px, 1.6vw, 22px);
}

p { margin: 0 0 1em 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-block;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); padding-top: 10px; padding-bottom: 10px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
}
.brand-logo {
  display: block;
  width: 230px;
  height: auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  padding: 10px 20px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terracotta) !important; color: var(--cream) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) 56px;
  overflow: hidden;
}
.ph.ph-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
  padding: 32px;
  align-items: flex-start;
  border-radius: 0;
  border: 0;
}
.ph-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,38,32,0.35) 0%, rgba(45,38,32,0.15) 40%, rgba(45,38,32,0.78) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  color: var(--cream);
}
.hero .eyebrow { color: var(--beige); margin-bottom: 18px; }
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero h1 em { color: #e8a98c; }
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  font-weight: 400;
  max-width: 640px;
  color: var(--beige);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  position: relative;
  z-index: 3;
  display: flex;
  gap: clamp(30px, 6vw, 80px);
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(240, 230, 214, 0.25);
  color: var(--beige);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: var(--cream);
}
.hero-meta span:last-child {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(240, 230, 214, 0.5); }
.btn-ghost:hover { background: rgba(240, 230, 214, 0.1); border-color: var(--cream); }
.btn-block { width: 100%; }

/* ===== Sections ===== */
.section {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-alt {
  background: var(--beige);
  max-width: none;
  margin: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section-alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.section-dark {
  background: var(--sage-deep);
  color: var(--beige);
  max-width: none;
  margin: 0;
}
.section-dark > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 880px;
}
.section-head .eyebrow { color: var(--terracotta); }
.section-intro {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 8px 0 0;
}
.section-head-light h2 { color: var(--cream); }
.section-head-light .section-intro { color: var(--beige); }

/* ===== Photo Placeholders ===== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--beige) 0,
      var(--beige) 16px,
      var(--beige-dark) 16px,
      var(--beige-dark) 17px
    );
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  gap: 10px;
  overflow: hidden;
  border-radius: var(--radius);
}
.ph::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px dashed var(--line);
  background-image:
    linear-gradient(45deg, transparent 45%, var(--ink-soft) 45%, var(--ink-soft) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--ink-soft) 45%, var(--ink-soft) 55%, transparent 55%);
  opacity: 0.5;
}
.ph-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.ph-desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 90%;
}

.ph-hero .ph-tag { font-size: 12px; background: rgba(250, 246, 239, 0.92); z-index: 3; position: relative; }
.ph-hero .ph-desc {
  font-size: 13px;
  color: var(--ink);
  background: rgba(250, 246, 239, 0.85);
  padding: 6px 10px;
  border-radius: 3px;
  z-index: 3;
  position: relative;
}

/* ===== Real photo override =====
   Add `has-img` to a .ph block and put <img class="ph-img"> inside */
.ph.has-img {
  background: none;
  padding: 0;
  border-color: var(--line);
}
.ph.has-img::before { display: none; }
.ph.has-img > .ph-tag,
.ph.has-img > .ph-desc { display: none; }
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Section-dark photos: drop the dark stripe background */
.section-dark .ph.has-img { background: none; border-color: rgba(240, 230, 214, 0.15); }

.ph-portrait { aspect-ratio: 4 / 5; }
.ph-room { aspect-ratio: 4 / 3; }
.ph-exp { aspect-ratio: 1 / 1; }
.ph-meal { aspect-ratio: 4 / 3; }

/* ===== Chi siamo ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.story-text .section-head { margin-bottom: 32px; max-width: none; }
.story-text .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
  font-style: italic;
}
.story-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.story-text strong { color: var(--ink); font-weight: 500; }

.story-aside { display: flex; flex-direction: column; gap: 24px; }
.award {
  background: var(--sage);
  color: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
}
.award-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.award-title {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  margin: 8px 0 12px;
  line-height: 1;
}
.award p { margin: 0; font-size: 14px; line-height: 1.5; }
.award strong { color: var(--cream); font-weight: 500; }

.timeline {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tl-item {
  background: var(--cream);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-year {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--terracotta);
  font-weight: 500;
  font-style: italic;
}
.tl-text { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.tl-text em { color: var(--ink); font-style: italic; }

/* ===== Camere ===== */
.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.room-suite { grid-column: span 1; }
.room {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.room-suite .ph-room { aspect-ratio: 4 / 3; }
.room-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.room-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.room-head .amp { font-style: italic; color: var(--terracotta); font-weight: 400; }
.room-size {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.room-body > p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 0; }
.room-body strong { color: var(--ink); font-weight: 500; }
.room-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-feats li {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--beige);
  color: var(--ink-soft);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.room-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s, color 0.2s;
}
.room-link:hover { color: var(--terracotta-dark); }
.rooms-foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  text-align: center;
}
.rooms-foot strong { font-style: normal; color: var(--ink); font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: 0.02em; }

/* ===== Esperienze ===== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exp h3 { margin-top: 8px; }
.exp p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 0; }
.exp strong { color: var(--ink); font-weight: 500; }

/* ===== Cucina ===== */
.section-dark .ph {
  background:
    repeating-linear-gradient(
      45deg,
      #4a5841 0,
      #4a5841 16px,
      #404e38 16px,
      #404e38 17px
    );
  border-color: rgba(240, 230, 214, 0.15);
}
.section-dark .ph-tag { background: var(--cream); border-color: transparent; }
.section-dark .ph-desc { color: var(--beige); opacity: 0.85; }
.section-dark .ph::before { background: rgba(250, 246, 239, 0.1); border-color: rgba(240, 230, 214, 0.2); }

.cucina-grid { display: flex; flex-direction: column; gap: 64px; }
.meal {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.meal-reverse { direction: rtl; }
.meal-reverse > * { direction: ltr; }
.meal-body { display: flex; flex-direction: column; gap: 16px; }
.meal-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a98c;
}
.meal h3 { color: var(--cream); font-size: clamp(30px, 3vw, 40px); }
.meal-body p { color: var(--beige); font-size: 16px; line-height: 1.7; margin: 0; }
.meal-note {
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px !important;
  color: #c9b896 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(240, 230, 214, 0.2);
}

.prodotti {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(240, 230, 214, 0.2);
}
.prodotti h4 {
  color: var(--cream);
  margin-bottom: 24px;
  font-style: italic;
}
.prodotti-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.prodotti-list li {
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(240, 230, 214, 0.25);
  border-radius: 999px;
  color: var(--beige);
  letter-spacing: 0.02em;
}

/* ===== Dove siamo ===== */
.dove-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
}
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}
.map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.map-link:hover { background: var(--ink); color: var(--cream); }

.dove-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0;
}
.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.info-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

/* ===== Contatti ===== */
.contatti-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contatti-intro h2 { margin: 18px 0 16px; }
.contatti-intro > p { color: var(--ink-soft); font-size: 16px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.contact-list span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.form {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form .row:has(.field-small) { grid-template-columns: 1fr 1fr 0.6fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}
.field textarea { resize: vertical; font-family: var(--sans); }

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checkbox input { margin-top: 3px; accent-color: var(--sage); }
.checkbox a { color: var(--terracotta); }

.form-note {
  margin: 0;
  padding: 14px 18px;
  background: var(--sage);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--beige);
  padding: 80px var(--gutter) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.6fr;
  gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand-mark { background: var(--terracotta); color: var(--cream); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin: 0; opacity: 0.85; }
.footer-brand strong { color: var(--cream); font-weight: 500; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--beige);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { color: var(--cream); opacity: 1; }
.footer-col p { font-size: 14px; line-height: 1.6; margin: 0; opacity: 0.85; }
.footer-col strong { color: var(--cream); font-weight: 500; }

.footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9b896;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-eu p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px 0;
  opacity: 0.8;
}
.footer-eu-meta { opacity: 0.6 !important; font-size: 11.5px !important; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(240, 230, 214, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.65;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta {
    margin-top: 12px;
    border-radius: 999px;
    text-align: center;
    border-bottom: 0 !important;
  }
  .nav-toggle { display: flex; }

  .story-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: 1fr; }
  .room-suite { grid-column: span 1; }
  .room-suite .ph-room { aspect-ratio: 4 / 3; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .meal, .meal-reverse { grid-template-columns: 1fr; direction: ltr; }
  .dove-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 360px; }
  .contatti-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-eu { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .hero-meta { gap: 24px; padding-top: 28px; margin-top: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .timeline { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .form .row:has(.field-small) { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-eu { grid-column: span 1; }
  .contact-list li { flex-direction: column; gap: 4px; align-items: flex-start; }
  .brand-sub { display: none; }
}

@media (max-width: 380px) {
  h1 { font-size: 44px; }
}

/* ================================================================
   RESTRUCTURE ADDITIONS — text link, section foot, exp-4, territorio
   ================================================================ */
.text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.text-link:hover { color: var(--terracotta-dark); }

.section-foot { margin-top: 56px; display: flex; justify-content: center; }

/* Esperienze — 4 colonne */
.exp-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Territorio */
.territorio-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.territorio-text .lead {
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
}
.territorio-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.78; }
.territorio-text strong { color: var(--ink); font-weight: 500; }
.ph-terr-tall { aspect-ratio: 4 / 5; }

.territorio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.terr-fig { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ph-terr { aspect-ratio: 3 / 2; }
.terr-fig figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .exp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .territorio-feature { grid-template-columns: 1fr; }
  .territorio-gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .exp-grid-4 { grid-template-columns: 1fr; }
  .territorio-gallery { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
