/*
Theme Name:   ZariTuals
Description:  Landing Page — Natural Beauty by Zarina
Version:      1.0.0
Text Domain:  zarituals
*/

/* ================================================================
   IMPORT FONT
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ================================================================
   DESIGN TOKENS — palette esatta dal prompt
   ================================================================ */
:root {
  /* Sfondi */
  --zt-lino:      #FAF7F4;
  --zt-sabbia:    #F0E8DF;
  --zt-peach:     #E8C4A8;
  --zt-peach-lt:  #F2D9C4;

  /* Testo */
  --zt-corteccia: #3D2B1F;
  --zt-terra:     #8B6B4A;
  --zt-argilla:   #C4A882;

  /* Accenti */
  --zt-olive:     #6B7C3E;
  --zt-sunset:    #D4703A;
  --zt-sunrise:   #E8A857;

  /* Gradiente CTA */
  --zt-glow: linear-gradient(135deg, #D4703A 0%, #E8A857 100%);

  /* Forme */
  --radius-pill: 100px;
  --radius-card: 20px;
  --radius-blob: 60% 40% 55% 45% / 55% 60% 40% 45%;

  /* Font */
  --zt-serif:   'EB Garamond', Georgia, serif;
  --zt-sans:    'DM Sans', system-ui, sans-serif;
  --zt-display: 'Merriweather Sans', sans-serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--zt-sans);
  color: var(--zt-terra);
  background: var(--zt-lino);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }

/* Tipografia — mobile-first dal prompt */
h1 {
  font-size: clamp(38px, 9vw, 80px);
  font-family: var(--zt-display);
  font-weight: 400;
  line-height: 1.2;
}
h2 {
  font-size: clamp(30px, 7vw, 58px);
  font-family: var(--zt-display);
  font-weight: 400;
  line-height: 1.2;
}
p { font-size: 17px; line-height: 1.75; color: var(--zt-terra); }
input { font-size: 16px; } /* evita zoom automatico su iOS */

/* ================================================================
   HEADER FISSO
   ================================================================ */
.zt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px clamp(16px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  background: linear-gradient(to bottom, rgba(20,12,6,0.55) 0%, transparent 100%);
}
.zt-header.scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}

/* Brand "Ciao, sono Zarina!" */
.zt-header__brand a {
  font-family: var(--zt-serif);
  font-size: clamp(17px, 4vw, 21px);
  font-weight: 400;
  color: rgba(250, 247, 244, 0.95);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.zt-header__brand a em {
  font-style: italic;
  color: var(--zt-peach);
}
.zt-header.scrolled .zt-header__brand a       { color: var(--zt-corteccia); }
.zt-header.scrolled .zt-header__brand a em    { color: var(--zt-sunset); }

/* Nav desktop — visibile da 768px */
.zt-header__nav { display: none; gap: 4px; }
@media (min-width: 768px) { .zt-header__nav { display: flex; } }

.zt-header__nav a {
  font-family: var(--zt-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 244, 0.85);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.zt-header__nav a:hover { background: rgba(250, 247, 244, 0.15); }
.zt-header.scrolled .zt-header__nav a { color: var(--zt-terra); }
.zt-header.scrolled .zt-header__nav a:hover { background: var(--zt-sabbia); color: var(--zt-corteccia); }

/* CTA desktop */
.zt-header__cta { display: none; font-size: 11px; padding: 10px 22px; }
@media (min-width: 768px) { .zt-header__cta { display: inline-flex; } }

/* Hamburger — 3 linee, visible solo mobile */
.zt-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) { .zt-hamburger { display: none; } }

.zt-hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(250, 247, 244, 0.9);
  border-radius: 2px;
  transition: background 0.3s;
}
.zt-header.scrolled .zt-hamburger span { background: var(--zt-corteccia); }

/* Overlay drawer */
.zt-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 20, 13, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.zt-drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* Panel drawer */
.zt-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: min(320px, 90vw);
  background: var(--zt-lino);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.zt-drawer.open { transform: translateX(0); }

.zt-drawer__close {
  align-self: flex-end;
  background: var(--zt-sabbia);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--zt-corteccia);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.zt-drawer__close:hover { background: var(--zt-argilla); }

.zt-drawer__nav { display: flex; flex-direction: column; gap: 4px; }

.zt-drawer__link {
  font-family: var(--zt-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--zt-corteccia);
  padding: 14px 8px;
  border-bottom: 0.5px solid rgba(196, 168, 130, 0.2);
  transition: color 0.3s;
}
.zt-drawer__link:hover { color: var(--zt-sunset); }

/* ================================================================
   BOTTONI
   ================================================================ */
.zt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--zt-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
  width: 100%;
  text-align: center;
}
@media (min-width: 640px) { .zt-btn { width: auto; } }

.zt-btn:hover { transform: translateY(-2px); }

.zt-btn--sunset {
  background: var(--zt-glow);
  color: var(--zt-corteccia);
  box-shadow: 0 4px 20px rgba(212, 112, 58, 0.35);
}
.zt-btn--sunset:hover { box-shadow: 0 8px 28px rgba(212, 112, 58, 0.45); }

.zt-btn--outline {
  background: transparent;
  color: var(--zt-corteccia);
  border: 1.5px solid var(--zt-corteccia);
}
.zt-btn--outline:hover {
  background: var(--zt-corteccia);
  color: var(--zt-lino);
}

.zt-btn--glass {
  background: rgba(250, 247, 244, 0.12);
  color: var(--zt-lino);
  border: 0.5px solid rgba(250, 247, 244, 0.3);
  backdrop-filter: blur(8px);
}

/* ================================================================
   OVERLINE
   ================================================================ */
.zt-overline {
  display: block;
  font-family: var(--zt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zt-olive);
  margin-bottom: 10px;
}

/* ================================================================
   SEZIONE 2 — HERO
   ================================================================ */
.zt-hero {
  position: relative;
  min-height: 85vh;
  width: 100%;
  overflow: hidden;
}
.zt-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.zt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.zt-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(61, 43, 31, 0.3) 60%,
    rgba(61, 43, 31, 0.75) 100%
  );
}
.zt-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: clamp(24px, 6vw, 48px);
  padding-bottom: clamp(80px, 12vh, 110px);
  max-width: 90%;
  text-align: left;
}
@media (min-width: 768px) {
  .zt-hero__content { max-width: 60%; }
}
@media (max-width: 767px) {
  .zt-hero { min-height: 98vh; }
}
.zt-hero__title {
  font-family: var(--zt-display);
  font-size: clamp(36px, 9vw, 70px);
  font-weight: 400;
  color: #FAF7F4;
  line-height: 1.2;
}
.zt-hero__title em {
  font-style: normal;
  color: var(--zt-peach-lt);
}

/* ================================================================
   SEZIONE 3 — CITAZIONE (sfondo pesca)
   ================================================================ */
.zt-quote {
  background: var(--zt-peach);
  padding: clamp(64px, 11vw, 100px) clamp(24px, 6vw, 48px);
  text-align: center;
}
.zt-quote__text {
  font-family: var(--zt-serif);
  font-size: clamp(18px, 4.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--zt-corteccia);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 16px;
  border: none;
  padding: 0;
}
.zt-quote__text strong { font-weight: 400; }
.zt-quote__author {
  font-family: var(--zt-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--zt-terra);
  font-style: normal;
  display: block;
}

/* ================================================================
   SEZIONE 4 — BIO ZARINA
   ================================================================ */
.zt-bio {
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 32px) clamp(56px, 9vw, 88px);
  background: var(--zt-sabbia);
}
.zt-bio__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
}
.zt-bio__image {
  position: absolute;
  inset: 0;
}
.zt-bio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.zt-bio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 13, 0.88) 0%,
    rgba(30, 20, 13, 0.4) 50%,
    transparent 100%
  );
}
.zt-bio__content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}
.zt-bio__title {
  font-family: var(--zt-display);
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 400;
  color: #FAF7F4;
  line-height: 1.2;
  margin-bottom: 12px;
}
.zt-bio__title em { font-style: normal; color: var(--zt-peach-lt); }

.zt-bio__text {
  font-family: var(--zt-sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(240, 232, 223, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 440px;
}
.zt-bio__stats {
  display: flex;
  gap: clamp(16px, 4vw, 32px);
  flex-wrap: wrap;
}
.zt-bio__stat-num {
  display: block;
  font-family: var(--zt-serif);
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 300;
  color: #FAF7F4;
  line-height: 1;
}
.zt-bio__stat-label {
  display: block;
  font-family: var(--zt-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.8);
  margin-top: 3px;
}

/* ================================================================
   SEZIONE 5 — I 4 PILASTRI
   ================================================================ */
.zt-pillars {
  background: var(--zt-lino);
  padding: clamp(72px, 11vw, 112px) clamp(16px, 5vw, 40px) clamp(80px, 12vw, 120px);
}
.zt-pillars__header {
  margin-bottom: clamp(28px, 5vw, 48px);
}
.zt-pillars__title {
  font-family: var(--zt-display);
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 400;
  color: var(--zt-corteccia);
  line-height: 1.2;
  margin-bottom: 14px;
}
.zt-pillars__title em { font-style: normal; }
.zt-pillars__intro {
  font-family: var(--zt-sans);
  font-size: 17px;
  font-weight: 300;
  color: var(--zt-terra);
  line-height: 1.75;
  max-width: 480px;
}

/* Grid: 1 col mobile → 2 col desktop */
.zt-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .zt-pillars__grid { grid-template-columns: 1fr 1fr; }
}

.zt-pillar-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FBF0E9 100%);
  border-radius: var(--radius-card);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zt-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 112, 58, 0.12);
}
.zt-pillar-card__num {
  display: block;
  font-family: var(--zt-serif);
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--zt-sabbia);
  line-height: 1;
  margin-bottom: 8px;
}
.zt-pillar-card__label {
  display: block;
  font-family: var(--zt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zt-olive);
  margin-bottom: 8px;
}
.zt-pillar-card__desc {
  font-family: var(--zt-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--zt-terra);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   SEZIONE 6 — PRICING
   ================================================================ */
.zt-pricing {
  background: var(--zt-corteccia);
  padding: clamp(72px, 11vw, 112px) clamp(16px, 5vw, 40px) clamp(80px, 12vw, 120px);
}
.zt-pricing__header {
  margin-bottom: 32px;
}
.zt-pricing__title {
  font-family: var(--zt-display);
  font-size: clamp(32px, 8vw, 58px);
  font-weight: 400;
  color: var(--zt-lino);
  line-height: 1.2;
  margin-bottom: 12px;
}
.zt-pricing__title em { color: var(--zt-sunrise); font-style: normal; }
.zt-pricing__header > p { color: rgba(240, 232, 223, 0.7); max-width: 480px; }
.zt-pricing__header .zt-overline { color: var(--zt-sunrise); }

/* Pacchetti — mobile verticali, desktop 3 colonne */
.zt-pkg {
  border-radius: var(--radius-card);
  padding: clamp(22px, 4vw, 32px);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.zt-pkg--base {
  background: var(--zt-lino);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.zt-pkg--base:hover {
  border-color: var(--zt-sunset);
  box-shadow: 0 8px 32px rgba(212, 112, 58, 0.2);
  transform: translateY(-3px);
}
.zt-pkg--featured {
  background: linear-gradient(160deg, #2A1F14 0%, #4A2E1A 100%);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.zt-pkg--featured:hover {
  border-color: var(--zt-sunset);
  box-shadow: 0 8px 32px rgba(212, 112, 58, 0.2);
  transform: translateY(-3px);
}
.zt-pkg--premium {
  background: linear-gradient(160deg, #1E140D 0%, #3D2B1F 100%);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.zt-pkg--premium:hover {
  border-color: var(--zt-sunset);
  box-shadow: 0 8px 32px rgba(212, 112, 58, 0.2);
  transform: translateY(-3px);
}

@media (min-width: 900px) {
  .zt-pricing__packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .zt-pkg { margin-bottom: 0; }
}

.zt-pkg__badge {
  font-family: var(--zt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zt-sunrise);
  margin-bottom: 10px;
  display: block;
}
.zt-pkg__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.zt-pkg__name {
  font-family: var(--zt-display);
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.zt-pkg--base     .zt-pkg__name { color: var(--zt-corteccia); }
.zt-pkg--featured .zt-pkg__name,
.zt-pkg--premium  .zt-pkg__name { color: var(--zt-lino); }

.zt-pkg__tier {
  font-family: var(--zt-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.zt-pkg--base     .zt-pkg__tier { color: var(--zt-argilla); }
.zt-pkg--featured .zt-pkg__tier,
.zt-pkg--premium  .zt-pkg__tier { color: rgba(196, 168, 130, 0.6); }

.zt-pkg__price {
  font-family: var(--zt-serif);
  font-size: clamp(32px, 7vw, 44px);
  font-weight: 300;
  line-height: 1;
}
.zt-pkg--base     .zt-pkg__price { color: var(--zt-corteccia); }
.zt-pkg--featured .zt-pkg__price,
.zt-pkg--premium  .zt-pkg__price { color: var(--zt-lino); }

.zt-pkg__divider {
  height: 0.5px;
  background: rgba(196, 168, 130, 0.25);
  margin: 16px 0;
}
.zt-pkg__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.zt-pkg__features li {
  font-family: var(--zt-sans);
  font-size: 16px;
  font-weight: 300;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(196, 168, 130, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zt-pkg__features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.zt-pkg--base     .zt-pkg__features li { color: var(--zt-terra); }
.zt-pkg--base     .zt-pkg__features li::before { background: var(--zt-olive); }
.zt-pkg--featured .zt-pkg__features li,
.zt-pkg--premium  .zt-pkg__features li { color: rgba(240, 232, 223, 0.7); }
.zt-pkg--featured .zt-pkg__features li::before,
.zt-pkg--premium  .zt-pkg__features li::before { background: var(--zt-sunrise); }

.zt-pkg__note {
  font-family: var(--zt-sans);
  font-size: 13px;
  color: var(--zt-argilla);
  text-align: center;
  margin-top: 10px;
  opacity: 0.7;
}

/* Garanzia globale */
.zt-guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(250, 247, 244, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}
.zt-guarantee__icon { font-size: 28px; flex-shrink: 0; }
.zt-guarantee strong {
  display: block;
  font-family: var(--zt-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--zt-lino);
  margin-bottom: 4px;
  font-weight: 300;
}
.zt-guarantee p {
  font-family: var(--zt-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.75);
  margin: 0;
}

/* ================================================================
   SEZIONE 7 — FOOTER
   ================================================================ */
.zt-footer {
  background: var(--zt-corteccia);
  padding: clamp(40px, 7vw, 64px) clamp(16px, 5vw, 40px) clamp(24px, 4vw, 40px);
}
.zt-footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid rgba(196, 168, 130, 0.15);
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .zt-footer__top { flex-direction: row; justify-content: space-between; }
}
.zt-footer__logo {
  font-family: var(--zt-serif);
  font-size: 24px;
  font-weight: 300;
  color: rgba(240, 232, 223, 0.9);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.zt-footer__logo em { font-style: italic; }
.zt-footer__tagline {
  font-family: var(--zt-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.5);
}
.zt-footer__info p {
  font-family: var(--zt-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.6);
  margin-bottom: 4px;
}
.zt-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(196, 168, 130, 0.1);
}
.zt-footer__nav a {
  font-family: var(--zt-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.zt-footer__nav a:hover { color: rgba(240, 232, 223, 0.9); }
.zt-footer__bottom p {
  font-family: var(--zt-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.4);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ================================================================
   SEZIONI HOOK / CTA INTERLOCUTORIE
   ================================================================ */
.zt-hook {
  padding: clamp(48px, 9vw, 96px) clamp(20px, 6vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zt-hook__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Varianti colore sfondo */
.zt-hook--peach { background: var(--zt-peach); }
.zt-hook--dark  { background: var(--zt-corteccia); }
.zt-hook--sand  { background: var(--zt-sabbia); }

/* Overline */
.zt-hook__overline {
  display: block;
  font-family: var(--zt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.zt-hook--peach .zt-hook__overline { color: var(--zt-corteccia); opacity: 0.7; }
.zt-hook--dark  .zt-hook__overline { color: var(--zt-sunrise); }
.zt-hook--sand  .zt-hook__overline { color: var(--zt-olive); }

/* Titolo */
.zt-hook__title {
  font-family: var(--zt-display);
  font-size: clamp(28px, 6.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.zt-hook--peach .zt-hook__title { color: var(--zt-corteccia); }
.zt-hook--dark  .zt-hook__title { color: var(--zt-lino); }
.zt-hook--sand  .zt-hook__title { color: var(--zt-corteccia); }

/* Parola in evidenza — corsivo + colore accento */
.zt-hook__title em { font-style: italic; }
.zt-hook--peach .zt-hook__title em { color: var(--zt-sunset); }
.zt-hook--dark  .zt-hook__title em { color: var(--zt-sunrise); }
.zt-hook--sand  .zt-hook__title em { color: var(--zt-sunset); }

/* Corpo testo */
.zt-hook__text {
  font-family: var(--zt-sans);
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}
.zt-hook--peach .zt-hook__text { color: var(--zt-corteccia); opacity: 0.85; }
.zt-hook--dark  .zt-hook__text { color: rgba(240,232,223,0.8); }
.zt-hook--sand  .zt-hook__text { color: var(--zt-terra); }

/* Bottone CTA — inline-flex per centrarlo correttamente */
.zt-hook__cta {
  display: inline-flex;
}

/* Blob decorativo di sfondo per dare profondità */
.zt-hook__blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.zt-hook--peach .zt-hook__blob {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,112,58,0.12) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.zt-hook--dark .zt-hook__blob {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,168,87,0.1) 0%, transparent 70%);
  bottom: -140px; left: -120px;
}

/* ================================================================
   ANIMAZIONI SCROLL REVEAL
   ================================================================ */
.zt-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.zt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.zt-reveal-delay-1 { transition-delay: 0.1s; }
.zt-reveal-delay-2 { transition-delay: 0.2s; }
.zt-reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================================
   ACCESSIBILITÀ
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--zt-sunset);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
