/* ============================================================
   THE TUSCAN SHOW — Landing Page
   Editorial dark-ink + cream + terracotta. No AI slop.
   ============================================================ */

:root {
  --ink:           #1C1C1A;
  --ink-soft:      #2A2A26;
  --cream:         #F5EDD8;
  --cream-soft:    #EFE6CC;
  --terracotta:    #D4874E;
  --terracotta-dk: #B8631A;
  --chianti:       #8B2635;
  --gold:          #E8B84A;
  --grey-warm:     #6B665A;
  --grey-line:     rgba(28, 28, 26, 0.12);
  --grey-line-d:   rgba(245, 237, 216, 0.18);

  --serif:    'Cormorant Garamond', 'Bodoni Moda', Georgia, serif;
  --script:   'Allura', 'Pinyon Script', cursive;
  --sans:     'DM Sans', system-ui, sans-serif;
  --sans-c:   'DM Sans', system-ui, sans-serif;

  --shadow-soft: 0 18px 48px rgba(0,0,0,0.18);
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.35);

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ============================================================
   iOS / Apple-specific optimizations
   ============================================================ */

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  /* iOS safe-area insets for notch / home indicator */
  padding-bottom: env(safe-area-inset-bottom);
}

/* Prevent iOS auto-zoom on form inputs (font must be ≥16px) */
input, select, textarea {
  font-size: 16px;
}

/* Min touch target = 44pt Apple HIG */
.btn,
.faq__q,
.tour__choice,
.toggle,
.nav__cta {
  min-height: 44px;
}

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

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

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, padding 0.3s ease;
  background: linear-gradient(180deg, rgba(28,28,26,0.78) 0%, rgba(28,28,26,0.35) 60%, rgba(28,28,26,0) 100%);
}

.nav.scrolled {
  background: rgba(28, 28, 26, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 32px;
}

.nav__logo {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

.nav.scrolled .nav__logo { height: 48px; }

.nav__cta {
  font-family: var(--sans-c);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  padding: 12px 24px;
  border: 1.5px solid var(--cream);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav__cta:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================================
   HERO — 85vh fullscreen video
   ============================================================ */

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28,28,26,0.55) 0%,
    rgba(28,28,26,0.42) 40%,
    rgba(28,28,26,0.5) 60%,
    rgba(28,28,26,0.72) 85%,
    rgba(28,28,26,0.9) 100%
  );
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5vw 10vh;
  color: var(--cream);
}

.hero__content > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero__eyebrow {
  font-family: var(--sans-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero__title em {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  color: var(--terracotta);
  font-size: 1.25em;
  line-height: 1;
  padding: 0 0.08em;
  letter-spacing: 0.01em;
}

.hero__sub {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 16px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero__sub--accent {
  margin-bottom: 32px;
  animation-delay: 0.7s;
}

.hero__sub--accent strong {
  color: var(--gold);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero__trust {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 1;
}

.hero__trust-item strong {
  font-weight: 700;
  color: #fff;
}

.hero__trust-icon {
  color: var(--gold, #E8B84A);
  font-size: 14px;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--sans-c);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: var(--cream);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--sans-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(212, 135, 78, 0.4);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 99, 26, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}

.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
  font-weight: 700;
}

.btn--whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
}

.btn--imessage {
  background: var(--ink);
  color: var(--cream);
}

.btn--imessage:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 22px 44px;
  font-size: 17px;
}

/* Messaging hierarchy: primary = iMessage terracotta, secondary = WhatsApp link */
.btn--primary-msg {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(212, 135, 78, 0.4);
  min-width: 280px;
  font-weight: 700;
}
.btn--primary-msg:hover {
  background: var(--terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 99, 26, 0.5);
}

.btn--secondary-msg {
  background: transparent;
  color: inherit;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 500;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  border-radius: 6px;
}
.btn--secondary-msg:hover {
  opacity: 1;
  background: rgba(0,0,0,0.05);
  transform: none;
}
.price-box .btn--secondary-msg {
  color: var(--cream);
  opacity: 1;
  font-weight: 700;
  border: 1.5px solid rgba(245, 237, 216, 0.55);
}
.price-box .btn--secondary-msg:hover {
  background: rgba(255,255,255,0.12);
}

/* CTA primario dentro price-box: scuro per contrasto sul terracotta */
.price-box .btn--primary-msg {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}
.price-box .btn--primary-msg:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.btn--secondary-msg .btn__icon {
  font-size: 14px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: clamp(80px, 12vw, 140px) 5vw;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--sans-c);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta-dk);
  display: inline-block;
  margin-bottom: 20px;
}

.eyebrow::before { content: '— '; }
.eyebrow::after { content: ' —'; }

.section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.section__title em {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  color: var(--terracotta);
  font-size: 1.25em;
  padding: 0 0.06em;
}

/* ============================================================
   TOUR SECTION — single product, dropdown, itinerary
   ============================================================ */

.tour {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.tour .eyebrow { color: var(--gold); }

.tour__header {
  text-align: center;
  margin-bottom: 60px;
}

.tour__chooser {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  border: 1.5px solid var(--grey-line-d);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: var(--ink-soft);
}

.tour__choice {
  font-family: var(--sans-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s ease;
  opacity: 0.6;
}

.tour__choice.is-active {
  background: var(--terracotta);
  color: var(--cream);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(212, 135, 78, 0.5);
}

.tour__choice:hover:not(.is-active) {
  opacity: 1;
}

/* Cheese toggle */

.tour__addons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.tour__addons-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
  margin: 0;
  text-align: center;
  max-width: 50ch;
  line-height: 1.5;
}

.tour__addons-note {
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.75;
  margin: 0;
  text-align: center;
  max-width: 50ch;
  line-height: 1.5;
}

.tour__addons-video {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 4px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tour__addons-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tour__addons-note strong {
  color: var(--gold, #E8B84A);
  font-weight: 700;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--ink-soft);
  border: 1px solid var(--grey-line-d);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle:hover {
  border-color: var(--gold);
}

.toggle__switch {
  width: 48px;
  height: 26px;
  background: var(--grey-warm);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.toggle.is-on .toggle__switch {
  background: var(--gold);
}

.toggle.is-on .toggle__switch::after {
  transform: translateX(22px);
}

.toggle__label {
  font-family: var(--sans-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toggle__price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   ITINERARY
   ============================================================ */

.itinerary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.itinerary::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey-line-d);
}

.stop {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 32px 0;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stop.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.stop.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stop__marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid var(--ink);
  z-index: 2;
  position: relative;
}

.stop__time {
  font-family: var(--sans-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.stop__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.stop__title em {
  font-family: var(--script);
  font-weight: 400;
  color: var(--terracotta);
  font-size: 1.2em;
  padding: 0 0.06em;
}

.stop__copy {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(245, 237, 216, 0.92);
  max-width: 60ch;
}

.stop__benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--sans-c);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 12px;
}

.stop__benefit::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
}

.stop__media {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 16/10;
  position: relative;
}

.stop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stop__media:hover img {
  transform: scale(1.04);
}

/* ============================================================
   CAROUSEL
   ============================================================ */

.carousel {
  position: relative;
}

.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 28, 26, 0.55);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
}

.carousel__arrow:hover {
  background: var(--terracotta);
  transform: translateY(-50%) scale(1.08);
}

.carousel__arrow--prev { left: 12px; }
.carousel__arrow--next { right: 12px; }

.carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28, 28, 26, 0.35);
  backdrop-filter: blur(6px);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 237, 216, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel__dot.is-active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 999px;
}

.carousel__dot:hover:not(.is-active) {
  background: var(--cream);
}

@media (max-width: 700px) {
  .carousel__arrow { width: 36px; height: 36px; font-size: 22px; }
  .carousel__arrow--prev { left: 8px; }
  .carousel__arrow--next { right: 8px; }
}

.stop__media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--grey-line-d);
  padding: 40px;
  color: var(--grey-warm);
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.stop__media--placeholder strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 6px;
}

.stop[data-cheese] {
  display: none;
}

.stop[data-cheese].is-shown {
  display: grid;
}

/* ============================================================
   MINI TRUST (before price box)
   ============================================================ */

.mini-trust {
  list-style: none;
  margin: 56px auto 0;
  padding: 0;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  border-top: 1px solid var(--grey-line, rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--grey-line, rgba(0,0,0,0.08));
  padding: 24px 16px;
}

.mini-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: none;
}

.mini-trust__icon {
  color: var(--terracotta);
  font-size: 13px;
  line-height: 1;
}

.mini-trust__text {
  white-space: nowrap;
}

/* ============================================================
   PRICE BOX
   ============================================================ */

.price-box {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dk) 100%);
  color: var(--cream);
  padding: 64px 48px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.price-box::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 30px;
  font-family: var(--serif);
  font-size: 240px;
  color: rgba(245, 237, 216, 0.15);
  font-weight: 700;
}

.price-box__question {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
  margin-bottom: 14px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.price-box__answer {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.price-box__answer em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1em;
}

.price-box__price {
  display: inline-block;
  background: var(--ink);
  padding: 24px 48px;
  border-radius: 999px;
  margin-top: 8px;
}

.price-box__amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--gold);
  line-height: 1;
}

.price-box__per {
  font-family: var(--sans-c);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-top: 6px;
}

.price-box__includes {
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.78;
  text-align: center;
  max-width: 60ch;
  margin: 28px auto 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ===== CHEESE STOP — special layout ===== */
.stop--cheese {
  position: relative;
}

.stop--cheese.is-inactive .stop__body {
  opacity: 0.7;
}

.stop--cheese .stop__marker {
  background: var(--terracotta);
  color: #fff;
}

.stop--cheese.is-inactive .stop__marker {
  background: var(--grey-line-d, #c8c1a8);
  color: var(--cream);
}

.cheese-toggle-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: transparent;
  border: 1.5px solid var(--terracotta);
  border-radius: 999px;
  cursor: pointer;
  margin: 22px 0 18px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.cheese-toggle-primary:hover {
  background: rgba(212, 135, 78, 0.06);
}

.cheese-toggle-primary[aria-pressed="true"] {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.cheese-toggle-primary[aria-pressed="true"] .toggle__label,
.cheese-toggle-primary[aria-pressed="true"] .toggle__price {
  color: #fff;
}

.cheese-toggle-primary .toggle__switch {
  width: 40px;
  height: 22px;
  background: var(--grey-warm);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.cheese-toggle-primary .toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.cheese-toggle-primary[aria-pressed="true"] .toggle__switch {
  background: rgba(255, 255, 255, 0.35);
}

.cheese-toggle-primary[aria-pressed="true"] .toggle__switch::after {
  transform: translateX(18px);
}

.cheese-toggle-primary .toggle__label {
  font-family: var(--sans-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.cheese-toggle-primary .toggle__price {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--terracotta);
}

.stop__cheese-video {
  width: 100%;
  max-width: 480px;
  margin: 20px 0 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stop__cheese-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== SECONDARY CHEESE TOGGLE (price-box) ===== */
.cheese-toggle-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  margin: 22px auto 14px;
  transition: all 0.25s ease;
  font-family: inherit;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cheese-toggle-secondary:hover {
  background: var(--ink-soft);
  border-color: var(--gold);
}

.cheese-toggle-secondary[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--ink);
}

.cheese-toggle-secondary .toggle__switch {
  width: 38px;
  height: 20px;
  background: var(--grey-warm);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.cheese-toggle-secondary .toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.cheese-toggle-secondary[aria-pressed="true"] .toggle__switch {
  background: var(--gold);
}

.cheese-toggle-secondary[aria-pressed="true"] .toggle__switch::after {
  transform: translateX(18px);
}

.cheese-toggle-secondary .toggle__label {
  font-family: var(--sans-c);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ===== SOCIAL PROOF in price-box ===== */
.price-box__social {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  opacity: 1;
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 24px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.price-box__social strong {
  color: var(--gold);
  font-weight: 700;
  opacity: 1;
}

/* ===== BENEFITS LIST (price-box) ===== */
.benefits-list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 56ch;
  text-align: left;
  position: relative;
  z-index: 1;
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}

.benefits-list__mark {
  flex-shrink: 0;
  font-size: 17px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
  width: 18px;
  text-align: center;
}

.benefits-list__item--cheese-off {
  opacity: 0.7;
  font-weight: 500;
}

.benefits-list__item--cheese-off .benefits-list__mark {
  color: rgba(245, 237, 216, 0.5);
}

.benefits-list__item--cheese-off .benefit-add {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 9px;
  border: 1px solid rgba(232, 184, 74, 0.6);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.benefits-list__item--cheese-on .benefits-list__mark {
  color: var(--gold);
}

.price-box__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   UGLY TRUTH SECTION
   ============================================================ */

.truth {
  background: var(--cream);
  color: var(--ink);
}

.truth__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.truth__card {
  background: var(--cream-soft);
  padding: 0;
  border-radius: 4px;
  border-top: 4px solid var(--terracotta);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.truth__media {
  aspect-ratio: 16/9;
  background: var(--grey-warm);
  position: relative;
  overflow: hidden;
}

.truth__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.truth__card:hover .truth__media img {
  transform: scale(1.04);
}

.truth__media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 8px;
  text-align: center;
  font-family: var(--sans-c);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-warm);
  border: 2px dashed var(--grey-line);
  margin: 8px;
}

.truth__media--placeholder strong {
  color: var(--terracotta-dk);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 6px;
}

.truth__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 64px;
  color: var(--terracotta);
  line-height: 0.9;
  opacity: 0.4;
  padding: 32px 40px 0;
}

.truth__heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 8px 0 16px;
  padding: 0 40px;
}

.truth__copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-warm);
  padding: 0 40px;
}

.truth__copy:last-child {
  padding-bottom: 40px;
}

.truth__copy + .truth__copy { margin-top: 12px; }

.truth__copy strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   DAVID BIO
   ============================================================ */

.david {
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.david__media {
  position: relative;
  min-height: 600px;
  background: var(--ink-soft);
}

.david__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.david__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--grey-line-d);
  padding: 60px;
  color: var(--grey-warm);
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.david__content {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.david__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  margin-bottom: 32px;
  color: var(--terracotta);
}

.david__copy {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(245, 237, 216, 0.94);
}

.david__copy strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   REVIEWS — rectangular cards
   ============================================================ */

.reviews {
  background: var(--cream);
  text-align: center;
}

.reviews__head {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__stars {
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.reviews__rating {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}

.reviews__source {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-warm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.review {
  background: var(--cream-soft);
  border-radius: 6px;
  padding: 24px 22px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 3px solid var(--terracotta);
}

/* Variante con foto background */
.review--with-photo {
  background-size: cover;
  background-position: center;
  background-color: var(--ink, #1c1c1a);
  color: var(--cream);
  min-height: 380px;
  position: relative;
  justify-content: flex-end;
  padding: 200px 22px 24px;
  border-top: 3px solid var(--terracotta);
}

.review--with-photo .review__text {
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.review--with-photo .review__author {
  color: #fff;
}

.review--with-photo .review__sub {
  color: rgba(245, 237, 216, 0.85);
}

.review--with-photo .review__avatar {
  border: 2px solid rgba(245, 237, 216, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.review--with-photo .review__badge {
  background: rgba(28, 28, 26, 0.7);
  color: var(--cream);
  border: 1px solid rgba(245, 237, 216, 0.3);
}

.review--with-photo .review__stars {
  color: var(--gold, #E8B84A);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.review__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans-c);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.review__meta {
  min-width: 0;
}

.review__author {
  font-family: var(--sans-c);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.review__sub {
  font-family: var(--sans-c);
  font-size: 12px;
  color: var(--grey-warm);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.review__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  padding: 4px 9px 4px 7px;
  font-family: var(--sans-c);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.review__badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2BB673;
  color: white;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.review__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--cream-soft);
}

.faq__inner {
  max-width: 880px;
}

.faq__list {
  margin-top: 60px;
}

.faq__item {
  border-bottom: 1px solid var(--grey-line);
}

.faq__item:first-of-type {
  border-top: 1px solid var(--grey-line);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  text-align: left;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq__q:hover { color: var(--terracotta-dk); }

.faq__icon {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.is-open .faq__a {
  max-height: 600px;
  padding: 0 0 28px;
}

.faq__a p {
  color: var(--grey-warm);
  font-size: 17px;
  line-height: 1.7;
  max-width: 65ch;
}

.faq__a p + p { margin-top: 12px; }

.faq__a a {
  color: var(--terracotta-dk);
  border-bottom: 1px solid var(--terracotta);
}

.faq__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--terracotta-dk);
  font-weight: 600;
  border-bottom: 1px solid var(--terracotta);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.faq__link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta-dk);
}

.faq__icon-inline {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.contact__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact__title em {
  font-family: var(--script);
  font-weight: 400;
  color: var(--terracotta);
  font-size: 1.25em;
  padding: 0 0.06em;
}

.contact__sub {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto 48px;
  color: rgba(245, 237, 216, 0.85);
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.contact__phone {
  font-family: var(--sans-c);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__phone a:hover { color: var(--terracotta); }

/* ============================================================
   TRUST STRIP (above footer)
   ============================================================ */

.trust-strip {
  background: var(--cream);
  color: var(--ink);
  padding: 28px 5vw;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.trust-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.trust-strip__list,
.trust-strip__pay {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.trust-strip__item strong {
  font-weight: 700;
}

.trust-strip__icon {
  color: var(--terracotta);
  font-size: 11px;
  line-height: 1;
}

.trust-strip__pay {
  gap: 12px;
}

.pay-mark {
  background: white;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  padding: 6px 10px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pay-mark svg {
  height: 14px;
  width: auto;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(245, 237, 216, 0.7);
  padding: 48px 5vw 40px;
  border-top: 1px solid var(--grey-line-d);
  font-size: 14px;
  line-height: 1.7;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.footer__trust {
  font-family: var(--sans-c);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.6);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-line-d);
}

.footer__trust a {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer__trust a:hover {
  border-bottom-color: var(--terracotta);
}

.footer__legal {
  font-size: 13px;
  margin-bottom: 16px;
}

.footer__legal strong { color: var(--cream); font-weight: 600; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin: 16px 0;
  font-family: var(--sans-c);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__links a {
  color: rgba(245, 237, 216, 0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer__copyright {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.6;
}

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

/* ===== TABLET (901px - 1100px) ===== */
@media (min-width: 901px) and (max-width: 1100px) {
  .section { padding: 90px 5vw; }

  .hero__content { padding: 130px 6vw 9vh; }
  .hero__title { font-size: clamp(44px, 6vw, 58px); }
  .hero__sub { font-size: 18px; max-width: 46ch; }

  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .review--with-photo { min-height: 340px; padding: 170px 22px 24px; }

  .stop { grid-template-columns: 60px 1fr; gap: 28px; }

  .price-box { padding: 56px 40px; }
  .benefits-list { max-width: 100%; }

  .david { grid-template-columns: 1fr 1.1fr; }

  .stop__cheese-video { max-width: 420px; }

  .truth__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .nav { padding: 14px 16px; }
  .nav__logo { height: 44px; max-width: 100px; }
  .nav__cta { display: none; }

  .hero { height: 90vh; }
  .hero__content { padding: 140px 6vw 10vh; text-align: center; align-items: center; }
  .hero__title { font-size: clamp(30px, 7.5vw, 44px); max-width: 100%; }
  .hero__sub { font-size: 15px; line-height: 1.55; max-width: 40ch; }
  .hero__actions { justify-content: center; width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; max-width: 280px; }
  .hero__trust {
    justify-content: center;
    gap: 12px 20px;
    margin-top: 24px;
    max-width: 100%;
  }
  .hero__trust-item { font-size: 15px; }

  .section { padding: 80px 6vw; }

  .truth__grid { grid-template-columns: 1fr; gap: 24px; }
  .truth__num { padding: 24px 24px 0; font-size: 48px; }
  .truth__heading { padding: 0 24px; font-size: 22px; }
  .truth__copy { padding: 0 24px; }
  .truth__copy:last-child { padding-bottom: 32px; }

  .david { grid-template-columns: 1fr; }
  .david__media { min-height: 400px; }
  .david__media--placeholder { border-right: none; border-bottom: 2px dashed var(--grey-line-d); }
  .david__content { padding: 60px 28px; }

  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .stop { grid-template-columns: 50px 1fr; gap: 20px; }
  .stop__marker { width: 50px; height: 50px; font-size: 18px; }
  .itinerary::before { left: 25px; }

  .tour__chooser { width: 100%; max-width: 400px; }
  .tour__choice { padding: 12px 18px; font-size: 13px; flex: 1; }

  .toggle { width: 100%; max-width: 400px; }
  .toggle__label { font-size: 14px; flex: 1; }

  .price-box { padding: 48px 24px; }

  .mini-trust {
    margin-top: 40px;
    padding: 20px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    justify-items: center;
  }
  .mini-trust__item {
    font-size: 14px;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.35;
  }
  .mini-trust__text {
    white-space: normal;
  }

  .trust-strip__inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .trust-strip__list {
    justify-content: center;
    gap: 10px 18px;
  }
  .trust-strip__item {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .trust-strip__pay {
    justify-content: center;
    gap: 8px;
  }
  .pay-mark {
    padding: 5px 8px;
    height: 26px;
  }
  .pay-mark svg {
    height: 12px;
  }

  .contact__buttons { align-items: stretch; }
  .contact__buttons .btn--primary-msg,
  .price-box__cta { align-items: stretch; }
  .price-box__cta .btn--primary-msg,
  .contact__buttons .btn--primary-msg {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .price-box__cta .btn--secondary-msg,
  .contact__buttons .btn--secondary-msg {
    align-self: center;
  }
}

@media (max-width: 560px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .stop__media { aspect-ratio: 4/3; }
}

/* ============================================================
   STICKY MOBILE CTA — appears when hero CTA exits viewport
   ============================================================ */

.sticky-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(28,28,26,0) 0%, rgba(28,28,26,0.82) 32%, rgba(28,28,26,0.96) 100%);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta-bar[hidden] {
  display: none;
}

.sticky-cta-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta {
  display: inline-block;
  background: var(--terracotta);
  color: #FFFFFF;
  font-family: var(--sans-c);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sticky-cta:active {
  background: var(--terracotta-dk);
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .sticky-cta-bar { display: block; }
}

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