/* ==========================================================================
   Variabili CSS — palette, spaziature e dimensioni condivise
   ========================================================================== */
:root {
  --bg: #faf8f5;
  --bg-soft: #f3efe8;
  --card: #ffffff;
  --card-strong: #ffffff;
  --stroke: rgba(60, 50, 40, 0.12);
  --text: #2c2824;
  --muted: #5c554c;
  --muted-2: #7a7268;
  --accent: #6b8f71;
  --accent-2: #8fa88f;
  --accent-soft: rgba(107, 143, 113, 0.12);
  --shadow: 0 12px 40px rgba(60, 50, 40, 0.08);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --header-height: 72px;
  --section-offset: calc(var(--header-height) + 16px);
}

/* ==========================================================================
   Reset e stili base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.hero,
.section {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  padding-top: var(--section-offset);
  padding-bottom: 24px;
  box-sizing: border-box;
}

section[id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 15% -10%, rgba(143, 168, 143, 0.18), transparent 55%),
    radial-gradient(900px 650px at 85% 0%, rgba(210, 195, 170, 0.25), transparent 45%),
    radial-gradient(900px 650px at 50% 120%, rgba(107, 143, 113, 0.1), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

/* ==========================================================================
   Layout: container, scroll snap e sezioni full-page
   ========================================================================== */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  z-index: 999;
}

/* ==========================================================================
   Header e navigazione
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 248, 245, 0.88);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand__name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__role {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
  user-select: none;
}

button.btn {
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  border-color: rgba(107, 143, 113, 0.4);
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.18), rgba(143, 168, 143, 0.14));
  color: var(--text);
}

.btn--primary:hover {
  border-color: rgba(107, 143, 113, 0.55);
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.28), rgba(143, 168, 143, 0.22));
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: #ffffff;
  border-color: rgba(60, 50, 40, 0.2);
}

.btn--whatsapp {
  border-color: #1faa52;
  background: #25d366;
  color: #ffffff;
}

.btn--whatsapp:hover {
  border-color: #1faa52;
  background: #1faa52;
  color: #ffffff;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Hero — prima sezione above the fold
   ========================================================================== */
.hero {
  padding-left: 0;
  padding-right: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted-2);
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-highlights__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.hero-highlights strong {
  color: var(--text);
}

.hero-card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-soft);
}

.hero-meta {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--stroke);
}

.hero-meta__name {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-meta__detail {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   Sezioni interne, griglie e card
   ========================================================================== */
.section {
  padding-left: 0;
  padding-right: 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-soft), rgba(243, 239, 232, 0.5));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.section-layout--reverse .section-visual {
  order: -1;
}

.section-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon--small {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  border-radius: 12px;
}

.card-icon--small svg {
  width: 18px;
  height: 18px;
}

.cta-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cta-card__header .cta-card__kicker {
  margin: 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 16px 16px 18px;
  box-shadow: 0 4px 16px rgba(60, 50, 40, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.callout {
  margin-top: 14px;
  border: 1px solid rgba(107, 143, 113, 0.3);
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.1), rgba(143, 168, 143, 0.06));
  border-radius: var(--radius-sm);
  padding: 16px;
}

.callout--icon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent);
}

.callout-icon svg {
  width: 22px;
  height: 22px;
}

.callout__title {
  margin: 0 0 6px;
  font-weight: 700;
}

.callout__body {
  margin: 0;
  color: var(--muted);
}

.session-info {
  margin-top: 28px;
}

.section-head--nested {
  margin-bottom: 16px;
}

.section-head--nested h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}

.section-head--nested p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.session-card__label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.session-card__duration {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.session-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.session-card p:last-child {
  margin-bottom: 0;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.cta-copy h2 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.cta-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--disabled {
  opacity: 0.55;
  pointer-events: none;
}

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

/* ==========================================================================
   Form contatti e sezione Prenota
   ========================================================================== */
.form {
  margin-top: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus {
  border-color: rgba(107, 143, 113, 0.55);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.cta-card {
  border: 1px solid var(--stroke);
  background: var(--card-strong);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.cta-card__kicker {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--text);
}

.cta-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.cta-card__list li {
  display: grid;
  gap: 2px;
}

.cta-card__list span {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.cta-card__list a {
  color: var(--accent);
  font-weight: 600;
}

.cta-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.cta-card__actions .btn {
  width: 100%;
}

.cta-card__note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #2c3e44;
  color: rgba(255, 255, 255, 0.88);
  scroll-snap-align: start;
}

.footer-back-top {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px 20px;
  padding: 48px 0 36px;
}

.footer-brand__name {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.footer-brand__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col__title {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links--icons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #c4a882;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-bottom__inner p {
  margin: 0;
}

.footer-bottom__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.5;
}

.footer-bottom__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.footer-bottom__link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   Barra contatti mobile (WhatsApp + Email)
   ========================================================================== */
.mobile-dock {
  display: none;
}

/* ==========================================================================
   Pagina di conferma invio form (grazie.html)
   ========================================================================== */
.thank-you__title {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.thank-you__text {
  margin: 0;
  color: var(--muted);
}

.thank-you__actions {
  margin-top: 14px;
}

/* ==========================================================================
   Approfondimenti (post da data/posts.json)
   ========================================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.posts-empty {
  margin: 0;
  color: var(--muted);
}

.post-card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-card__date {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  font-weight: 600;
}

.post-card__title {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.post-card__excerpt {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.post-card__btn {
  align-self: flex-start;
  margin-top: 4px;
}

body.post-open {
  overflow: hidden;
}

.post-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-height) + 16px) 16px 24px;
  background: rgba(44, 40, 36, 0.45);
  overflow-y: auto;
}

.post-dialog.is-open {
  display: flex;
}

.post-dialog__panel {
  width: min(760px, 100%);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(44, 40, 36, 0.22);
  position: relative;
}

.post-dialog__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.post-dialog__close:hover {
  color: var(--text);
}

.post-dialog__date {
  margin: 0 0 8px;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.post-dialog__title {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding-right: 28px;
}

.post-dialog__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.post-dialog__body h3 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.post-dialog__body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.post-dialog__sources {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}

.post-dialog__sources h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.post-dialog__sources ul,
.post-dialog__sources ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.post-dialog__sources li {
  margin-bottom: 8px;
  line-height: 1.45;
}

.post-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* ==========================================================================
   Responsive — tablet e mobile (max-width: 920px)
   ========================================================================== */
@media (max-width: 920px) {
  :root {
    --mobile-dock-height: 76px;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .hero,
  .section {
    scroll-snap-stop: normal;
  }

  .footer-back-top {
    display: block;
    padding-top: 28px;
  }

  #prenota {
    min-height: calc(100dvh - var(--header-height));
    overflow-y: visible;
    scroll-snap-align: none;
    padding-bottom: calc(40px + var(--mobile-dock-height, 76px));
  }

  .footer-back-top__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-back-top__link:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 0 32px;
  }

  .footer-bottom__link {
    display: none;
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 16px;
    background: rgba(250, 248, 245, 0.98);
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 12px 24px rgba(60, 50, 40, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(107, 143, 113, 0.08);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .section-layout,
  .section-layout--reverse {
    grid-template-columns: 1fr;
  }

  .section-layout--reverse .section-visual {
    order: 0;
  }

  .section-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .cta {
    display: block;
  }

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

  .cta-card {
    display: none;
  }

  /* Fallback: se JS non è attivo, mostra i contatti rapidi nella pagina */
  .no-js .cta-card {
    display: block;
    margin-top: 18px;
  }

  .mobile-dock {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: #faf8f5;
    border-top: 1px solid var(--stroke);
    box-shadow: 0 -8px 24px rgba(60, 50, 40, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-dock__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.2;
    text-align: center;
    border: none;
  }

  .mobile-dock__btn--whatsapp {
    background: #2d6a6a;
    color: #ffffff;
  }

  .mobile-dock__btn--whatsapp:hover {
    background: #245656;
  }

  .mobile-dock__btn--email {
    background: #a67c52;
    color: #ffffff;
  }

  .mobile-dock__btn--email:hover {
    background: #8f6844;
  }

  .mobile-dock__btn .btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand__name {
    font-size: 1.5rem;
  }

  .footer-brand__text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
  }

  .footer-col__title {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 12px;
    font-size: 1rem;
  }

  .footer-links--icons li {
    font-size: 1rem;
    line-height: 1.55;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 calc(24px + env(safe-area-inset-bottom, 0px));
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
  }

  .footer-bottom__link {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }
}

/* ==========================================================================
   Responsive — smartphone (max-width: 720px)
   ========================================================================== */
@media (max-width: 720px) {
  :root {
    --header-height: 64px;
    --section-offset: calc(var(--header-height) + 20px);
  }

  .hero,
  .section {
    justify-content: flex-start;
    scroll-snap-stop: normal;
  }

  .grid--two,
  .grid--three {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 12px 0;
  }
  .hero,
  .section {
    padding-bottom: 16px;
  }

  #prenota textarea {
    min-height: 96px;
  }
}
