/* ============================================================
   Paisanía — Las Navas del Marqués Landing Page
   style.css
   ============================================================ */

/* FONTS */
@font-face {
  font-family: 'Literata';
  src: url('https://framerusercontent.com/assets/Lxqsdyp8ePkQW841w6c0bMk7N7Y.woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Literata';
  src: url('https://framerusercontent.com/assets/dzgM6WWuBUMbmJgiwDanGNCv8.woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Literata';
  src: url('https://framerusercontent.com/assets/EUtIIYV696qWxlxBerhjQ7tSY8.woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* TOKENS */
:root {
  --cream:      #fbfcf2;
  --dark:       #4e4e4f;
  --orange:     #eb5e23;
  --sage:       #e1e3d3;
  --sage-light: #f8faf5;
  --border:     #e1e3d399;
  --yellow:     #fbbb10;
  --teal:       #1eb5bc;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Literata', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.section-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9b9b9c;
  margin-bottom: 12px;
  display: block;
}

.section-label--light {
  color: rgba(251, 252, 242, .42);
}

.section-title {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-sub {
  font-size: 16px;
  color: #6b6b6c;
  margin-bottom: 38px;
  max-width: 520px;
  line-height: 1.55;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #d4521e;
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .2s;
}

.btn-ghost:hover { background: rgba(255, 255, 255, .2); }

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

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 30px; width: auto; }

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 40px;
  transition: background .2s, transform .15s;
}

.nav-cta:hover { background: #d4521e; transform: translateY(-1px); }

/* ============================================================
   HERO — with slider
   ============================================================ */

.hero {
  margin-top: 58px;
  position: relative;
  height: calc(100svh - 58px);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* SLIDER TRACK */
.hero__slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: none; /* JS handles transitions */
}

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

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

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* SLIDER CONTROLS */
.hero__prev,
.hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.hero__prev { left: 20px; }
.hero__next { right: 20px; }
.hero__prev:hover,
.hero__next:hover { background: rgba(255, 255, 255, .28); }

.hero__prev svg,
.hero__next svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SLIDER DOTS */
.hero__dots {
  position: absolute;
  bottom: 20px;
  right: 56px;
  z-index: 4;
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* OVERLAY */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .08) 0%,
    rgba(0, 0, 0, .12) 30%,
    rgba(0, 0, 0, .72) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(235, 94, 35, .85);
  padding: 6px 14px;
  border-radius: 40px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 70px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45), 0 1px 4px rgba(0, 0, 0, .3);
}

.hero h1 em { font-style: italic; color: var(--yellow); }

.hero__sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(255, 255, 255, .88);
  max-width: 580px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

/* USP TICKER — below the CTAs, clearly informational not interactive */
.hero__usps {
  overflow: hidden;
  width: 100%;
  margin-top: 4px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero__usp-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: uspScroll 22s linear infinite;
}

@keyframes uspScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__usp-track:hover { animation-play-state: paused; }

.hero__usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  letter-spacing: .01em;
}

.hero__usp-icon {
  font-size: 15px;
  line-height: 1;
}

/* Separator dots between USPs */
.hero__usp + .hero__usp::before {
  content: '·';
  color: rgba(255, 255, 255, .3);
  margin-right: 0;
  font-size: 18px;
  line-height: 1;
  display: block;
  margin-left: -16px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.price-section {
  background: var(--dark);
  padding: 72px 56px;
}

.price-inner {
  max-width: 780px;
  margin: 0 auto;
}

.price-heading {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 6px;
}

.price-heading em { font-style: italic; color: var(--yellow); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 5px;
}

.price-amount .num {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -.04em;
  color: var(--cream);
  line-height: 1;
}

.price-amount .unit {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(251, 252, 242, .5);
  letter-spacing: .01em;
  line-height: 1.35;
}

.price-note {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  color: rgba(251, 252, 242, .4);
  margin-bottom: 36px;
}

.price-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 4px;
}

.inc-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(251, 252, 242, .4);
  margin-bottom: 14px;
}

.inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(251, 252, 242, .82);
  line-height: 1.4;
}

.excl-list li { color: rgba(251, 252, 242, .4); }

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30, 181, 188, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 9px; height: 9px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cross-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cross-icon svg {
  width: 8px; height: 8px;
  stroke: rgba(251, 252, 242, .28);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.price-cta { margin-top: 40px; }
.price-cta .btn-primary { width: 100%; justify-content: center; }

.price-disclaimer {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  color: rgba(251, 252, 242, .32);
  text-align: center;
  margin-top: 11px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: 80px 56px;
  background: var(--cream);
}

.gallery-inner { max-width: 1100px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px 260px;
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child { grid-row: span 2; }

.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(20, 20, 20, .72), transparent);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}

/* ============================================================
   MAP
   ============================================================ */

.map-section {
  background: var(--sage-light);
  padding: 80px 56px;
}

.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.map-info h2 {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
}

.map-info h2 em { font-style: italic; color: var(--orange); }

.map-info p {
  font-size: 15px;
  color: #6b6b6c;
  margin-bottom: 26px;
  line-height: 1.6;
}

.route-card {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.route-step {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 3px 0;
}

.route-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.dot-m { background: var(--orange); color: #fff; }
.dot-r { background: var(--sage); color: var(--dark); }
.dot-n { background: var(--teal); color: #fff; }

.route-step-text strong {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: var(--dark);
}

.route-step-text span {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  color: #9b9b9c;
  font-weight: 500;
}

.route-line {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin-left: 15px;
}

.route-total {
  margin-top: 14px;
  background: var(--dark);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rt-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 3px;
}

.rt-value {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.02em;
  color: #fff;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
}

.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   SCHEDULE
   ============================================================ */

.schedule {
  padding: 80px 56px;
  background: var(--cream);
}

.schedule-inner { max-width: 1100px; margin: 0 auto; }

.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.day-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.day-header {
  background: var(--dark);
  padding: 20px 22px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.day-num {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .22);
  line-height: 1;
}

.day-info strong {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.02em;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.day-info span {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.day-body {
  background: var(--sage-light);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.time-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.time-badge {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--dark);
  background: var(--sage);
  padding: 4px 9px;
  border-radius: 40px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.time-item .ti-text strong {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  display: block;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.time-item .ti-text span {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  color: #9b9b9c;
  font-weight: 500;
  line-height: 1.4;
}

.day-highlight {
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(78, 78, 79, .1);
  border: 1px solid rgba(78, 78, 79, .18);
}

.day-highlight svg { width: 15px; height: 15px; flex-shrink: 0; }

.day-highlight span {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

/* ============================================================
   FORM
   ============================================================ */

.form-section {
  background: var(--dark);
  padding: 80px 56px;
  scroll-margin-top: 60px;
}

#contacto { scroll-margin-top: 60px; }

.form-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.form-left h2 em { font-style: italic; color: var(--yellow); }

.form-left p {
  font-size: 15px;
  color: rgba(251, 252, 242, .58);
  line-height: 1.6;
  margin-bottom: 30px;
}

.trust-items { display: flex; flex-direction: column; gap: 12px; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(251, 252, 242, .68);
}

.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(251, 252, 242, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-icon svg {
  width: 10px; height: 10px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(251, 252, 242, .48);
}

.form-optional {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(251, 252, 242, .28);
  text-transform: none;
  margin-left: 4px;
}

.form-group input {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  color: var(--cream);
  width: 100%;
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-group input::placeholder { color: rgba(251, 252, 242, .26); }

.form-group input:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.form-group input.is-error { border-color: var(--orange); }

input[type="date"] { color-scheme: dark; cursor: pointer; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.55) sepia(1) saturate(2.5) hue-rotate(355deg);
  cursor: pointer;
}

.form-note {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  color: rgba(251, 252, 242, .38);
  line-height: 1.55;
}

.form-error {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  color: #ff8a6a;
  margin-top: 4px;
  line-height: 1.4;
}

.btn-submit {
  background: var(--orange);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}

.btn-submit:hover { background: #d4521e; transform: translateY(-1px); }

.form-success {
  display: none;
  background: rgba(30, 181, 188, .1);
  border: 1px solid rgba(30, 181, 188, .28);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.form-success.show { display: block; }

.form-success h3 {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.02em;
  color: #7ee8eb;
  margin-bottom: 8px;
}

.form-success p {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: rgba(251, 252, 242, .58);
  margin: 0;
}

/* ============================================================
   ALTERNATIVES
   ============================================================ */

.alternatives {
  background: var(--sage-light);
  padding: 80px 56px;
}

.alt-inner { max-width: 1100px; margin: 0 auto; }

.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.alt-card {
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}

.alt-card:hover { transform: translateY(-3px); }

.alt-card__img { height: 175px; overflow: hidden; }

.alt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.alt-card:hover .alt-card__img img { transform: scale(1.05); }

.alt-card__body { padding: 18px 20px; }

.alt-card__label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9b9b9c;
  margin-bottom: 5px;
}

.alt-card__title {
  font-family: 'Literata', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.alt-card__link {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 26px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { height: 26px; width: auto; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  color: #9b9b9c;
  text-decoration: none;
}

.footer-links a:hover { color: var(--dark); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */

.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 99;
  transition: opacity .25s;
}

.sticky-mobile a {
  display: block;
  background: var(--orange);
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  border-radius: 40px;
  text-decoration: none;
}

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

@media (max-width: 1024px) {
  .price-cols { grid-template-columns: 1fr; gap: 32px; }
  .days-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; gap: 36px; }
  .map-embed { height: 300px; }
  .form-inner { grid-template-columns: 1fr; gap: 48px; }
  .alt-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 12px 20px; }

  /* Reduce hero height on mobile so content is visible without scroll */
  .hero {
    height: calc(100svh - 58px);
    min-height: 480px;
  }

  /* Tighter content padding: badge → h1 → sub → buttons → ticker all visible */
  .hero__content {
    padding: 0 20px 24px;
    gap: 12px;
  }
  .hero h1 { font-size: clamp(28px, 8.5vw, 44px); }
  .hero__sub { font-size: 14px; line-height: 1.45; }
  .hero__badge { font-size: 10px; padding: 5px 12px; }
  .hero__prev { left: 10px; }
  .hero__next { right: 10px; }
  .hero__dots { right: 20px; bottom: 12px; }

  .price-section,
  .gallery,
  .map-section,
  .schedule,
  .form-section,
  .alternatives { padding: 56px 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
  .gallery-item--wide { grid-column: span 2; }
  .alt-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; flex-direction: column; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
