:root {
  --yellow: #ffd400;
  --yellow-dark: #efb900;
  --blue: #00a7ff;
  --pink: #ff3bbd;
  --green: #39e75f;
  --orange: #ff7a00;
  --black: #090909;
  --white: #ffffff;
  --cream: #fff9df;
  --grey-50: #fafafa;
  --grey-100: #f1f1f1;
  --grey-200: #e3e3e3;
  --grey-700: #3f3f3f;
  --grey-900: #151515;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --shadow-hard: 10px 10px 0 var(--black);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.section-pad { padding: 82px 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus { left: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--black);
}

.nav {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { width: 156px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 13px;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible { background: var(--grey-100); outline: none; }

.nav-menu .nav-cta {
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  border: 3px solid var(--black);
  background: var(--yellow);
  border-radius: 14px;
  width: 50px;
  height: 46px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--black);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--black);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 212, 0, 0.45), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 167, 255, 0.25), transparent 24%),
    radial-gradient(circle at 80% 88%, rgba(255, 59, 189, 0.18), transparent 28%),
    linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 5px solid var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.04) 75%);
  background-size: 34px 34px;
  background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.section-head h2,
.booking-card h2,
.team-card h2,
.venue-card h2,
.note-card h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.9rem);
  max-width: 850px;
  text-transform: uppercase;
}

.hero-lede {
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--grey-700);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--black);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  border: 3px solid var(--black);
}

.dark-eyebrow::before { background: var(--white); }

.hero-actions,
.hero-proof {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 3px solid var(--black);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 6px 6px 0 var(--black);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--black);
  outline: none;
}

.button-primary { background: var(--yellow); color: var(--black); }
.button-secondary { background: var(--white); color: var(--black); }
.button-dark { background: var(--black); color: var(--white); box-shadow: 6px 6px 0 rgba(0,0,0,0.28); border-color: var(--black); }
.button-dark:hover { box-shadow: 8px 8px 0 rgba(0,0,0,0.28); }
.button-full { width: 100%; }
.large-button { font-size: 1.08rem; min-height: 58px; }

.hero-proof div {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  padding: 13px 16px;
  min-width: 145px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.12);
}

.hero-proof strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  color: var(--grey-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.hero-photo-card,
.quick-card {
  background: var(--white);
  border: 5px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.hero-photo-card {
  position: relative;
  min-height: 390px;
  transform: rotate(1.5deg);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--pink);
  color: var(--white);
  border: 3px solid var(--black);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--black);
}

.quick-card { padding: 26px; transform: rotate(-1deg); }
.quick-card h2 { margin: 0 0 16px; font-size: 1.6rem; }

.icon-list,
.check-list,
.bring-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  font-weight: 700;
}

.icon-list li:last-child { border-bottom: 0; margin-bottom: 18px; }

.hero-bg-shape {
  position: absolute;
  border: 5px solid var(--black);
  background: var(--yellow);
  border-radius: 999px;
  pointer-events: none;
}

.shape-one { width: 210px; height: 56px; right: 7%; top: 105px; transform: rotate(-12deg); }
.shape-two { width: 170px; height: 42px; left: 4%; bottom: 68px; transform: rotate(8deg); }

.intro-strip {
  background: var(--black);
  color: var(--white);
  border-bottom: 5px solid var(--black);
}

.intro-strip .eyebrow { color: var(--white); }

.strip-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  align-items: center;
}

.strip-grid h2 { font-size: clamp(2.2rem, 4vw, 4.3rem); }
.strip-grid p:last-child { font-size: 1.18rem; font-weight: 600; color: #f4f4f4; }

.section-head { max-width: 720px; }
.section-head.centred { margin: 0 auto 42px; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 4.7rem); }
.section-head p:not(.eyebrow) { color: var(--grey-700); font-weight: 600; font-size: 1.08rem; }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-card,
.info-card,
.price-card,
.timeline-item,
.safety-card,
.team-card,
.venue-card,
.note-card,
.booking-card,
.faq-list details {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--black);
}

.activity-card {
  padding: 25px;
  min-height: 260px;
}
.activity-card:nth-child(2) .activity-icon { background: var(--blue); color: var(--white); }
.activity-card:nth-child(3) .activity-icon { background: var(--pink); color: var(--white); }
.activity-card:nth-child(4) .activity-icon { background: var(--green); }

.activity-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  border: 3px solid var(--black);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.activity-card h3,
.feature-list h3,
.timeline-item h3,
.info-card h3,
.safety-card h3,
.booking-side-card h3,
.showcase-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.activity-card p,
.feature-list p,
.timeline-item p,
.info-card p,
.safety-card p,
.team-card p,
.venue-card p,
.note-card p,
.booking-card p,
.faq-list p,
.booking-side-card p { color: var(--grey-700); font-weight: 600; }

.cta-panel {
  margin-top: 34px;
  background: var(--yellow);
  border: 5px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-hard);
}

.cta-panel h3 { font-size: 1.6rem; margin: 0 0 3px; }
.cta-panel p { margin: 0; font-weight: 700; }

.cta-blue { background: var(--blue); color: var(--white); }
.cta-blue p { color: var(--white); }
.cta-pink { background: var(--pink); color: var(--white); }
.cta-pink p { color: var(--white); }

.yellow-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,167,255,0.24), transparent 18%),
    radial-gradient(circle at 92% 15%, rgba(255,59,189,0.22), transparent 18%),
    var(--yellow);
  border-block: 5px solid var(--black);
}

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.yellow-section .section-head p:not(.eyebrow) { color: var(--black); }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-list article {
  padding: 24px;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0 var(--black);
}

.day-section { background: var(--grey-50); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item { padding: 24px; position: relative; }
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
}
.timeline-item:nth-child(2) span { background: var(--blue); color: var(--white); }
.timeline-item:nth-child(3) span { background: var(--pink); color: var(--white); }
.timeline-item:nth-child(4) span { background: var(--green); }

.photo-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.photo-strip img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border: 4px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--black);
}
.photo-strip img:nth-child(2) { transform: translateY(18px) rotate(1deg); }
.photo-strip img:nth-child(3) { transform: rotate(-1deg); }

.showcase-card {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.showcase-card p { color: #ececec; }
.showcase-card .eyebrow { color: var(--white); }

.details-section {
  background:
    linear-gradient(90deg, rgba(255,212,0,0.16), transparent),
    var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card { padding: 28px; }
.featured-price { background: var(--yellow); }
.price-label { margin: 0 0 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.price-card h3 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 0.9; margin: 0 0 12px; letter-spacing: -0.05em; }
.price-card h3 span { font-size: 1rem; letter-spacing: 0; }

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.info-card { padding: 24px; }
.info-card p { margin-bottom: 0; }
.accent-pink { background: rgba(255, 59, 189, 0.12); }
.accent-blue { background: rgba(0, 167, 255, 0.12); }
.accent-green { background: rgba(57, 231, 95, 0.14); }

.venue-section { background: var(--cream); }
.venue-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,212,0,0.65), rgba(255,255,255,0.85)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.08) 0 2px, transparent 2px 18px);
  border: 4px solid var(--black);
  border-radius: 24px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder strong,
.map-placeholder small { display: block; }
.map-placeholder small { color: var(--grey-700); font-weight: 700; }

.safety-section { background: var(--white); }
.safety-card { padding: 30px; }
.check-list li,
.bring-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--grey-200);
  font-weight: 800;
}
.check-list li::before,
.bring-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  font-size: 0.8rem;
}

.team-section {
  background: var(--black);
  color: var(--white);
}
.team-card {
  padding: 42px;
  background: var(--white);
  color: var(--black);
  max-width: 920px;
}
.team-card h2 { font-size: clamp(2rem, 4vw, 4.1rem); }
.team-card strong { color: var(--black); background: linear-gradient(transparent 56%, var(--yellow) 56%); }

.packing-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.bring-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.note-section { background: var(--yellow); border-block: 5px solid var(--black); }
.note-card {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.note-card h2 { font-size: clamp(2rem, 4vw, 3.8rem); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 13px;
}
.faq-list details { padding: 0; overflow: hidden; box-shadow: 5px 5px 0 var(--black); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0; padding: 0 22px 20px; }

.booking-section { background: var(--yellow); }
.booking-card {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: start;
}
.booking-card h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); }

.booking-side-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--black);
}
.booking-side-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-bottom: 4px solid var(--black);
}
.booking-side-card div { padding: 24px; }
.booking-side-card h3 { margin: 0 0 8px; font-size: 1.4rem; }
.booking-side-card a { font-weight: 900; }
.form-note { font-size: 0.86rem; margin-bottom: 0; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-grid img { width: 130px; background: var(--white); border-radius: 16px; margin-bottom: 12px; }
.footer-grid p { color: #d8d8d8; margin: 8px 0 0; }
.footer-grid a { color: var(--white); text-decoration-thickness: 2px; text-underline-offset: 3px; }

.small-note { font-size: 0.92rem; }

@media (max-width: 1020px) {
  .activity-grid,
  .timeline,
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .hero-grid,
  .two-col,
  .details-grid,
  .venue-card,
  .booking-card,
  .faq-grid,
  .packing-grid,
  .strip-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .info-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav { min-height: 74px; }
  .brand img { width: 124px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 4px solid var(--black);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow-hard);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 13px 14px; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; }
  .section-pad { padding: 62px 0; }
  .feature-list,
  .price-cards,
  .bring-list { grid-template-columns: 1fr; }
  .showcase-card,
  .cta-panel,
  .note-card { flex-direction: column; align-items: flex-start; }
  .hero-copy h1 { font-size: clamp(2.25rem, 11vw, 4rem); }
  .hero-photo-card,
  .quick-card { transform: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, var(--max-width)); }
  .activity-grid,
  .timeline,
  .photo-strip { grid-template-columns: 1fr; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .activity-card { min-height: auto; }
  .booking-card,
  .team-card,
  .venue-card,
  .note-card,
  .safety-card { padding: 24px; }
  .photo-strip img,
  .photo-strip img:nth-child(2),
  .photo-strip img:nth-child(3) { transform: none; height: 220px; }
  .button { width: 100%; }
}
