:root {
  /* ===== ACTIVE PALETTE: Amber / Honey ===== */
  /* --bg: #f4efe6;
  --surface: #fbf9f3;
  --ink: #2c2620;
  --muted: #7a6f63;
  --accent: #c0691a;
  --accent-ink: #fbf3e6;
  --soft: #f4e6cf;
  --gold: #9c7433;
  --line: #e0d9cb; */

  /* ===== ALTERNATIVE PALETTES =====
     To try one, uncomment its whole block: because it comes later in :root,
     its values override the active palette above. Uncomment only one at a time. */

  --bg: #f4efe6;
  --surface: #fbf9f3;
  --ink: #2c2620;
  --muted: #7a6f63;
  --accent: #b8501e;
  --accent-ink: #f8efe4;
  --soft: #f0e2d4;
  --gold: #a9762f;
  --line: #e0d9cb;

  --rad: 18px;
  --serif: "Newsreader", serif;
  --sans: "Hanken Grotesk", sans-serif;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ---- keyframes ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 14px color-mix(in srgb, var(--accent) 0%, transparent);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* ---- buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
}
.btn:hover {
  opacity: 1;
}
.btn-lg {
  padding: 20px 40px;
  font-size: 19px;
  transition: transform 0.2s ease;
}
.btn-sm {
  padding: 12px 24px;
  font-size: 14.5px;
}
.btn-block {
  display: block;
  padding: 17px;
  font-size: 17px;
  margin-top: 26px;
  transition: transform 0.2s ease;
  white-space: normal;
}
.cta-pulse {
  animation: ctaPulse 2.2s ease-in-out infinite;
}
.cta-pulse:hover {
  animation-play-state: paused;
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .cta-pulse {
    animation: none;
  }
}

/* ---- urgency marquee ---- */
.urgency {
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid color-mix(in srgb, #000 12%, var(--accent));
}
.urgency-track {
  display: inline-flex;
  gap: 48px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

/* ---- header / nav ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover {
  opacity: 1;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}
.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  transition: opacity 0.15s ease;
  @media (max-width: 580px) {
    display: none;
  }
}

.nav-phone:hover {
  opacity: 0.6;
}

/* ---- section headers ---- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  text-wrap: balance;
}
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* ---- hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
}
.hero-copy {
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--soft);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
}
.hero-badge .stars {
  color: var(--gold);
  letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -0.5px;
  margin: 20px 0 0;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 520px;
}
.hero-lede strong {
  color: var(--ink);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  align-items: center;
}
.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.tick {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-media {
  position: relative;
  animation: fadeUp 0.9s ease both;
}
.hero-img {
  width: 100%;
  display: block;
  border-radius: var(--rad);
}

/* countdown */
.countdown {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 16px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
}
.countdown-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold);
}
.countdown-clock {
  display: flex;
  gap: 8px;
  margin-top: 7px;
}
.cd-unit {
  text-align: center;
}
.cd-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}
.cd-num.gold {
  color: var(--gold);
}
.cd-cap {
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 3px;
}
.cd-sep {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--line);
}

/* hero floating cards */
.discount-badge {
  position: absolute;
  right: -18px;
  top: 24px;
  background: var(--gold);
  color: #fff;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.4);
  transform: rotate(8deg);
}
.discount-badge span:first-child {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.discount-badge .pct {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.price-card {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px 22px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.3);
}
.price-card-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}
.price-now {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--accent);
}
.price-was {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-left {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
}
.dot-blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.4s ease-in-out infinite;
}

/* scarcity progress */
.scarcity {
  padding-top: 8px;
  padding-bottom: 4px;
}
.scarcity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.scarcity-row strong {
  color: var(--accent);
}
.scarcity-row .total {
  color: var(--muted);
  font-weight: 500;
}
.scarcity-bar {
  height: 9px;
  border-radius: 100px;
  background: var(--soft);
  margin-top: 9px;
  overflow: hidden;
}
.scarcity-fill {
  width: 76%;
  height: 100%;
  border-radius: 100px;
  background: var(--accent);
}

/* results numbers */
.results {
  padding-top: 34px;
  padding-bottom: 56px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  text-align: center;
}
.results-grid > div + div {
  border-left: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}
.stat-num .star {
  font-size: 24px;
  color: var(--gold);
}
.stat-cap {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* benefits */
.lead-block {
  max-width: 680px;
}
.lead-block p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 18px;
}
.lead-block p strong {
  color: var(--ink);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 26px 24px;
}
.benefit-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent);
}
.benefit-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 14px;
}
.benefit-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 8px;
}

/* percorso (dark band) */
.percorso {
  background: var(--accent);
  color: var(--accent-ink);
}
.percorso-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.percorso-head .eyebrow {
  opacity: 0.7;
  color: var(--accent-ink);
}
.percorso-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  margin-top: 14px;
  max-width: 560px;
}
.percorso-note {
  max-width: 360px;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.82;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.step {
  border-top: 2px solid color-mix(in srgb, var(--accent-ink) 35%, transparent);
  padding-top: 20px;
}
.step-num {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  opacity: 0.55;
}
.step h3 {
  font-size: 17.5px;
  font-weight: 600;
  margin-top: 16px;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.8;
  margin-top: 8px;
}

/* operatore */
.operatore {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.operatore-img {
  width: 100%;
  display: block;
  border-radius: var(--rad);
}
.operatore .role {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}
.operatore h2 {
  margin: 14px 0 4px;
}
.operatore p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 16px;
}
.operatore p.first {
  margin-top: 22px;
}
.op-stats {
  display: flex;
  gap: 36px;
  margin-top: 30px;
}
.op-stat .n {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
}
.op-stat .l {
  font-size: 14px;
  color: var(--muted);
}

/* recensioni */
.recensioni {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.center-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.review-carousel {
  padding-bottom: 72px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.review-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: review-scroll 150s linear infinite;
}
.review-carousel:hover .review-track {
  animation-play-state: paused;
}
@keyframes review-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.review {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 30px 28px;
  flex: 0 0 380px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}
.review .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
}
.review p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  overflow: hidden;
}
.review-by {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 24px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.review-by .name {
  font-weight: 600;
  font-size: 15px;
}
.review-by .place {
  font-size: 13.5px;
  color: var(--muted);
}

/* prezzi */
.prezzi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.prezzi-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.prezzi-list li {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 15.5px;
}
.prezzi p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 18px;
}
.price-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 40px;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.28);
}
.price-panel .kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}
.price-big-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 12px;
}
.price-big {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}
.price-big-was {
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--soft);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
}
.price-note {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.55;
}
.price-reminder {
  text-align: center;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
}

/* contatti */
.contatti {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.sede {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px;
}
.sede-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.sede-detail {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.55;
}
.sede-link {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  transition: opacity 0.15s ease;
}
.sede-link:hover {
  opacity: 0.7;
}
.sedi-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contatti-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.studio-img {
  width: 100%;
  min-height: 240px;
  flex: 1;
  display: block;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-label {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}
.location-img {
  width: 100%;
  min-height: 180px;
  display: block;
  border-radius: var(--rad);
}

/* faq */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-inline: 28px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--serif);
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--accent);
}
.faq details p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}

/* footer */
.footer {
  background: var(--accent);
  color: var(--accent-ink);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding-top: 54px;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
}
.footer-brand span:last-child {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}
.footer-tag {
  font-size: 14.5px;
  opacity: 0.8;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-cols {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
}
.footer-col .head {
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}
.footer-col a,
.footer-col span {
  color: var(--accent-ink);
  opacity: 0.85;
}
.footer-bar {
  border-top: 1px solid color-mix(in srgb, var(--accent-ink) 22%, transparent);
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  opacity: 0.7;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* responsive */
@media (max-width: 900px) {
  .hero,
  .operatore,
  .prezzi,
  .contatti-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid,
  .step-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid > div + div {
    border-left: none;
  }
  .hero h1 {
    font-size: 46px;
  }
  .h2,
  .percorso-head h2,
  .operatore h2 {
    font-size: 34px;
  }
}
@media (max-width: 560px) {
  .benefit-grid,
  .step-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .review {
    flex-basis: 300px;
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 24px;
  }
  .countdown {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- voucher modal ---- */
.voucher-modal {
  margin: auto;
  border: none;
  padding: 0;
  border-radius: var(--rad);
  background: var(--surface);
  color: var(--ink);
  max-width: 460px;
  width: calc(100% - 32px);
  box-shadow: 0 24px 70px rgba(34, 48, 42, 0.32);
}
.voucher-modal::backdrop {
  background: rgba(34, 48, 42, 0.55);
  backdrop-filter: blur(2px);
}
.voucher-modal[open] {
  animation: fadeUp 0.28s ease;
}
.voucher-modal-inner {
  position: relative;
  padding: 34px 30px 30px;
}
.voucher-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--soft);
  color: var(--ink);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.voucher-modal-close:hover {
  opacity: 0.7;
}
.voucher-modal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin: 10px 0 6px;
}
.voucher-modal-lede {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}
.voucher-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.voucher-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voucher-field-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.voucher-field input,
.voucher-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  resize: vertical;
}
.voucher-field input:focus,
.voucher-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.voucher-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
}
.voucher-check input {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.voucher-check a {
  text-decoration: underline;
}
.voucher-form .btn {
  margin-top: 8px;
}
.voucher-success {
  text-align: center;
  padding: 6px 0 4px;
}
.voucher-success .voucher-modal-title {
  margin-top: 8px;
}
.voucher-ps {
  margin: 8px 0 20px;
  font-size: 14px;
}
.voucher-urgency {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border-radius: 100px;
  padding: 7px 16px;
}
.voucher-promo {
  margin: 14px 0 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.voucher-strike {
  color: var(--muted);
  text-decoration: line-through;
}

/* location radios */
.voucher-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}
.voucher-loc {
  cursor: pointer;
}
.voucher-loc input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.voucher-loc-box {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--bg);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.voucher-loc:hover .voucher-loc-box {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.voucher-loc input:focus-visible + .voucher-loc-box {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.voucher-loc input:checked + .voucher-loc-box {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 1.5px var(--accent);
}
.voucher-loc-name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.voucher-loc-addr {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
}

/* calendar */
.voucher-calendar {
  margin-top: 20px;
}
.voucher-calendar-hint {
  color: var(--muted);
  font-size: 14px;
  padding: 18px 4px 4px;
}
.voucher-calendar.is-loaded [data-modal-target="calendarMount"] {
  height: 680px;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--surface);
}
.voucher-modal.is-wide {
  max-width: 640px;
}
