:root {
  --paper: #fffaf4;
  --cream: #f5eadf;
  --blush: #f3dce2;
  --rose: #b75b72;
  --rose-dark: #8f334f;
  --plum: #38172d;
  --ink: #2f1c28;
  --muted: #6f5262;
  --olive: #7c8767;
  --gold: #c99d5c;
  --line: rgba(143, 51, 79, 0.18);
  --white: #fffefb;
  --shadow: 0 22px 60px rgba(56, 23, 45, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
.brand,
.quote,
.serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(3.1rem, 8vw, 7.3rem);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  letter-spacing: -0.025em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

p {
  margin: 0 0 18px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.top-note {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.86);
  padding: 9px 20px;
  text-align: center;
  font-size: 0.82rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  color: var(--plum);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--rose-dark);
  font-family: Inter, sans-serif;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4a2c3b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navlinks a {
  padding: 10px 0;
}

.navlinks a:hover {
  color: var(--rose-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px;
  white-space: nowrap;
}

.language-switch a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.language-switch a.active {
  background: var(--plum);
  color: #fff;
}

.btn,
button.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 14px 32px rgba(143, 51, 79, 0.24);
  color: #fff;
  cursor: pointer;
  font: 900 0.8rem/1 Inter, sans-serif;
  letter-spacing: 0.05em;
  padding: 15px 24px;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  box-shadow: 0 18px 38px rgba(143, 51, 79, 0.28);
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--rose-dark);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--plum);
  cursor: pointer;
  font-size: 2rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--plum);
  font-weight: 800;
}

.mobile-menu .language-switch {
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.9) 43%, rgba(255, 250, 244, 0.22) 100%),
    url("../img/donna-cammino-ulivi.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0), var(--paper));
  pointer-events: none;
}

.hero-grid,
.split,
.bonus-grid,
.footer-grid {
  display: grid;
  gap: 46px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.bonus-grid,
.footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sub {
  max-width: 780px;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.2;
}

.lead,
.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 13px;
}

.book-frame {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  background: rgba(255, 254, 251, 0.72);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.book-frame img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(56, 23, 45, 0.21);
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.82);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof {
  min-height: 154px;
  border-right: 1px solid var(--line);
  padding: 28px;
  text-align: center;
}

.proof:last-child {
  border-right: 0;
}

.proof strong {
  display: block;
  color: var(--plum);
  font-size: 1.02rem;
}

.proof p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ico {
  color: var(--rose-dark);
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 13px;
}

.section {
  padding: 88px 0;
}

.soft-bg {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 157, 92, 0.18), transparent 34%),
    linear-gradient(180deg, var(--paper), #f7e5e3);
}

.center {
  text-align: center;
}

.center .lead {
  margin-right: auto;
  margin-left: auto;
}

.cards,
.blog-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

.cards,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.panel,
.post,
.note,
.article-card {
  border: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.78);
  box-shadow: 0 18px 48px rgba(56, 23, 45, 0.07);
}

.card,
.panel,
.article-card {
  border-radius: 26px;
  padding: 30px;
}

.panel {
  padding: 42px;
  box-shadow: var(--shadow);
}

.card p,
.article-card p,
.panel p {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
}

.check {
  flex: 0 0 auto;
  color: var(--rose-dark);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.phase {
  min-height: 196px;
  border-right: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.72);
  padding: 28px;
}

.phase:last-child {
  border-right: 0;
}

.phase strong {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase span {
  display: block;
  color: var(--plum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.phase p {
  margin-top: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 88px 0 62px;
  background:
    radial-gradient(circle at top right, rgba(201, 157, 92, 0.22), transparent 36%),
    linear-gradient(180deg, var(--paper), #f8e7df);
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article h1 {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
}

.article h2 {
  margin-top: 46px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.06rem;
}

.article ul {
  display: grid;
  gap: 10px;
  list-style: disc;
  margin: 10px 0 24px 1.2rem;
  padding: 0;
}

.article-image {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(56, 23, 45, 0.08);
  margin: 34px 0;
}

.article-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.article-image figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 16px 18px;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.bio-fact {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 254, 251, 0.78);
  padding: 20px;
}

.bio-fact strong {
  display: block;
  color: var(--rose-dark);
  margin-bottom: 6px;
}

.note {
  border-left: 5px solid var(--rose);
  border-radius: 0 20px 20px 0;
  margin: 30px 0;
  padding: 20px 24px;
  color: var(--muted);
}

.quote {
  max-width: 940px;
  margin: 0 auto;
  color: var(--plum);
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-style: italic;
  text-align: center;
}

.bonus {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 0.78)),
    url("../img/retrocopertina-menopausa.png") center / cover no-repeat;
}

.form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.form input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: 600 1rem/1 Inter, sans-serif;
  padding: 15px 18px;
}

.lead-form {
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font: 800 0.78rem/1.2 Inter, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
}

.consent-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--rose-dark);
}

.consent a,
.disclaimer a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(420px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 254, 251, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 18px;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 12px 16px;
}

.disclaimer {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 254, 251, 0.74);
  color: #775c6b;
  font-size: 0.9rem;
  margin-top: 22px;
  padding: 16px 18px;
}

.post {
  overflow: hidden;
  border-radius: 24px;
}

.post img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.post div {
  padding: 24px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 251, 0.78);
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.cat {
  display: block;
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.74);
  padding: 54px 0 32px;
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer p {
  margin-bottom: 8px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .top-note {
    font-size: 0.76rem;
  }

  .navlinks,
  .topbar .nav > .btn,
  .topbar .nav > .language-switch {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .topbar.is-open .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 250, 244, 0.78)),
      url("../img/donna-cammino-ulivi.png") center / cover no-repeat;
  }

  .hero-grid,
  .split,
  .bonus-grid,
  .footer-grid,
  .cards,
  .blog-grid,
  .feature-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .book-frame {
    max-width: 420px;
    margin: 0 auto;
  }

  .proof-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .proof,
  .phase {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof:last-child,
  .phase:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .panel {
    padding: 28px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    font-size: 1.55rem;
  }

  .btn,
  button.btn {
    width: 100%;
  }

  .cta-row {
    align-items: stretch;
  }
}
