:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2419;
  --forest-mid: #2d5a40;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --terracotta: #c45c3a;
  --terracotta-deep: #a3462a;
  --cream: #f7f2e8;
  --cream-dark: #ebe3d4;
  --ink: #1c1814;
  --muted: #5c5348;
  --white: #fffcf7;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 36, 25, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--forest-mid); }
a:hover { color: var(--terracotta); }

.wrap {
  width: min(960px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--forest);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--gold);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 1.15rem;
}
.nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.92;
}
.nav a:hover { color: var(--gold-soft); opacity: 1; }

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lead {
  background: var(--terracotta);
  color: var(--white);
}
.btn-lead:hover { background: var(--terracotta-deep); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn-gold:hover { background: var(--gold-soft); color: var(--forest-deep); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(201,162,39,0.15); color: var(--gold-soft); }
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest-mid);
}
.btn-outline-dark:hover { background: var(--cream-dark); color: var(--forest-deep); }
.btn-block { width: 100%; text-align: center; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(201,162,39,0.18), transparent 55%),
    linear-gradient(160deg, var(--forest-deep), var(--forest) 55%, #234833);
  color: var(--cream);
  padding: 3.2rem 0 3.5rem;
}
.hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 16ch;
  font-weight: 750;
}
.hero .lede {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 36rem;
  margin: 0 0 1.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Sections */
section { padding: 2.75rem 0; }
.section-title {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin: 0 0 0.35rem;
  color: var(--forest);
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}
.band-alt { background: var(--cream-dark); }
.band-forest {
  background: var(--forest);
  color: var(--cream);
}
.band-forest .section-title { color: var(--gold-soft); }
.band-forest .section-sub { color: rgba(247,242,232,0.78); }

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.step .n {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.step h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--forest); }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Sample day */
.sample {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--terracotta);
}
.sample .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.sample ul {
  margin: 0;
  padding-left: 1.15rem;
}
.sample li { margin: 0.45rem 0; }
.sample .label {
  font-weight: 700;
  color: var(--forest);
}

/* Pricing cards */
.prices {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .prices { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(26,58,42,0.08);
}
.price-card.lead {
  border: 2px solid var(--terracotta);
  position: relative;
  background: linear-gradient(180deg, #fff8f4, var(--white) 40%);
}
.price-card .badge {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.price-card h3 { margin: 0; color: var(--forest); font-size: 1.25rem; }
.price-card .amount {
  font-size: 1.85rem;
  font-weight: 750;
  color: var(--forest-deep);
  margin: 0;
}
.price-card .amount span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card .desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.price-card .channels {
  font-size: 0.82rem;
  color: var(--forest-mid);
  background: rgba(45,90,64,0.08);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
}

/* Legal / footer */
.legal-box {
  background: rgba(26,58,42,0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.legal-box p { margin: 0.4rem 0; }
.site-footer {
  background: var(--forest-deep);
  color: rgba(247,242,232,0.82);
  padding: 2rem 0 2.5rem;
  font-size: 0.88rem;
}
.site-footer a { color: var(--gold-soft); }
.site-footer .brand {
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.site-footer p { margin: 0.35rem 0; max-width: 42rem; }

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 32rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.35rem;
  color: var(--forest);
  font-size: 0.95rem;
}
.field .hint {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.15rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid rgba(26,58,42,0.2);
  border-radius: 10px;
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--forest-mid);
}
.page-intro {
  padding: 2.2rem 0 0.5rem;
}
.page-intro h1 {
  margin: 0 0 0.5rem;
  color: var(--forest);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}
.page-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}
.stack-gap { display: flex; flex-direction: column; gap: 1rem; }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }

/* Allergy chips (Start) */
.allergy-field {
  border: none;
  padding: 0;
  margin: 0 0 1.1rem;
  min-width: 0;
}
.allergy-field legend {
  font-weight: 650;
  margin-bottom: 0.35rem;
  color: var(--forest);
  font-size: 0.95rem;
  padding: 0;
}
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.chip span {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26,58,42,0.22);
  background: var(--cream);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.chip:hover span {
  border-color: var(--forest-mid);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.chip input:checked + span {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--gold-soft);
}
.other-writein {
  margin-top: 0.85rem;
  margin-bottom: 0;
}
.field-error {
  color: var(--terracotta-deep);
  font-size: 0.85rem;
  margin: 0.55rem 0 0;
  font-weight: 600;
}

/* Allergy open button (summary on main form) */
.allergy-open-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid rgba(26,58,42,0.2);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.allergy-open-btn:hover {
  border-color: var(--forest-mid);
}
.allergy-open-btn:focus-visible {
  outline: 2px solid var(--gold);
  border-color: var(--forest-mid);
}
.allergy-open-btn.has-value {
  background: var(--white);
  border-color: var(--forest-mid);
}
.allergy-open-label {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}
.allergy-open-btn.has-value .allergy-open-label {
  color: var(--forest);
  font-weight: 650;
}
.allergy-open-action {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* City quick-pick chips */
.city-chips {
  margin: 0.35rem 0 0.55rem;
}
.chip-btn {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26,58,42,0.22);
  background: var(--cream);
  color: var(--forest);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.chip-btn:hover {
  border-color: var(--forest-mid);
  background: rgba(45,90,64,0.08);
}
.chip-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Allergies modal / pestaña only */
body.modal-open {
  overflow: hidden;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(18, 32, 24, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
@media (min-width: 560px) {
  .modal-backdrop {
    align-items: center;
    padding: 1.25rem;
  }
}
.modal-backdrop[hidden] {
  display: none !important;
}
.modal-card {
  width: 100%;
  max-width: 26rem;
  max-height: min(92vh, 40rem);
  overflow: auto;
  background: var(--white);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
  padding: 1.25rem 1.25rem 1.4rem;
}
@media (min-width: 560px) {
  .modal-card {
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  }
}
.modal-head {
  margin-bottom: 0.85rem;
}
.modal-head h2 {
  margin: 0 0 0.35rem;
  color: var(--forest);
  font-size: 1.25rem;
}
.modal-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.modal-card .chip-grid {
  margin-top: 0.25rem;
}
.modal-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1.15rem;
  padding-top: 0.25rem;
}
.modal-actions .btn {
  min-width: 5.5rem;
}

/* Confirm toast after mailto */
.confirm-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 1100;
  max-width: calc(100vw - 2rem);
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: var(--forest-deep);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  text-align: center;
}
.confirm-toast[hidden] {
  display: none !important;
}
