:root {
  --maroon: #5e0000;
  --maroon-deep: #3e0000;
  --white: #ffffff;
  --orange: #ed7e08;
  --amber: #ee8f0f;
  --teal: #03877c;
  --slate: #0e4450;
  --rust: #dd5614;
  --cream: #fbf4e9;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Work Sans", sans-serif;
  color: var(--slate);
  background: var(--cream);
  line-height: 1.55;
  overflow-wrap: break-word;
}
h1,
h2,
h3,
.display {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: currentColor;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--maroon);
  border-bottom: 3px solid var(--rust);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-text {
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--amber);
}
.links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.links a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
}
.links a:hover {
  color: var(--amber);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav .btn-whatsapp {
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #046f66;
}
.btn-whatsapp-icon {
  padding: 9px 12px;
}
.nav-mobile-hide {
  display: flex;
}
.nav-mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .nav-mobile-hide {
    display: none;
  }
  .nav-mobile-only {
    display: inline-flex;
  }
  .mobile-links {
    display: flex;
    gap: 22px;
    padding: 0 20px 12px;
    max-width: 1120px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mobile-links::-webkit-scrollbar {
    display: none;
  }
  .mobile-links a {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 6px 0;
  }
  .mobile-links a:hover {
    color: var(--amber);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--maroon);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(62, 0, 0, 0.72);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 3;
}
.hero-copy {
  max-width: 46rem;
  padding-bottom: 70px;
}
.eyebrow {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero p.lede {
  margin-top: 22px;
  font-size: 1.15rem;
  max-width: 46ch;
  color: #f3e3d3;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--maroon-deep);
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 2px;
  font-size: 1rem;
}
.btn-primary:hover {
  background: var(--amber);
}
.btn-ghost {
  border: 2px solid var(--cream);
  color: var(--cream);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 2px;
  font-size: 1rem;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.horizon {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 90px);
  position: relative;
  z-index: 2;
  margin-top: 56px;
}

/* ---------- STAT STRIP ---------- */
.stat-strip {
  background: var(--slate);
  color: var(--cream);
}
.stat-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 28px;
  justify-content: space-between;
}
.stat-strip p {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-strip .divider-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ---------- OFFER SECTION ---------- */
.offer {
  padding: 96px 0 80px;
  background: var(--cream);
}
.offer-head {
  max-width: 52ch;
  margin-bottom: 56px;
}
.offer-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon);
}
.offer-head p {
  margin-top: 16px;
  font-size: 1.08rem;
  color: #4a3226;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--slate);
}
.offer-item {
  padding: 30px 26px 34px;
  border-right: 3px solid var(--slate);
  border-bottom: 3px solid var(--slate);
}
.offer-item:last-child {
  border-right: none;
}
.offer-item:nth-child(1) {
  background: var(--orange);
  color: var(--maroon-deep);
}
.offer-item:nth-child(2) {
  background: var(--teal);
  color: var(--white);
}
.offer-item:nth-child(3) {
  background: var(--amber);
  color: var(--maroon-deep);
}
.offer-item:nth-child(4) {
  background: var(--maroon);
  color: var(--cream);
}
.offer-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.offer-item p {
  font-size: 0.95rem;
}
@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offer-item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-item {
    border-right: none !important;
  }
}

/* ---------- PASSES ---------- */
.passes {
  background: var(--white);
  padding: 88px 0;
  position: relative;
}
.passes-head {
  max-width: 60ch;
  margin-bottom: 48px;
}
.passes-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon);
}
.passes-head p {
  margin-top: 16px;
  font-size: 1.08rem;
  color: #4a3226;
}

.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pass-card {
  padding: 38px 32px;
  position: relative;
}
.pass-card.day {
  background: var(--amber);
  color: var(--maroon-deep);
}
.pass-card.week {
  background: var(--teal);
  color: var(--white);
}
.pass-label {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.pass-price {
  font-family: "Archivo Black", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}
.pass-unit {
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}
.pass-desc {
  margin-top: 16px;
  font-size: 0.98rem;
  max-width: 34ch;
}
.pass-btn {
  display: inline-block;
  margin-top: 26px;
  background: var(--maroon-deep);
  color: var(--white);
  padding: 13px 24px;
  font-weight: 700;
  border-radius: 2px;
  font-size: 0.95rem;
}
.pass-card.week .pass-btn {
  background: var(--white);
  color: var(--slate);
}
.pass-btn:hover {
  opacity: 0.88;
}
@media (max-width: 700px) {
  .pass-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--cream);
  padding: 88px 0;
}
.gallery-head {
  max-width: 56ch;
  margin-bottom: 48px;
}
.gallery-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon);
}
.gallery-head p {
  margin-top: 16px;
  font-size: 1.08rem;
  color: #4a3226;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--slate);
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-right: 3px solid var(--slate);
}
.gallery-item:last-child {
  border-right: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    border-right: none !important;
    aspect-ratio: 4/3;
  }
}

/* ---------- LOCATION ---------- */
.location {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 88px 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
}
.location p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #e7d3c2;
  max-width: 44ch;
}
.loc-list {
  margin-top: 26px;
  list-style: none;
}
.loc-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.98rem;
}
.loc-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.loc-list .loc-label {
  color: var(--amber);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loc-list .loc-value {
  text-align: right;
}

.loc-visual {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}
.loc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CONTACT / FOOTER ---------- */
.contact {
  background: var(--maroon);
  color: var(--white);
  padding: 80px 0 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.contact p.lede {
  margin-top: 16px;
  max-width: 40ch;
  color: #f0dcc9;
  font-size: 1.05rem;
}
.contact-ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-row .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--maroon-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-info-row .ico .icon {
  width: 21px;
  height: 21px;
}
.contact-info-row:hover .ico {
  background: var(--amber);
}
.contact-info-row a,
.contact-info-row span.txt {
  font-weight: 600;
  font-size: 1rem;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 28px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #d9b9a6;
  font-size: 0.85rem;
}
.footer-bottom .socials {
  display: flex;
  gap: 18px;
}
.footer-bottom .socials a {
  color: var(--amber);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-bottom .socials a:hover {
  color: var(--cream);
}
.footer-bottom .socials .icon {
  width: 17px;
  height: 17px;
}

@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-visual {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- SMALL SCREENS ---------- */
@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  .nav {
    padding: 14px 20px;
  }
  .hero {
    padding-top: 56px;
  }
  .hero-inner {
    padding: 0 20px;
  }
  .hero-copy {
    padding-bottom: 48px;
  }
  .hero p.lede {
    font-size: 1.05rem;
  }
  .horizon {
    margin-top: 36px;
  }
  .stat-strip .wrap {
    gap: 14px;
    padding: 18px 20px;
    justify-content: flex-start;
  }
  .offer {
    padding: 64px 0 56px;
  }
  .offer-head {
    margin-bottom: 40px;
  }
  .passes,
  .gallery,
  .location {
    padding: 64px 0;
  }
  .contact {
    padding-top: 64px;
  }
  .contact-grid {
    gap: 40px;
    padding-bottom: 48px;
  }
  .pass-card {
    padding: 30px 24px;
  }
  .pass-price {
    font-size: 2.9rem;
  }
  .loc-list li {
    flex-wrap: wrap;
    gap: 4px 20px;
  }
  .loc-list .loc-value {
    text-align: left;
  }
  .footer-bottom {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 440px) {
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost,
  .contact-ctas .btn-primary,
  .contact-ctas .btn-ghost {
    width: 100%;
    text-align: center;
  }
}
