:root {
  --green: #174f3a;
  --green-2: #2f6f45;
  --teal: #087a8e;
  --river: #7dd9d1;
  --gold: #f2b84b;
  --sand: #f4e8d0;
  --cream: #fffaf0;
  --ink: #16211d;
  --muted: #61716a;
  --line: rgba(22, 33, 29, 0.14);
  --shadow: 0 22px 60px rgba(9, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 240px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fffaf0;
  box-shadow: 0 10px 30px rgba(22, 33, 29, 0.14);
}

.brand-mark img {
  position: absolute;
  top: -4%;
  left: -20%;
  width: 140%;
  max-width: none;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--teal);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a {
  color: rgba(22, 33, 29, 0.78);
}

.nav-links a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.language-switch button {
  border: 0;
  padding: 4px 2px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.1;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(23, 79, 58, 0.22);
}

.button-primary:hover,
.nav-cta:hover {
  background: #0f3f2d;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 92px));
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../img/manuel-antonio-panorama-clean-web.jpg");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 33, 30, 0.82) 0%, rgba(8, 33, 30, 0.62) 34%, rgba(8, 33, 30, 0.1) 72%),
    linear-gradient(0deg, rgba(8, 33, 30, 0.58) 0%, rgba(8, 33, 30, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 92vw);
  padding: clamp(42px, 5.5vw, 60px) clamp(18px, 6vw, 72px) 24px;
}

.eyebrow,
.section-kicker,
.tour-tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
}

.hero-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
}

.hero-facts div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 8px;
  color: #fff;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(64px, 9vw, 108px) 0;
}

.trust-band {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.trust-grid article {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 900;
}

.trust-grid h2,
.tour-card h3,
.package-grid h3,
.process-list h3,
.guide-copy h2,
.booking-copy h2 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.trust-grid h2 {
  font-size: 1.05rem;
}

.trust-grid p,
.tour-card p,
.package-grid p,
.process-list p,
.guide-copy p,
.booking-copy p,
.faq p,
.form-note,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-note {
  max-width: 880px;
  margin: -10px 0 28px;
  color: var(--muted);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.section-heading p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link,
.card-link {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(23, 79, 58, 0.28);
  text-underline-offset: 6px;
}

.light-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

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

.tour-card,
.package-grid article,
.process-list li,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(22, 33, 29, 0.06);
}

.tour-card {
  overflow: hidden;
}

.featured-tour {
  grid-column: span 2;
}

.tour-image {
  min-height: 230px;
  background-position: center;
  background-size: cover;
}

.image-park {
  background-image: linear-gradient(rgba(23, 79, 58, 0.08), rgba(23, 79, 58, 0.08)), url("../img/tours/manuel-antonio-guide-portrait.jpg");
}

.image-atv {
  background-image: linear-gradient(rgba(23, 79, 58, 0.08), rgba(23, 79, 58, 0.08)), url("../img/tours/atv-water-crossing.jpg");
}

.image-horse {
  background-image: linear-gradient(rgba(23, 79, 58, 0.06), rgba(23, 79, 58, 0.06)), url("../img/tours/brisas-del-nara-horseback.jpg");
}

.image-horse-beach {
  background-image: linear-gradient(rgba(23, 79, 58, 0.06), rgba(23, 79, 58, 0.06)), url("../img/tours/beach-horseback-riding.jpg");
}

.image-rafting {
  background-image: linear-gradient(rgba(8, 75, 97, 0.08), rgba(8, 75, 97, 0.08)), url("../img/tours/white-water-rafting.jpg");
}

.image-fishing {
  background-image: linear-gradient(rgba(8, 75, 97, 0.04), rgba(8, 75, 97, 0.04)), url("../img/tours/sport-fishing-snapper.jpg");
}

.image-mangrove {
  background: linear-gradient(135deg, rgba(18, 78, 57, 0.42), rgba(125, 217, 209, 0.1)), url("../img/local-area/damas-island-mangrove-channel.jpg") center/cover;
}

.image-jetski {
  background-image: linear-gradient(rgba(8, 75, 97, 0.08), rgba(8, 75, 97, 0.08)), url("../img/tours/jet-ski-adventure.jpg");
}

.image-custom {
  background: linear-gradient(135deg, rgba(22, 33, 29, 0.34), rgba(242, 184, 75, 0.08)), url("../img/local-area/private-transport-van-quepos.jpg") center/cover;
}

.tour-content {
  padding: 24px;
}

.tour-content dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.tour-content dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
}

.tour-content dt {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-content dd {
  margin: 0;
  color: var(--muted);
}

.park-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.park-options > div {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.park-options .recommended-option {
  border-color: rgba(8, 122, 142, 0.45);
  background: rgba(125, 217, 209, 0.15);
}

.park-options strong {
  display: inline-block;
  margin-right: 5px;
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
}

.park-options > div > span:not(.option-label) {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.park-options p {
  margin-top: 10px;
  font-size: 0.88rem;
}

.option-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-section {
  background: var(--sand);
}

.guide-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.guide-grid > *,
.booking-grid > * {
  min-width: 0;
}

.guide-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.map-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(23, 79, 58, 0.28);
  text-underline-offset: 6px;
}

.park-prep {
  background: #fff;
}

.prep-note {
  max-width: 260px;
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 750;
}

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

.prep-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bring-card {
  background: rgba(47, 111, 69, 0.08);
}

.avoid-card {
  background: rgba(242, 184, 75, 0.12);
}

.prep-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.prep-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.prep-symbol {
  position: absolute;
  top: -34px;
  right: 18px;
  color: rgba(23, 79, 58, 0.08);
  font-size: 9rem;
  font-weight: 950;
  line-height: 1;
}

.gallery {
  background: #102f27;
  color: #fff;
}

.gallery .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0b211c;
}

.photo-grid .photo-wide {
  grid-column: span 2;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.025);
}

.photo-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(transparent, rgba(5, 24, 19, 0.82));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.photo-credit {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.subpage-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.subpage-hero-bg,
.subpage-hero .hero-shade {
  position: absolute;
  inset: 0;
}

.gallery-hero .subpage-hero-bg {
  background: linear-gradient(rgba(14, 45, 37, 0.18), rgba(14, 45, 37, 0.18)), url("../img/park-gallery/manuel-antonio-beach-almonds.jpg") center/cover;
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  padding: 170px 0 90px;
}

.subpage-hero-content h1 {
  max-width: 880px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.credit-feature {
  background: #fff;
}

.credit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: 46px;
  align-items: center;
}

.credit-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(22, 33, 29, 0.14);
}

.credit-grid img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.credit-grid h2,
.cta-panel h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.credit-grid p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.credit-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

.wildlife-gallery-section {
  background: var(--cream);
}

.local-area-section {
  background: #fff;
}

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

.wildlife-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 33, 29, 0.07);
}

.wildlife-card.wildlife-wide {
  grid-column: span 2;
}

.wildlife-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.wildlife-card img.wildlife-contain {
  object-fit: contain;
  background: #0b211c;
}

.wildlife-card > div {
  padding: 22px;
}

.wildlife-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wildlife-card h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.wildlife-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.wildlife-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.wildlife-card dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.wildlife-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.wildlife-card dd {
  margin: 0;
}

.local-area-grid .wildlife-card img {
  height: 330px;
}

.local-area-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-cta {
  background: #102f27;
  color: #fff;
}

.cta-panel {
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(23, 79, 58, 0.96), rgba(8, 122, 142, 0.35)), url("../img/park-gallery/turquoise-browed-motmot.jpg") right center/cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.cta-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.packages {
  background: #fff;
}

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

.package-grid article {
  padding: 28px;
}

.package-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 30px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 950;
}

.faq {
  background: #f8f2e8;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  padding-top: 12px;
}

.booking {
  background:
    linear-gradient(135deg, rgba(23, 79, 58, 0.94), rgba(8, 122, 142, 0.85)),
    url("../img/manuel-antonio-panorama-clean-web.jpg") center/cover;
  color: #fff;
}

.booking .section-kicker,
.booking-copy p,
.booking-copy a {
  color: rgba(255, 255, 255, 0.86);
}

.booking-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-box a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 33, 29, 0.18);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.additional-tours {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(22, 33, 29, 0.14);
  border-radius: 8px;
  background: #fff;
}

.additional-tours legend {
  padding: 0 8px;
  color: var(--green);
  font-weight: 900;
}

.additional-tours > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.additional-tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.additional-tour-grid label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  padding: 11px;
  border: 1px solid rgba(22, 33, 29, 0.12);
  border-radius: 6px;
  background: #fbfaf6;
  color: var(--ink);
  font-weight: 700;
}

.additional-tour-grid input {
  min-height: auto;
  margin-top: 2px;
}

.additional-tour-notes {
  margin-top: 16px;
}

.deposit-notice {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: #fff8e8;
  color: var(--muted);
}

.deposit-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 122, 142, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.policy {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.policy input {
  min-height: auto;
  margin-top: 4px;
}

.form-button {
  width: 100%;
  min-height: 54px;
}

.form-note {
  align-self: center;
  font-size: 0.88rem;
}

.form-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.footer-mark {
  width: 76px;
  height: 76px;
  box-shadow: none;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 850;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.response-page,
.confirmation-main,
.payment-main {
  min-height: calc(100vh - 92px);
  padding: clamp(28px, 8vw, 80px) 18px;
  background:
    linear-gradient(135deg, rgba(23, 79, 58, 0.9), rgba(8, 122, 142, 0.82)),
    url("../img/manuel-antonio-panorama-clean-web.jpg") center/cover;
}

.response-card,
.confirmation-card,
.payment-card {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
}

.confirmation-card h1,
.response-card h1,
.payment-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.confirmation-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-box {
  margin: 24px 0;
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  white-space: pre-wrap;
}

.payment-intro,
.payment-note {
  color: var(--muted);
}

.payment-summary,
.paypal-card {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-summary {
  display: grid;
  gap: 6px;
}

.paypal-card {
  display: grid;
  place-items: center;
}

.paypal-card > div[id^="paypal-container-"] {
  width: min(100%, 520px);
}

.confirmation-actions,
.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.whatsapp-button {
  color: #fff;
  background: #128c4a;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .nav-links {
    justify-content: start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: space-between;
  }

  .trust-grid,
  .tour-grid,
  .package-grid,
  .process-list,
  .faq-grid,
  .prep-grid,
  .guide-grid,
  .credit-grid,
  .wildlife-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wildlife-card.wildlife-wide {
    grid-column: auto;
  }

  .featured-tour {
    grid-column: auto;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .additional-tour-grid {
    grid-template-columns: 1fr;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 44px, 1180px);
  }

  .site-header {
    min-height: 78px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .subpage-hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 74px;
  }

  .subpage-hero-content {
    padding: 130px 0 70px;
  }

  .booking-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .split-heading {
    display: grid;
  }

  .hero-actions .button,
  .confirmation-actions .button,
  .response-actions .button {
    width: 100%;
  }

  .tour-image {
    min-height: 190px;
  }

  .park-options,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: 230px;
  }

  .photo-grid .photo-wide {
    grid-column: auto;
  }

  .credit-grid img {
    height: 470px;
  }

  .wildlife-card img {
    height: 250px;
  }

  .wildlife-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cta-panel {
    padding: 30px 24px;
  }
}
