/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: #0D0D0D;
  font-family: 'Barlow', sans-serif;
  -webkit-font-smoothing: antialiased;
}
input, select, textarea, button { font-family: 'Barlow', sans-serif; outline: none; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
select option { background: #1C1C1C; color: #fff; }
button { cursor: pointer; }

.container { max-width: 1440px; margin: 0 auto; }
.container--narrow { max-width: 960px; }

.trips-loading, .trips-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: rgba(0,0,0,0.4);
  font-size: 16px;
}
.trips-error { display: flex; flex-direction: column; align-items: center; gap: 16px; color: rgba(0,0,0,0.6); }
.featured.is-loading { background: #e8e2d6; }
.featured.is-loading .featured__badge,
.featured.is-loading .featured__body { visibility: hidden; }

.section { padding: 100px 64px; }
.section--cream { background: #F4EFE8; }
.section--dark { background: #0D0D0D; }
.section--black { background: #090909; }
.section--red { background: #E01E1A; }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #E01E1A;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

.h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  color: #0D0D0D;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0;
}
.h2--light { color: #fff; }

.red { color: #E01E1A; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  text-align: center;
}
.btn--red { background: #E01E1A; color: #fff; padding: 10px 28px; font-size: 16px; letter-spacing: 1.5px; }
.btn--red:hover { background: #c81714; }
.btn--dark { background: #0D0D0D; color: #fff; }
.btn--dark:hover { background: #1a1a1a; }
.btn--outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; padding: 16px 40px; font-size: 18px; letter-spacing: 2px; }
.btn--outline:hover { border-color: rgba(255,255,255,0.6); }
.btn--outline-dark { border: 2px solid #0D0D0D; background: transparent; color: #0D0D0D; padding: 16px 24px; font-size: 18px; letter-spacing: 1px; }
.btn--outline-dark:hover { background: rgba(0,0,0,0.05); }
.btn--lg { padding: 16px 40px; font-size: 18px; letter-spacing: 2px; }
.btn--xl { padding: 18px 64px; font-size: 20px; letter-spacing: 2.5px; }

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 64px;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar__logo { flex-shrink: 0; display: flex; }
.navbar__logo img { height: 30px; }
.navbar__links { display: flex; gap: 36px; flex: 1; align-items: center; }
.navbar__links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.navbar__links a:hover { color: #fff; }
.navbar__cta { flex-shrink: 0; }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; margin-left: auto; }
.navbar__toggle span { width: 24px; height: 2px; background: #fff; display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.94) 45%, rgba(13,13,13,0.55) 100%);
}
.hero__watermark {
  position: absolute; right: -20px; bottom: -40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(200px, 28vw, 420px);
  font-weight: 800;
  color: rgba(224,30,26,0.04);
  line-height: 1;
  user-select: none;
  letter-spacing: -12px;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 880px;
  padding: 60px 32px;
}
.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 10vw, 136px);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 28px;
}
.hero__desc {
  font-size: 19px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0 auto 44px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  font-size: 11px; color: rgba(255,255,255,0.25);
  letter-spacing: 4px; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

/* ===== FEATURED BANNER ===== */
.featured-wrap { padding: 72px 64px 80px; }
.featured {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.3s ease;
}
.featured:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.featured__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.featured__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.92) 40%, rgba(13,13,13,0.3) 100%);
}
.featured__badge {
  position: absolute; top: 28px; left: 36px;
  background: #E01E1A; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 14px;
}
.featured__body {
  position: relative; z-index: 1;
  padding: 40px 36px;
  display: flex; align-items: flex-end; justify-content: space-between;
  width: 100%; gap: 32px;
}
.featured__meta { font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.featured__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800; color: #fff;
  text-transform: uppercase; line-height: 0.92; margin-bottom: 12px;
}
.featured__desc { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.6; }
.featured__price-wrap { flex-shrink: 0; text-align: right; }
.featured__price-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.featured__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 800; color: #E01E1A; line-height: 1;
}
.featured__cta { margin-top: 16px; padding: 14px 32px; font-size: 16px; letter-spacing: 2px; }

/* ===== TOP 3 ===== */
.top3-wrap { padding: 0 64px 100px; }
.top3-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; margin-top: 36px; }

/* ===== EVENT CARDS (shared) ===== */
.event-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.event-card--tall:hover { transform: none; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.event-card__img {
  height: 210px;
  position: relative;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.event-card--tall .event-card__img {
  height: 260px;
  transition: transform 0.5s ease;
}
.event-card--tall .event-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.event-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: #E01E1A; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 10px;
  z-index: 1;
}
.event-card__best {
  position: absolute; top: 12px; right: 12px;
  background: #FFD700; color: #0D0D0D;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px;
  z-index: 1;
}
.event-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.event-card--tall .event-card__body { flex: 1; }
.event-card__top { flex: 1; }
.event-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: #0D0D0D;
  text-transform: uppercase; line-height: 1.05;
}
.event-card--tall .event-card__title { font-size: 26px; line-height: 1; margin-bottom: 4px; }
.event-card__sub { font-size: 14px; color: #666; line-height: 1.4; }
.event-card__meta { font-size: 13px; color: #999; }
.event-card--tall .event-card__meta { color: #888; }
.event-card__footer {
  margin-top: auto; padding-top: 14px; border-top: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
}
.event-card__price-label { font-size: 11px; color: #bbb; text-transform: uppercase; letter-spacing: 1px; }
.event-card--tall .event-card__price-label { font-size: 10px; }
.event-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: #E01E1A; line-height: 1;
}
.event-card--tall .event-card__price { font-size: 30px; }
.event-card__cta {
  background: #0D0D0D; color: #fff;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  display: block;
}
.event-card--tall .event-card__cta { padding: 10px 16px; }

/* ===== EVENTOS SECTION ===== */
.events-header { margin-bottom: 52px; }
.events-header__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.filter-bar { display: flex; gap: 6px; flex-shrink: 0; }
.filter-btn {
  background: transparent;
  color: #0D0D0D;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 9px 22px;
  border: 2px solid #0D0D0D;
  transition: all 0.2s ease;
}
.filter-btn.is-active { background: #0D0D0D; color: #fff; }
.filter-btn:not(.is-active):hover { background: rgba(0,0,0,0.06); }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ===== NOSOTROS ===== */
.about-header {
  margin-bottom: 72px;
  display: flex; gap: 80px; align-items: flex-end; flex-wrap: wrap;
}
.about-header__desc { font-size: 19px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 480px; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 2px; }
.stat-card { background: #161616; padding: 44px 36px; }
.stat-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 76px; font-weight: 800; color: #E01E1A; line-height: 1; margin-bottom: 8px;
}
.stat-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: #fff;
  text-transform: uppercase; margin-bottom: 8px;
}
.stat-card__desc { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card { background: #111; padding: 36px; }
.feature-card__icon { height: 44px; margin-bottom: 18px; opacity: 0.7; }
.feature-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff;
  text-transform: uppercase; margin-bottom: 10px;
}
.feature-card__desc { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-header { margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 290px; gap: 8px; }
.gallery-item { overflow: hidden; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== PARTNERS ===== */
.partners__label { text-align: center; margin-bottom: 44px; font-size: 13px; color: rgba(0,0,0,0.35); letter-spacing: 4px; text-transform: uppercase; }
.partners__row { display: flex; gap: 44px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.partners__row img { height: 32px; opacity: 0.5; filter: grayscale(1); }
.partners__row--certs { gap: 36px; padding-top: 36px; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 0; }
.partners__row--certs img { height: 36px; filter: none; }

/* ===== COTIZACIÓN ===== */
.quote-header { margin-bottom: 56px; text-align: center; }
.quote-success { text-align: center; padding: 60px 0; }
.quote-success__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 16px;
}
.quote-success__desc { font-size: 22px; color: rgba(255,255,255,0.8); line-height: 1.6; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / 3; }
.field label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.field input, .field select, .field textarea {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  width: 100%;
}
.field select { background: rgba(0,0,0,0.25); cursor: pointer; }
.field textarea { resize: none; }
.quote-form__submit { display: flex; justify-content: center; padding-top: 6px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff;
  width: 56px; height: 56px;
  border-radius: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden; white-space: nowrap; justify-content: center;
}
.whatsapp-float:hover {
  width: 200px; border-radius: 28px; gap: 10px; padding: 0 20px;
  justify-content: flex-start;
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.whatsapp-float__icon { flex-shrink: 0; }
.whatsapp-float__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.2s ease 0.1s;
}
.whatsapp-float:hover .whatsapp-float__label { max-width: 140px; opacity: 1; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  max-width: 760px; width: 100%; max-height: 90vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
  position: relative;
}
.modal__hero {
  height: 320px; position: relative; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.modal__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.5); border: none; color: #fff;
  width: 40px; height: 40px;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.modal__tag {
  position: absolute; top: 16px; left: 16px;
  background: #E01E1A; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 12px;
}
.modal__hero-text { position: absolute; bottom: 24px; left: 28px; }
.modal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 800; color: #fff;
  text-transform: uppercase; line-height: 1;
}
.modal__subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.modal__body { padding: 32px 28px; display: flex; flex-direction: column; gap: 24px; }
.modal__desc { font-size: 16px; color: #444; line-height: 1.75; margin: 0; }
.modal__info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #eee; }
.modal__info-cell { background: #F9F9F9; padding: 16px 18px; }
.modal__info-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.modal__info-value { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: #0D0D0D; }
.modal__info-value--price { font-size: 28px; font-weight: 800; color: #E01E1A; line-height: 1; }
.modal__includes-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; color: #0D0D0D;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.modal__include-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.modal__include-dot { width: 6px; height: 6px; background: #E01E1A; flex-shrink: 0; }
.modal__include-item span:last-child { font-size: 15px; color: #333; }
.modal__actions { display: flex; gap: 12px; padding-top: 8px; }
.modal__quote-btn { flex: 1; padding: 16px; text-align: center; display: block; }

/* ===== FOOTER ===== */
.footer { background: #0D0D0D; padding: 72px 64px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer__logo { height: 32px; margin-bottom: 18px; }
.footer__desc { font-size: 15px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 260px; margin: 0 0 24px; }
.footer__social { display: flex; gap: 20px; }
.footer__social a { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 500; transition: color 0.2s ease; }
.footer__social a:hover { color: #fff; }
.footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__links span { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s ease; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer__certs { display: flex; gap: 24px; align-items: center; }
.footer__certs img { height: 24px; opacity: 0.3; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stat-card.reveal { transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.feature-card.reveal { transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .section { padding: 80px 40px; }
  .featured-wrap { padding: 56px 40px 64px; }
  .top3-wrap { padding: 0 40px 80px; }
  .navbar { padding: 0 32px; }
  .footer, .gallery-header ~ .gallery-grid {}
  .footer { padding: 60px 32px 32px; }
  .stats-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .top3-grid { grid-template-columns: 1fr; }
  .top3-grid .event-card--tall { height: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .navbar__links { display: none; }
  .navbar__links.is-open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #0D0D0D;
    flex-direction: column;
    gap: 0;
    padding: 8px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .navbar__links.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar__toggle { display: flex; }
  .navbar__cta { display: none; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .modal__info { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 24px; }
  .featured-wrap { padding: 48px 24px 56px; }
  .top3-wrap { padding: 0 24px 64px; }
  .navbar { padding: 0 20px; gap: 16px; }
  .footer { padding: 48px 20px 28px; }
  .quote-form, .footer__grid, .events-grid, .stats-grid, .feature-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .field--full { grid-column: 1; }
  .featured__body { flex-direction: column; align-items: flex-start; gap: 20px; }
  .featured__price-wrap { text-align: left; }
  .featured { height: auto; padding-bottom: 24px; }
  .about-header { gap: 24px; }
  .gallery-grid { grid-auto-rows: 200px; }
  .modal__actions { flex-direction: column; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
}
