/*
  CAPTA Social Hub styles
  --------------------------------------------------------------------------
  Colour updates: edit the CSS custom properties below.
  Logo updates: upload logo files into /assets/images/ and update logoImage in /assets/js/park-data.js.
*/
@font-face {
  font-family: 'Bushcraft';
  src: url('/assets/fonts/Bushcraft%20one.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Aleo Bold';
  src: url('/assets/fonts/Aleo-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f7edd7; /* Main tourism-poster cream background colour. */
  --cream-deep: #ead8b7;
  --paper: #fff8e8;
  --green: #294c33; /* Primary earthy green. */
  --green-soft: #6f8a62;
  --brown: #7a4f2b; /* Primary earthy brown. */
  --brown-dark: #4d321d;
  --gold: #c89142;
  --ink: #253126;
  --muted: #6b604f;
  --shadow: 0 24px 70px rgba(54, 40, 24, 0.22);
  --radius-large: 32px;
  --radius-medium: 20px;
  --capta-deep-blue: #1c4d78;
  --capta-bright-blue: #0361a0;
  --capta-lime: #a9cf38;
  --capta-pale-blue: #dbf1f8;
  --capta-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(200, 145, 66, 0.22), transparent 34rem),
    linear-gradient(135deg, var(--cream) 0%, #f3e5c9 52%, #e7d0a8 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  background-image:
    linear-gradient(rgba(41, 76, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 76, 51, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  padding: 18px 12px;
}

.mobile-card {
  width: min(100%, 450px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(122, 79, 43, 0.2);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.hero,
.index-hero {
  position: relative;
  padding: 28px 22px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(246, 233, 205, 0.98)),
    radial-gradient(circle at 20% 0%, rgba(111, 138, 98, 0.35), transparent 45%);
}

.hero::after,
.index-hero::after {
  position: relative;
  z-index: 1;
  display: block;
  width: 78px;
  height: 5px;
  margin: 22px auto 0;
  content: '';
  background: var(--gold);
  border-radius: 999px;
}

.index-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: clamp(240px, 86vw, 390px);
  max-width: 92%;
  opacity: 0.12;
  pointer-events: none;
  transform: translate(-50%, -53%);
}

.index-hero-content,
.index-intro {
  position: relative;
  z-index: 1;
}

.index-hero h1 {
  text-shadow: 0 1px 0 rgba(255, 248, 232, 0.8);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--brown-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-frame {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  margin: 0 auto 18px;
  padding: 16px;
  background: #fffdf4;
  border: 3px solid rgba(41, 76, 51, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(200, 145, 66, 0.1);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-fallback {
  color: var(--green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.1rem, 12vw, 3.2rem);
}

h2 {
  font-size: 1.45rem;
}

.tagline,
.index-intro {
  margin: 14px auto 0;
  color: var(--brown-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.intro {
  margin: 14px auto 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 14px;
}

.video-section,
.button-section,
.contact-panel,
.hub-list-section {
  padding: 24px 18px;
}

.video-section,
.contact-panel {
  background: rgba(234, 216, 183, 0.38);
}

.video-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 4px solid #fffdf4;
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 30px rgba(54, 40, 24, 0.14);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.button-grid,
.park-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.action-button,
.park-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 110px;
  padding: 15px 16px;
  color: #fffdf4;
  text-decoration: none;
  background: var(--green);
  border: 2px solid rgba(255, 253, 244, 0.35);
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(41, 76, 51, 0.18);
}

.action-button:nth-child(even),
.park-list li:nth-child(even) .park-link {
  background: var(--brown);
}

.action-button:focus-visible,
.action-button:hover,
.park-link:focus-visible,
.park-link:hover {
  outline: 3px solid rgba(200, 145, 66, 0.55);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.action-button span:nth-child(2),
.park-link-text {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
  text-align: left;
}

.park-list-logo {
  flex: 0 0 95px;
  width: 95px;
  max-width: 95px;
  max-height: 64px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.park-link-arrow {
  flex: 0 0 auto;
  font-size: 1.1rem;
  font-weight: 800;
}

.action-button strong,
.park-link strong {
  font-size: 1.05rem;
}

.action-button small,
.park-link small {
  color: rgba(255, 253, 244, 0.8);
  font-size: 0.84rem;
}

.action-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  background: #fffdf4;
  border-radius: 50%;
}

.action-icon img,
.rainforestation-contact span img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.contact-button {
  background: var(--brown-dark);
}

.contact-panel dl {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.contact-panel div {
  padding: 14px;
  background: rgba(255, 253, 244, 0.74);
  border: 1px solid rgba(122, 79, 43, 0.16);
  border-radius: 16px;
}

dt {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  padding: 22px 18px 26px;
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.fine-print {
  margin-top: 8px;
  font-size: 0.83rem;
}

.fine-print code {
  padding: 2px 5px;
  background: rgba(234, 216, 183, 0.75);
  border-radius: 5px;
}

.site-shell[data-park-id='rainforestation'] {
  padding: 0 12px 28px;
  background: linear-gradient(180deg, #72892b 0%, #637d24 100%);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
}

.rainforestation-card {
  overflow: hidden;
  color: #3d270f;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  background: #6e862b;
  border-color: rgba(61, 39, 15, 0.18);
  box-shadow: 0 24px 70px rgba(38, 50, 14, 0.34);
}

.rainforestation-hero {
  position: relative;
  height: 148px;
  overflow: hidden;
  background: #294c33;
}

.rainforestation-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rainforestation-content {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 0 18px 34px;
  text-align: center;
}

.rainforestation-logo-frame {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  padding: 18px;
  margin: -64px 0 0 0;
  background: rgba(255, 253, 244, 0.94);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(61, 39, 15, 0.18);
}

.rainforestation-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rainforestation-eyebrow {
  margin: -8px 0 0;
  color: #4a300f;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
}

.rainforestation-card h1 {
  margin: 0;
  color: #4a300f;
  font-family: 'Bushcraft', Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.05;
}

.rainforestation-message {
  max-width: 34rem;
  margin: 0 auto;
  color: #4a300f;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.rainforestation-video {
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(61, 39, 15, 0.72);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(61, 39, 15, 0.42);
  aspect-ratio: 16 / 9;
}

.rainforestation-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rainforestation-button-list {
  display: grid;
  gap: 12px;
}

.rainforestation-link-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  color: #1f2b1b;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  text-decoration: none;
  background: #eef1f7;
  border: 2px solid rgba(61, 39, 15, 0.22);
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(61, 39, 15, 0.55);
}

.rainforestation-link-button:hover,
.rainforestation-link-button:focus-visible {
  outline: 3px solid rgba(200, 145, 66, 0.65);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.rainforestation-link-button > img {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.rainforestation-contact {
  display: grid;
  gap: 13px;
  padding-top: 4px;
  text-align: left;
}

.rainforestation-contact h2 {
  margin: 0 0 2px;
  color: #4a300f;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  text-align: center;
}

.rainforestation-contact a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #4a300f;
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.rainforestation-contact span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 253, 244, 0.92);
  background: rgba(255, 253, 244, 0.14);
  border-radius: 50%;
}

.homepage {
  color: var(--capta-deep-blue);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(169, 207, 56, 0.24), transparent 22rem),
    linear-gradient(160deg, var(--capta-white) 0%, var(--capta-pale-blue) 50%, #bde5f3 100%);
}

.homepage::before {
  background-image:
    linear-gradient(rgba(3, 97, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 97, 160, 0.045) 1px, transparent 1px);
}

.homepage .mobile-card {
  background: var(--capta-white);
  border-color: rgba(28, 77, 120, 0.16);
  box-shadow: 0 24px 70px rgba(28, 77, 120, 0.2);
}

.homepage .index-hero {
  padding: 32px 22px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(219, 241, 248, 0.92)),
    radial-gradient(circle at 20% 10%, rgba(169, 207, 56, 0.32), transparent 42%);
}

.homepage .index-hero::after {
  width: 92px;
  height: 6px;
  background: var(--capta-lime);
}

.homepage .index-hero-watermark {
  width: clamp(250px, 88vw, 400px);
  max-width: 92%;
  opacity: 0.08;
  filter: saturate(0.86) contrast(1.08);
  transform: translate(-50%, -53%);
}

.homepage .eyebrow {
  color: var(--capta-bright-blue);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
}

.homepage .index-hero h1 {
  color: var(--capta-deep-blue);
  font-family: 'Bushcraft', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 14vw, 4.25rem);
  font-weight: 400;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.homepage .index-intro {
  max-width: 22rem;
  color: var(--capta-deep-blue);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
}

.homepage .hub-list-section {
  background: linear-gradient(180deg, var(--capta-white), rgba(219, 241, 248, 0.62));
}

.homepage .section-heading h2 {
  color: var(--capta-deep-blue);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
}

.homepage .park-link {
  gap: 9px;
  min-height: 110px;
  color: var(--capta-white);
  background: linear-gradient(135deg, var(--capta-deep-blue), var(--capta-bright-blue));
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(28, 77, 120, 0.2);
}

.homepage .park-list li:nth-child(even) .park-link {
  background: linear-gradient(135deg, #245f8e, var(--capta-bright-blue));
}

.homepage .park-link:focus-visible,
.homepage .park-link:hover {
  outline-color: rgba(169, 207, 56, 0.72);
}

.park-card-logo {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.park-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.homepage .park-link strong {
  color: var(--capta-white);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
}

.homepage .park-link small {
  color: rgba(255, 255, 255, 0.84);
  font-family: 'Aleo Bold', Arial, Helvetica, sans-serif;
}

.homepage .park-link-arrow {
  color: var(--capta-lime);
}

.homepage .site-footer {
  color: rgba(28, 77, 120, 0.72);
  background: var(--capta-white);
}

.homepage .fine-print code {
  background: var(--capta-pale-blue);
}

@media (max-width: 379px) {
  .park-link {
    gap: 10px;
    padding: 14px 12px;
  }

  .park-list-logo {
    flex-basis: 95px;
    width: 95px;
    max-width: 95px;
    max-height: 64px;
  }

  .park-card-logo {
    width: 120px;
    height: 100px;
  }
}

@media (min-width: 720px) {
  .site-shell {
    display: grid;
    place-items: start center;
    padding: 38px 18px;
  }

  .mobile-card {
    width: 430px;
  }

  .park-list-logo {
    flex-basis: 120px;
    width: 120px;
    max-width: 120px;
    max-height: 76px;
  }

  .park-card-logo {
    width: 180px;
    height: 100px;
  }
}


/* Rainforestation mobile visitor hub — consolidated production styles */
.rainforestation-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rainforestation-brand-copy {
  min-width: 0;
}

.rainforestation-action-group {
  display: grid;
  gap: 10px;
}

.rainforestation-social-list,
.rainforestation-secondary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.rainforestation-secondary-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rainforestation-review-list {
  display: grid;
  gap: 10px;
}

.rainforestation-share-prompt {
  margin: 0;
}

.rainforestation-google-button span {
  display: grid;
  gap: 1px;
}

.rainforestation-google-button small {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 479px) {
  .site-shell[data-park-id='rainforestation'] {
    --rfs-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: #29411f;
  }

  .rainforestation-card {
    width: 100%;
    min-height: 100svh;
    color: #352814;
    font-family: 'Aleo Bold', Georgia, serif;
    background: #f2f3e4;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .rainforestation-hero {
    position: relative;
    height: var(--rfs-hero-height);
    overflow: hidden;
    background: #29411f;
  }

  .rainforestation-hero::after {
    position: absolute;
    inset: 0;
    content: '';
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(17, 30, 12, 0.03) 42%, rgba(24, 39, 16, 0.36) 100%);
  }

  .rainforestation-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rainforestation-content {
    min-height: calc(100svh - var(--rfs-hero-height));
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 18px;
    padding: 0 15px;
    background:
      radial-gradient(circle at 95% 2%, rgba(126, 151, 61, 0.14), transparent 16rem),
      linear-gradient(180deg, #f5f5e9 0%, #eef1dd 100%);
  }

  .rainforestation-brand {
    flex: 0 0 auto;
    gap: 13px;
    margin-top: -38px;
  }

  .rainforestation-logo-frame {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    place-items: center;
    padding: 10px;
    margin: 0;
    background: #fffef8;
    border: 4px solid #fffef8;
    border-radius: 50%;
    box-shadow:
      0 12px 26px rgba(42, 57, 24, 0.2),
      0 0 0 1px rgba(70, 94, 35, 0.08);
  }

  .rainforestation-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .rainforestation-brand-copy {
    padding-top: 32px;
  }

  .rainforestation-card h1 {
    margin: 0;
    color: #35501f;
    font-family: 'Bushcraft', Georgia, serif;
    font-size: clamp(1.42rem, 6vw, 1.68rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0.01em;
  }

  .rainforestation-eyebrow {
    margin: 6px 0 0;
    color: #715a39;
    font-family: 'Aleo Bold', Georgia, serif;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .rainforestation-action-group {
    flex: 0 0 auto;
    gap: 10px;
  }

  .rainforestation-action-group h2 {
    position: relative;
    margin: 0;
    padding-bottom: 8px;
    color: #35501f;
    font-family: 'Bushcraft', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1;
    text-align: left;
  }

  .rainforestation-action-group h2::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: '';
    background: linear-gradient(90deg, #79933b, rgba(121, 147, 59, 0.12));
    border-radius: 999px;
  }

  .rainforestation-social-list {
    gap: 9px;
  }

  .rainforestation-link-button {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    gap: 8px;
    padding: 8px 28px 8px 9px;
    overflow: hidden;
    color: #2d3b21;
    font-family: 'Aleo Bold', Georgia, serif;
    font-size: 0.78rem;
    text-decoration: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 252, 247, 0.96));
    border: 1px solid rgba(60, 82, 32, 0.13);
    border-radius: 13px;
    box-shadow:
      0 6px 15px rgba(43, 58, 23, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .rainforestation-link-button::after {
    position: absolute;
    right: 10px;
    color: #6a8731;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    content: '›';
  }

  .rainforestation-link-button:hover,
  .rainforestation-link-button:focus-visible {
    outline: 3px solid rgba(121, 147, 59, 0.35);
    outline-offset: 2px;
    box-shadow: 0 9px 20px rgba(43, 58, 23, 0.16);
    transform: translateY(-1px);
  }

  .rainforestation-link-button > img {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
  }

  .rainforestation-social-button {
    display: grid;
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    place-items: center start;
    gap: 7px;
    padding: 9px 7px;
    font-size: 0.76rem;
    text-align: left;
  }

  .rainforestation-social-button::after {
    display: none;
  }

  .rainforestation-share-prompt {
    padding: 10px 12px;
    color: #3f4b2d;
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: center;
    background:
      linear-gradient(135deg, rgba(219, 229, 178, 0.78), rgba(232, 237, 205, 0.72));
    border: 1px solid rgba(106, 135, 49, 0.1);
    border-radius: 11px;
  }

  .rainforestation-review-list {
    gap: 10px;
  }

  .rainforestation-google-button {
    min-height: 64px;
    color: #fff;
    background: linear-gradient(135deg, #3e6726 0%, #6a8c2f 100%);
    border: 0;
    box-shadow:
      0 9px 20px rgba(55, 82, 28, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .rainforestation-google-button::after {
    color: #fff;
  }

  .rainforestation-google-button > img {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .rainforestation-google-button strong {
    color: #fff;
    font-size: 0.94rem;
  }

  .rainforestation-google-button small {
    font-size: 0.74rem;
  }

  .rainforestation-secondary-actions {
    gap: 9px;
  }

  .rainforestation-secondary-actions .rainforestation-link-button {
    width: 100%;
    min-height: 56px;
  }

  .rainforestation-contact {
    width: calc(100% + 30px);
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 14px calc(18px + env(safe-area-inset-bottom));
    margin: 0 -15px;
    color: #f7f4e8;
    text-align: center;
    background:
      radial-gradient(circle at 50% 0%, rgba(137, 163, 71, 0.2), transparent 16rem),
      linear-gradient(135deg, #30491f 0%, #456126 100%);
    border: 0;
    border-radius: 0;
  }

  .rainforestation-contact h2 {
    grid-column: 1 / -1;
    margin: 0 0 3px;
    color: #fffbea;
    font-family: 'Bushcraft', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1;
  }

  .rainforestation-contact a {
    display: grid;
    min-width: 0;
    min-height: 50px;
    place-items: center;
    gap: 4px;
    padding: 3px;
    overflow: hidden;
    color: #fffbea;
    font-size: 0;
    text-decoration: none;
    border-radius: 10px;
  }

  .rainforestation-contact a:hover,
  .rainforestation-contact a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: 2px solid rgba(255, 255, 255, 0.35);
  }

  .rainforestation-contact a::after {
    color: #fffbea;
    font-family: 'Aleo Bold', Georgia, serif;
    font-size: 0.75rem;
    line-height: 1;
  }

  .rainforestation-contact a:nth-of-type(1)::after {
    content: 'Email';
  }

  .rainforestation-contact a:nth-of-type(2)::after {
    content: 'Call';
  }

  .rainforestation-contact a:nth-of-type(3)::after {
    content: 'Website';
  }

  .rainforestation-contact span {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
  }

  .rainforestation-contact span img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='rainforestation'] {
    --rfs-hero-height: 155px;
  }

  .rainforestation-content {
    justify-content: flex-start;
    gap: 16px;
  }

  .rainforestation-brand {
    margin-top: -28px;
  }

  .rainforestation-logo-frame {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
  }

  .rainforestation-brand-copy {
    padding-top: 23px;
  }

  .rainforestation-social-button,
  .rainforestation-google-button {
    min-height: 56px;
  }
}

@media (min-width: 480px) {
  .rainforestation-brand {
    justify-content: center;
  }

  .rainforestation-social-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* Rainforestation finishing details */
@media (max-width: 479px) {
  .rainforestation-content {
    justify-content: space-between;
    background:
      radial-gradient(ellipse at 8% 18%, rgba(102, 132, 54, 0.045) 0 9%, transparent 10%),
      radial-gradient(ellipse at 92% 38%, rgba(102, 132, 54, 0.04) 0 8%, transparent 9%),
      radial-gradient(ellipse at 20% 72%, rgba(102, 132, 54, 0.035) 0 7%, transparent 8%),
      radial-gradient(circle at 95% 2%, rgba(126, 151, 61, 0.14), transparent 16rem),
      linear-gradient(180deg, #f5f5e9 0%, #eef1dd 100%);
    background-size: 190px 220px, 210px 250px, 230px 270px, auto, auto;
  }

  .rainforestation-brand-copy,
  .rainforestation-brand-copy h1,
  .rainforestation-brand-copy .rainforestation-eyebrow {
    text-align: left;
  }

  .rainforestation-instagram-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    margin-left: 2px;
    color: #fff;
    font-family: 'Aleo Bold', Georgia, serif;
    font-size: 0.78rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(110deg, #833ab4 0%, #c13584 38%, #e1306c 63%, #f77737 100%);
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(193, 53, 132, 0.18);
  }

  .rainforestation-instagram-tag:hover,
  .rainforestation-instagram-tag:focus-visible {
    outline: 3px solid rgba(193, 53, 132, 0.28);
    outline-offset: 2px;
    transform: translateY(-1px);
  }

  .rainforestation-contact {
    position: relative;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 26px rgba(40, 64, 25, 0.12);
  }

  .rainforestation-link-button:active {
    box-shadow: 0 3px 8px rgba(43, 58, 23, 0.12);
    transform: scale(0.985);
  }

  .rainforestation-link-button > img {
    transition: transform 160ms ease;
  }

  .rainforestation-link-button:hover > img,
  .rainforestation-link-button:focus-visible > img,
  .rainforestation-link-button:active > img {
    transform: scale(1.06);
  }

  .rainforestation-contact a:active {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(0.97);
  }
}

@keyframes rainforestation-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rainforestation-rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 479px) and (prefers-reduced-motion: no-preference) {
  .rainforestation-hero-image {
    animation: rainforestation-fade-in 520ms ease-out both;
  }

  .rainforestation-brand {
    animation: rainforestation-rise-in 420ms 90ms ease-out both;
  }

  .rainforestation-social-group {
    animation: rainforestation-rise-in 420ms 170ms ease-out both;
  }

  .rainforestation-review-group {
    animation: rainforestation-rise-in 420ms 250ms ease-out both;
  }

  .rainforestation-contact {
    animation: rainforestation-rise-in 420ms 330ms ease-out both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rainforestation-link-button,
  .rainforestation-link-button > img,
  .rainforestation-instagram-tag,
  .rainforestation-contact a {
    transition: none;
  }
}


/* Refined mobile title position and readable type scale */
@media (max-width: 479px) {
  .rainforestation-brand-copy {
    padding-top: 44px;
  }

  .rainforestation-card h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.84rem);
  }

  .rainforestation-eyebrow {
    margin-top: 7px;
    font-size: 0.9rem;
  }

  .rainforestation-action-group h2 {
    font-size: 1.2rem;
  }

  .rainforestation-social-button {
    font-size: 0.84rem;
  }

  .rainforestation-share-prompt {
    font-size: 0.92rem;
  }

  .rainforestation-instagram-tag {
    font-size: 0.85rem;
  }

  .rainforestation-google-button strong {
    font-size: 1.02rem;
  }

  .rainforestation-google-button small {
    font-size: 0.8rem;
  }

  .rainforestation-secondary-actions .rainforestation-link-button {
    font-size: 0.84rem;
  }

  .rainforestation-contact h2 {
    font-size: 1.12rem;
  }

  .rainforestation-contact a::after {
    font-size: 0.82rem;
  }
}

@media (max-width: 359px) {
  .rainforestation-brand-copy {
    padding-top: 37px;
  }

  .rainforestation-card h1 {
    font-size: 1.4rem;
  }

  .rainforestation-eyebrow {
    font-size: 0.78rem;
  }

  .rainforestation-action-group h2 {
    font-size: 1.08rem;
  }

  .rainforestation-social-button {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 5px;
    padding-inline: 6px;
    font-size: 0.72rem;
  }

  .rainforestation-social-button > img {
    width: 29px;
    height: 29px;
  }

  .rainforestation-share-prompt {
    font-size: 0.82rem;
  }

  .rainforestation-secondary-actions .rainforestation-link-button {
    font-size: 0.76rem;
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .rainforestation-brand-copy {
    padding-top: 31px;
  }

  .rainforestation-card h1 {
    font-size: 1.42rem;
  }

  .rainforestation-eyebrow {
    font-size: 0.8rem;
  }
}


/* Tropic Wings Transfers mobile visitor hub */
.transfers-social-list,
.transfers-secondary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.transfers-secondary-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transfers-review-list,
.transfers-action-group {
  display: grid;
  gap: 10px;
}

.transfers-google-button span {
  display: grid;
  gap: 1px;
}

@media (max-width: 479px) {
  .site-shell[data-park-id='tropic-wings-transfers'] {
    --transfers-blue: #22a7df;
    --transfers-navy: #082f4a;
    --transfers-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: var(--transfers-navy);
  }

  .transfers-card {
    width: 100%;
    min-height: 100svh;
    color: #0b334c;
    font-family: 'Aleo Bold', Arial, sans-serif;
    background: #edf8fc;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .transfers-hero {
    position: relative;
    height: var(--transfers-hero-height);
    overflow: hidden;
    background: var(--transfers-navy);
  }

  .transfers-hero::after {
    position: absolute;
    inset: 0;
    content: '';
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(4, 29, 47, 0.02) 42%, rgba(4, 34, 54, 0.42) 100%);
  }

  .transfers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
  }

  .transfers-content {
    min-height: calc(100svh - var(--transfers-hero-height));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 0 15px;
    background:
      radial-gradient(circle at 8% 28%, rgba(34, 167, 223, 0.07) 0 7%, transparent 8%),
      radial-gradient(circle at 94% 60%, rgba(34, 167, 223, 0.06) 0 8%, transparent 9%),
      linear-gradient(180deg, #f5fbfe 0%, #e9f6fb 100%);
    background-size: 210px 240px, 230px 260px, auto;
  }

  .transfers-brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 13px;
    margin-top: -34px;
  }

  .transfers-logo-frame {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 122px;
    width: 122px;
    height: 76px;
    place-items: center;
    padding: 10px;
    background: #fff;
    border: 3px solid #fff;
    border-radius: 18px;
    box-shadow:
      0 12px 28px rgba(8, 47, 74, 0.2),
      0 0 0 1px rgba(8, 47, 74, 0.06);
  }

  .transfers-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .transfers-brand-copy {
    min-width: 0;
    padding-top: 35px;
    text-align: left;
  }

  .transfers-card h1 {
    margin: 0;
    color: var(--transfers-navy);
    font-family: 'Bushcraft', Arial, sans-serif;
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
    font-weight: 400;
    line-height: 1;
  }

  .transfers-tagline {
    margin: 7px 0 0;
    color: #38647c;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .transfers-action-group {
    flex: 0 0 auto;
    gap: 10px;
  }

  .transfers-action-group h2 {
    position: relative;
    margin: 0;
    padding-bottom: 8px;
    color: var(--transfers-navy);
    font-family: 'Bushcraft', Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1;
    text-align: left;
  }

  .transfers-action-group h2::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: '';
    background: linear-gradient(90deg, var(--transfers-blue), rgba(34, 167, 223, 0.12));
    border-radius: 999px;
  }

  .transfers-link-button {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    gap: 8px;
    padding: 8px 28px 8px 9px;
    overflow: hidden;
    color: #113d57;
    font-size: 0.82rem;
    text-decoration: none;
    background: linear-gradient(180deg, #fff, #fafdff);
    border: 1px solid rgba(8, 47, 74, 0.11);
    border-radius: 13px;
    box-shadow:
      0 6px 16px rgba(8, 47, 74, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .transfers-link-button::after {
    position: absolute;
    right: 10px;
    color: var(--transfers-blue);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    content: '›';
  }

  .transfers-link-button > img {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 160ms ease;
  }

  .transfers-link-button:hover,
  .transfers-link-button:focus-visible {
    outline: 3px solid rgba(34, 167, 223, 0.28);
    outline-offset: 2px;
    box-shadow: 0 9px 22px rgba(8, 47, 74, 0.16);
    transform: translateY(-1px);
  }

  .transfers-link-button:active {
    transform: scale(0.985);
  }

  .transfers-link-button:hover > img,
  .transfers-link-button:focus-visible > img,
  .transfers-link-button:active > img {
    transform: scale(1.06);
  }

  .transfers-social-button {
    display: grid;
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    place-items: center start;
    gap: 7px;
    padding: 9px 7px;
    font-size: 0.8rem;
    text-align: left;
  }

  .transfers-social-button::after {
    display: none;
  }

  .transfers-share-prompt {
    margin: 0;
    padding: 10px 12px;
    color: #244f67;
    font-size: 0.88rem;
    line-height: 1.35;
    text-align: center;
    background: linear-gradient(135deg, rgba(194, 232, 247, 0.82), rgba(224, 245, 252, 0.82));
    border: 1px solid rgba(34, 167, 223, 0.12);
    border-radius: 11px;
  }

  .transfers-instagram-tag {
    display: inline-flex;
    padding: 3px 8px;
    margin-left: 2px;
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(110deg, #833ab4 0%, #c13584 38%, #e1306c 63%, #f77737 100%);
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(193, 53, 132, 0.18);
  }

  .transfers-google-button {
    min-height: 64px;
    color: #fff;
    background: linear-gradient(135deg, #0879ad 0%, var(--transfers-blue) 100%);
    border: 0;
    box-shadow:
      0 9px 22px rgba(3, 97, 160, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .transfers-google-button::after {
    color: #fff;
  }

  .transfers-google-button > img {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .transfers-google-button strong {
    color: #fff;
    font-size: 1rem;
  }

  .transfers-google-button small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
  }

  .transfers-secondary-actions {
    gap: 9px;
  }

  .transfers-secondary-actions .transfers-link-button {
    width: 100%;
    min-height: 56px;
  }

  .transfers-contact {
    width: calc(100% + 30px);
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 14px calc(18px + env(safe-area-inset-bottom));
    margin: 0 -15px;
    color: #fff;
    text-align: center;
    background:
      radial-gradient(circle at 50% 0%, rgba(34, 167, 223, 0.18), transparent 16rem),
      linear-gradient(135deg, #062b45 0%, #0a486b 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 28px rgba(8, 47, 74, 0.14);
  }

  .transfers-contact h2 {
    grid-column: 1 / -1;
    margin: 0 0 3px;
    color: #fff;
    font-family: 'Bushcraft', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1;
  }

  .transfers-contact a {
    display: grid;
    min-width: 0;
    min-height: 50px;
    place-items: center;
    gap: 4px;
    padding: 3px;
    overflow: hidden;
    color: #fff;
    font-size: 0;
    text-decoration: none;
    border-radius: 10px;
  }

  .transfers-contact a::after {
    color: #fff;
    font-size: 0.78rem;
    line-height: 1;
  }

  .transfers-contact a:nth-of-type(1)::after {
    content: 'Email';
  }

  .transfers-contact a:nth-of-type(2)::after {
    content: 'Call';
  }

  .transfers-contact a:nth-of-type(3)::after {
    content: 'Book online';
  }

  .transfers-contact span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
  }

  .transfers-contact span img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 359px) {
  .transfers-logo-frame {
    flex-basis: 105px;
    width: 105px;
  }

  .transfers-card h1 {
    font-size: 1.38rem;
  }

  .transfers-social-button {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 5px;
    padding-inline: 6px;
    font-size: 0.7rem;
  }

  .transfers-social-button > img {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='tropic-wings-transfers'] {
    --transfers-hero-height: 155px;
  }

  .transfers-content {
    justify-content: flex-start;
    gap: 16px;
  }

  .transfers-brand {
    margin-top: -28px;
  }

  .transfers-brand-copy {
    padding-top: 28px;
  }
}

@media (max-width: 479px) and (prefers-reduced-motion: no-preference) {
  .transfers-hero-image {
    animation: rainforestation-fade-in 520ms ease-out both;
  }

  .transfers-brand {
    animation: rainforestation-rise-in 420ms 90ms ease-out both;
  }

  .transfers-social-group {
    animation: rainforestation-rise-in 420ms 170ms ease-out both;
  }

  .transfers-review-group {
    animation: rainforestation-rise-in 420ms 250ms ease-out both;
  }

  .transfers-contact {
    animation: rainforestation-rise-in 420ms 330ms ease-out both;
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='tropic-wings-transfers'] {
    background: linear-gradient(145deg, #082f4a, #22a7df);
  }

  .transfers-card {
    overflow: hidden;
    background: #edf8fc;
  }

  .transfers-hero {
    height: 230px;
  }

  .transfers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .transfers-content {
    display: grid;
    gap: 22px;
    padding: 0 18px;
  }

  .transfers-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: -32px;
  }

  .transfers-logo-frame {
    display: grid;
    width: 140px;
    height: 82px;
    place-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(8, 47, 74, 0.2);
  }

  .transfers-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .transfers-card h1,
  .transfers-action-group h2,
  .transfers-contact h2 {
    color: #082f4a;
    font-family: 'Bushcraft', Arial, sans-serif;
  }

  .transfers-contact {
    margin: 0 -18px;
    padding: 18px;
    color: #fff;
    background: #082f4a;
  }
}


/* Refined Transfers treatment: align the page with the Rainforestation template */
@media (max-width: 479px) {
  .site-shell[data-park-id='tropic-wings-transfers'] {
    background: #083f5e;
  }

  .transfers-content {
    gap: 20px;
    background:
      radial-gradient(circle at 12% 30%, rgba(34, 167, 223, 0.035) 0 6%, transparent 7%),
      radial-gradient(circle at 91% 68%, rgba(34, 167, 223, 0.03) 0 7%, transparent 8%),
      linear-gradient(180deg, #f7fbfc 0%, #edf6f8 100%);
    background-size: 280px 320px, 300px 340px, auto;
  }

  .transfers-logo-frame {
    flex-basis: 122px;
    width: 122px;
    height: 82px;
    padding: 12px;
    border-radius: 20px;
  }

  .transfers-logo-frame img {
    display: block;
    object-fit: contain;
  }

  .transfers-brand-copy {
    padding-top: 38px;
  }

  .transfers-tagline {
    max-width: 240px;
    color: #42677a;
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .transfers-action-group h2::after {
    background: linear-gradient(90deg, #1689b8, rgba(22, 137, 184, 0.12));
  }

  .transfers-google-button {
    background: linear-gradient(135deg, #087aaa 0%, #07577c 100%);
    box-shadow:
      0 9px 22px rgba(7, 87, 124, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .transfers-share-prompt {
    color: #244b5e;
    background: linear-gradient(135deg, rgba(220, 241, 247, 0.9), rgba(235, 248, 251, 0.96));
    border-color: rgba(22, 137, 184, 0.13);
  }

  .transfers-secondary-actions .transfers-link-button {
    font-size: 0.8rem;
  }

  .transfers-secondary-actions .transfers-link-button span {
    white-space: nowrap;
  }

  .transfers-contact {
    background: linear-gradient(135deg, #083f5e 0%, #0a5274 100%);
  }
}


/* Tropic Wings Cairns Tours uses the same mobile design system as Transfers */
@media (max-width: 479px) {
  .site-shell[data-park-id='tropic-wings'] {
    --transfers-blue: #22a7df;
    --transfers-navy: #082f4a;
    --transfers-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: #083f5e;
  }

  .tours-card .transfers-hero-image {
    object-position: center center;
  }

  .tours-card .transfers-logo-frame {
    height: 88px;
    padding: 10px;
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='tropic-wings'] {
    --transfers-hero-height: 155px;
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='tropic-wings'] {
    background: linear-gradient(145deg, #082f4a, #22a7df);
  }
}


/* Australian Butterfly Sanctuary mobile visitor hub */
@media (max-width: 479px) {
  .site-shell[data-park-id='butterfly-sanctuary'] {
    --rfs-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: #073f61;
  }

  .butterfly-card {
    color: #17384b;
    background: #edf7fa;
  }

  .butterfly-card .rainforestation-hero {
    background: #073f61;
  }

  .butterfly-card .rainforestation-hero::after {
    background: linear-gradient(180deg, rgba(3, 42, 65, 0.01) 42%, rgba(3, 42, 65, 0.36) 100%);
  }

  .butterfly-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(51, 169, 206, 0.11), transparent 16rem),
      linear-gradient(180deg, #f7fcfd 0%, #eaf5f8 100%);
  }

  .butterfly-card .rainforestation-logo-frame {
    padding: 8px;
    background: #fff;
    border-color: #fff;
    box-shadow:
      0 12px 26px rgba(5, 62, 94, 0.2),
      0 0 0 1px rgba(8, 87, 127, 0.08);
  }

  .butterfly-card h1,
  .butterfly-card .rainforestation-action-group h2 {
    color: #07577f;
  }

  .butterfly-card .rainforestation-eyebrow {
    color: #3e6578;
  }

  .butterfly-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #22a7df, rgba(34, 167, 223, 0.12));
  }

  .butterfly-card .rainforestation-link-button {
    color: #173d52;
    border-color: rgba(7, 87, 127, 0.13);
    box-shadow:
      0 6px 15px rgba(5, 62, 94, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .butterfly-card .rainforestation-link-button::after {
    color: #158fbe;
  }

  .butterfly-card .rainforestation-share-prompt {
    color: #244f63;
    background: linear-gradient(135deg, rgba(214, 240, 248, 0.9), rgba(233, 248, 251, 0.94));
    border-color: rgba(34, 167, 223, 0.12);
  }

  .butterfly-card .rainforestation-google-button {
    color: #fff;
    background: linear-gradient(135deg, #087baa 0%, #07577f 100%);
    box-shadow:
      0 9px 20px rgba(5, 78, 116, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .butterfly-card .rainforestation-contact {
    color: #fff;
    background:
      radial-gradient(circle at 50% 0%, rgba(61, 187, 226, 0.2), transparent 16rem),
      linear-gradient(135deg, #063d5d 0%, #075f88 100%);
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='butterfly-sanctuary'] {
    --rfs-hero-height: 155px;
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='butterfly-sanctuary'] {
    background: linear-gradient(145deg, #063d5d, #22a7df);
  }
}


/* Cairns Koalas & Creatures mobile visitor hub */
@media (max-width: 479px) {
  .site-shell[data-park-id='cairns-koalas-creatures'] {
    --rfs-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: #082f4a;
  }

  .ckc-card {
    color: #18354a;
    background: #eef4f7;
  }

  .ckc-card .rainforestation-hero {
    background: #082f4a;
  }

  .ckc-card .rainforestation-hero::after {
    background: linear-gradient(180deg, rgba(4, 31, 50, 0.01) 42%, rgba(4, 31, 50, 0.4) 100%);
  }

  .ckc-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(55, 134, 174, 0.1), transparent 16rem),
      linear-gradient(180deg, #f7fafc 0%, #eaf1f4 100%);
  }

  .ckc-card .rainforestation-logo-frame {
    padding: 8px;
    background: #fff;
    border-color: #fff;
    box-shadow:
      0 12px 26px rgba(4, 39, 63, 0.22),
      0 0 0 1px rgba(9, 61, 91, 0.08);
  }

  .ckc-card h1,
  .ckc-card .rainforestation-action-group h2 {
    color: #0a466c;
  }

  .ckc-card .rainforestation-eyebrow {
    color: #466577;
  }

  .ckc-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #278bb8, rgba(39, 139, 184, 0.12));
  }

  .ckc-card .rainforestation-link-button {
    color: #17384d;
    border-color: rgba(10, 70, 108, 0.13);
    box-shadow:
      0 6px 15px rgba(5, 47, 74, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .ckc-card .rainforestation-link-button::after {
    color: #177aa6;
  }

  .ckc-card .rainforestation-share-prompt {
    color: #284b60;
    background: linear-gradient(135deg, rgba(219, 236, 244, 0.94), rgba(235, 245, 248, 0.96));
    border-color: rgba(39, 139, 184, 0.12);
  }

  .ckc-card .rainforestation-google-button {
    color: #fff;
    background: linear-gradient(135deg, #0b638e 0%, #083e61 100%);
    box-shadow:
      0 9px 20px rgba(5, 55, 84, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .ckc-card .rainforestation-contact {
    color: #fff;
    background:
      radial-gradient(circle at 50% 0%, rgba(77, 163, 203, 0.18), transparent 16rem),
      linear-gradient(135deg, #062c46 0%, #0a5276 100%);
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='cairns-koalas-creatures'] {
    --rfs-hero-height: 155px;
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='cairns-koalas-creatures'] {
    background: linear-gradient(145deg, #082f4a, #278bb8);
  }
}


/* Wildlife Habitat Port Douglas mobile visitor hub */
@media (max-width: 479px) {
  .site-shell[data-park-id='wildlife-habitat'] {
    --rfs-hero-height: clamp(205px, 26svh, 240px);
    min-height: 100svh;
    padding: 0;
    background: #27451f;
  }

  .wildlife-card {
    color: #31331e;
    background: #f2f4e7;
  }

  .wildlife-card .rainforestation-hero {
    background: #27451f;
  }

  .wildlife-card .rainforestation-hero::after {
    background: linear-gradient(180deg, rgba(20, 39, 14, 0.01) 42%, rgba(28, 48, 18, 0.38) 100%);
  }

  .wildlife-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(222, 145, 43, 0.1), transparent 16rem),
      linear-gradient(180deg, #f8f7ec 0%, #eef1df 100%);
  }

  .wildlife-card .rainforestation-logo-frame {
    padding: 7px;
    background: #fff;
    border-color: #fff;
    box-shadow:
      0 12px 26px rgba(38, 66, 28, 0.22),
      0 0 0 1px rgba(67, 98, 40, 0.08);
  }

  .wildlife-card h1,
  .wildlife-card .rainforestation-action-group h2 {
    color: #315422;
  }

  .wildlife-card .rainforestation-eyebrow {
    color: #6a5735;
  }

  .wildlife-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #759341, rgba(213, 139, 40, 0.18));
  }

  .wildlife-card .rainforestation-link-button {
    color: #304326;
    border-color: rgba(69, 99, 42, 0.14);
    box-shadow:
      0 6px 15px rgba(43, 65, 29, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .wildlife-card .rainforestation-link-button::after {
    color: #6e8a3d;
  }

  .wildlife-card .rainforestation-share-prompt {
    color: #405031;
    background: linear-gradient(135deg, rgba(227, 233, 196, 0.9), rgba(241, 238, 211, 0.94));
    border-color: rgba(117, 147, 65, 0.13);
  }

  .wildlife-card .rainforestation-google-button {
    color: #fff;
    background: linear-gradient(135deg, #406b2d 0%, #658735 100%);
    box-shadow:
      0 9px 20px rgba(51, 84, 33, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .wildlife-card .rainforestation-contact {
    color: #fff;
    background:
      radial-gradient(circle at 50% 0%, rgba(220, 145, 44, 0.18), transparent 16rem),
      linear-gradient(135deg, #28471f 0%, #49672a 100%);
  }
}

@media (max-width: 479px) and (max-height: 760px) {
  .site-shell[data-park-id='wildlife-habitat'] {
    --rfs-hero-height: 155px;
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='wildlife-habitat'] {
    background: linear-gradient(145deg, #27451f, #759341);
  }
}


/* One-tap social handle copying */
.copy-social-tag {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  border: 0;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.copy-social-tag:hover,
.copy-social-tag:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.copy-social-tag:active {
  transform: scale(0.97);
}

.copy-social-tag::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  content: 'Copied!';
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.copy-tag-label {
  transition: opacity 120ms ease;
}

.copy-social-tag.is-copied::after {
  opacity: 1;
}

.copy-social-tag.is-copied .copy-tag-label {
  opacity: 0;
}


/* Official brand palettes — sourced from the supplied CaPTA style guides */
@media (max-width: 479px) {
  /* Rainforestation: #412b00 #e7e1df #6b812d #f99f20 #c34321 */
  .site-shell[data-park-id='rainforestation'] {
    background: #412b00;
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-card {
    color: #412b00;
    background: #e7e1df;
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-hero {
    background: #412b00;
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(249, 159, 32, 0.1), transparent 16rem),
      linear-gradient(180deg, #e7e1df 0%, rgba(107, 129, 45, 0.1) 100%);
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-card h1,
  .site-shell[data-park-id='rainforestation'] .rainforestation-action-group h2 {
    color: #6b812d;
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-eyebrow,
  .site-shell[data-park-id='rainforestation'] .rainforestation-link-button {
    color: #412b00;
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #6b812d, #f99f20 72%, rgba(195, 67, 33, 0.2));
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-share-prompt {
    color: #412b00;
    background: rgba(107, 129, 45, 0.12);
    border-color: rgba(107, 129, 45, 0.25);
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-google-button {
    color: #fff;
    background: linear-gradient(135deg, #6b812d 0%, #412b00 100%);
    box-shadow: 0 9px 20px rgba(65, 43, 0, 0.24);
  }

  .site-shell[data-park-id='rainforestation'] .rainforestation-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(249, 159, 32, 0.18), transparent 16rem),
      linear-gradient(135deg, #412b00 0%, #6b812d 100%);
  }

  /* Tropic Wings Tours and Transfers: #22a7df #ffffff #d4de23 #000000 #d5d7d8 */
  .site-shell[data-park-id='tropic-wings'],
  .site-shell[data-park-id='tropic-wings-transfers'] {
    --transfers-blue: #22a7df;
    --transfers-navy: #000000;
    background: #000000;
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-card,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-card {
    color: #000000;
    background: #ffffff;
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-hero,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-hero {
    background: #000000;
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-content,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-content {
    background:
      radial-gradient(circle at 94% 4%, rgba(212, 222, 35, 0.1), transparent 16rem),
      linear-gradient(180deg, #ffffff 0%, #d5d7d8 100%);
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-card h1,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-card h1,
  .site-shell[data-park-id='tropic-wings'] .transfers-action-group h2,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-action-group h2 {
    color: #000000;
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-tagline,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-tagline,
  .site-shell[data-park-id='tropic-wings'] .transfers-link-button,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-link-button {
    color: #000000;
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-action-group h2::after,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-action-group h2::after {
    background: linear-gradient(90deg, #22a7df, #d4de23);
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-share-prompt,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-share-prompt {
    color: #000000;
    background: rgba(212, 222, 35, 0.15);
    border-color: rgba(212, 222, 35, 0.45);
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-google-button,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-google-button {
    color: #ffffff;
    background: linear-gradient(135deg, #22a7df 0%, #000000 100%);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.22);
  }

  .site-shell[data-park-id='tropic-wings'] .transfers-contact,
  .site-shell[data-park-id='tropic-wings-transfers'] .transfers-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(212, 222, 35, 0.18), transparent 16rem),
      linear-gradient(135deg, #000000 0%, #22a7df 100%);
  }

  /* Australian Butterfly Sanctuary: #00aeef #fff200 #ec008c #25408f #a9cf38 */
  .site-shell[data-park-id='butterfly-sanctuary'] {
    background: #25408f;
  }

  .butterfly-card {
    color: #25408f;
    background: #ffffff;
  }

  .butterfly-card .rainforestation-hero {
    background: #25408f;
  }

  .butterfly-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(255, 242, 0, 0.12), transparent 16rem),
      linear-gradient(180deg, #ffffff 0%, rgba(0, 174, 239, 0.08) 100%);
  }

  .butterfly-card h1,
  .butterfly-card .rainforestation-action-group h2 {
    color: #25408f;
  }

  .butterfly-card .rainforestation-eyebrow,
  .butterfly-card .rainforestation-link-button {
    color: #25408f;
  }

  .butterfly-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #00aeef, #ec008c 72%, #fff200);
  }

  .butterfly-card .rainforestation-share-prompt {
    color: #25408f;
    background: rgba(169, 207, 56, 0.16);
    border-color: rgba(169, 207, 56, 0.4);
  }

  .butterfly-card .rainforestation-google-button {
    color: #ffffff;
    background: #25408f;
    box-shadow:
      0 9px 20px rgba(37, 64, 143, 0.26),
      inset 4px 0 0 #00aeef;
  }

  .butterfly-card .rainforestation-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 242, 0, 0.18), transparent 16rem),
      linear-gradient(135deg, #25408f 0%, #00aeef 100%);
  }

  /* Cairns Koalas & Creatures: #5b4436 #ecf3c0 #93ad3c #0b3e23 #bcd631 */
  .site-shell[data-park-id='cairns-koalas-creatures'] {
    background: #0b3e23;
  }

  .ckc-card {
    color: #5b4436;
    background: #ecf3c0;
  }

  .ckc-card .rainforestation-hero {
    background: #0b3e23;
  }

  .ckc-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(188, 214, 49, 0.12), transparent 16rem),
      linear-gradient(180deg, #ecf3c0 0%, rgba(147, 173, 60, 0.16) 100%);
  }

  .ckc-card h1,
  .ckc-card .rainforestation-action-group h2 {
    color: #0b3e23;
  }

  .ckc-card .rainforestation-eyebrow,
  .ckc-card .rainforestation-link-button {
    color: #5b4436;
  }

  .ckc-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #93ad3c, #bcd631);
  }

  .ckc-card .rainforestation-share-prompt {
    color: #0b3e23;
    background: rgba(188, 214, 49, 0.16);
    border-color: rgba(147, 173, 60, 0.34);
  }

  .ckc-card .rainforestation-google-button {
    color: #ffffff;
    background: linear-gradient(135deg, #0b3e23 0%, #5b4436 100%);
    box-shadow: 0 9px 20px rgba(11, 62, 35, 0.24);
  }

  .ckc-card .rainforestation-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(188, 214, 49, 0.16), transparent 16rem),
      linear-gradient(135deg, #0b3e23 0%, #5b4436 100%);
  }

  /* Wildlife Habitat: #627728 #285278 #b2d234 #333c3b #866042 */
  .site-shell[data-park-id='wildlife-habitat'] {
    background: #333c3b;
  }

  .wildlife-card {
    color: #333c3b;
    background: #ffffff;
  }

  .wildlife-card .rainforestation-hero {
    background: #333c3b;
  }

  .wildlife-card .rainforestation-content {
    background:
      radial-gradient(circle at 95% 2%, rgba(178, 210, 52, 0.12), transparent 16rem),
      linear-gradient(180deg, #ffffff 0%, rgba(98, 119, 40, 0.1) 100%);
  }

  .wildlife-card h1,
  .wildlife-card .rainforestation-action-group h2 {
    color: #627728;
  }

  .wildlife-card .rainforestation-eyebrow {
    color: #866042;
  }

  .wildlife-card .rainforestation-link-button {
    color: #333c3b;
  }

  .wildlife-card .rainforestation-action-group h2::after {
    background: linear-gradient(90deg, #627728, #b2d234 72%, #866042);
  }

  .wildlife-card .rainforestation-share-prompt {
    color: #333c3b;
    background: rgba(178, 210, 52, 0.15);
    border-color: rgba(98, 119, 40, 0.3);
  }

  .wildlife-card .rainforestation-google-button {
    color: #ffffff;
    background: linear-gradient(135deg, #285278 0%, #627728 100%);
    box-shadow: 0 9px 20px rgba(51, 60, 59, 0.24);
  }

  .wildlife-card .rainforestation-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(178, 210, 52, 0.17), transparent 16rem),
      linear-gradient(135deg, #333c3b 0%, #285278 100%);
  }
}

@media (min-width: 480px) {
  .site-shell[data-park-id='rainforestation'] {
    background: linear-gradient(145deg, #412b00, #6b812d);
  }

  .site-shell[data-park-id='tropic-wings'],
  .site-shell[data-park-id='tropic-wings-transfers'] {
    background: linear-gradient(145deg, #000000, #22a7df);
  }

  .site-shell[data-park-id='butterfly-sanctuary'] {
    background: linear-gradient(145deg, #25408f, #00aeef);
  }

  .site-shell[data-park-id='cairns-koalas-creatures'] {
    background: linear-gradient(145deg, #0b3e23, #93ad3c);
  }

  .site-shell[data-park-id='wildlife-habitat'] {
    background: linear-gradient(145deg, #333c3b, #285278);
  }
}


/* Visually centre the Transfers logo within its transparent source canvas */
.site-shell[data-park-id='tropic-wings-transfers'] .transfers-logo-frame {
  overflow: hidden;
}

.site-shell[data-park-id='tropic-wings-transfers'] .transfers-logo-frame img {
  object-position: center;
  transform: translateY(-2px) scale(1.16);
  transform-origin: center;
}

/* Individual brand pages: desktop layout */
@media (min-width: 768px) {
  .site-shell[data-park-page] {
    display: grid;
    min-height: 100vh;
    place-items: start center;
    padding: 48px 24px;
  }

  .site-shell[data-park-page] .park-card {
    width: min(100%, 960px);
    border-radius: 28px;
  }

  .site-shell[data-park-page] .rainforestation-hero,
  .site-shell[data-park-page] .transfers-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 5;
  }

  .site-shell[data-park-page] .rainforestation-hero-image,
  .site-shell[data-park-page] .transfers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .site-shell[data-park-page] .rainforestation-content,
  .site-shell[data-park-page] .transfers-content {
    display: grid;
    gap: 30px;
    padding: 0 44px 46px;
    text-align: left;
  }

  .site-shell[data-park-page] .rainforestation-brand,
  .site-shell[data-park-page] .transfers-brand {
    display: flex;
    align-items: flex-end;
    gap: 22px;
    min-width: 0;
    margin-top: -62px;
  }

  .site-shell[data-park-page] .rainforestation-logo-frame,
  .site-shell[data-park-page] .transfers-logo-frame {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
    place-items: center;
    padding: 14px;
    margin: 0;
    background: #fffef8;
    border: 4px solid #fffef8;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(24, 36, 18, 0.2);
  }

  .site-shell[data-park-page] .rainforestation-logo-frame img,
  .site-shell[data-park-page] .transfers-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .site-shell[data-park-page] .rainforestation-brand-copy,
  .site-shell[data-park-page] .transfers-brand-copy {
    min-width: 0;
    padding-bottom: 8px;
  }

  .site-shell[data-park-page] .park-card h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }

  .site-shell[data-park-page] .rainforestation-eyebrow,
  .site-shell[data-park-page] .transfers-tagline {
    margin-top: 7px;
  }

  .site-shell[data-park-page] .rainforestation-action-group,
  .site-shell[data-park-page] .transfers-action-group {
    display: grid;
    gap: 14px;
  }

  .site-shell[data-park-page] .rainforestation-social-list,
  .site-shell[data-park-page] .transfers-social-list,
  .site-shell[data-park-page] .rainforestation-review-list,
  .site-shell[data-park-page] .transfers-review-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .site-shell[data-park-page] .rainforestation-secondary-actions,
  .site-shell[data-park-page] .transfers-secondary-actions {
    display: contents;
  }

  .site-shell[data-park-page] .rainforestation-link-button,
  .site-shell[data-park-page] .transfers-link-button {
    min-width: 0;
    min-height: 72px;
    gap: 12px;
    padding: 12px 16px;
  }

  .site-shell[data-park-page] .rainforestation-link-button > img,
  .site-shell[data-park-page] .transfers-link-button > img {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  .site-shell[data-park-page] .rainforestation-link-button span,
  .site-shell[data-park-page] .transfers-link-button span {
    min-width: 0;
  }

  .site-shell[data-park-page] .rainforestation-contact,
  .site-shell[data-park-page] .transfers-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 6px;
  }

  .site-shell[data-park-page] .rainforestation-contact h2,
  .site-shell[data-park-page] .transfers-contact h2 {
    grid-column: 1 / -1;
    margin: 0;
    text-align: left;
  }

  .site-shell[data-park-page] .rainforestation-contact a,
  .site-shell[data-park-page] .transfers-contact a {
    display: flex;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
  }

  .site-shell[data-park-page] .rainforestation-contact span,
  .site-shell[data-park-page] .transfers-contact span {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .site-shell[data-park-page] .rainforestation-contact span img,
  .site-shell[data-park-page] .transfers-contact span img {
    width: 72%;
    height: 72%;
    object-fit: contain;
  }
}

/* Individual brand pages: polished desktop components */
@media (min-width: 768px) {
  .site-shell[data-park-id='rainforestation'] {
    --desktop-accent: #6b812d;
    --desktop-dark: #412b00;
    --desktop-surface: #f4f3e9;
  }

  .site-shell[data-park-id='butterfly-sanctuary'] {
    --desktop-accent: #25408f;
    --desktop-dark: #173b78;
    --desktop-surface: #f1faff;
  }

  .site-shell[data-park-id='cairns-koalas-creatures'] {
    --desktop-accent: #93ad3c;
    --desktop-dark: #0b3e23;
    --desktop-surface: #f2f6df;
  }

  .site-shell[data-park-id='wildlife-habitat'] {
    --desktop-accent: #627728;
    --desktop-dark: #285278;
    --desktop-surface: #f3f6e9;
  }

  .site-shell[data-park-id='tropic-wings'],
  .site-shell[data-park-id='tropic-wings-transfers'] {
    --desktop-accent: #22a7df;
    --desktop-dark: #082f4a;
    --desktop-surface: #edf8fc;
  }

  .site-shell[data-park-page] .rainforestation-card,
  .site-shell[data-park-page] .transfers-card {
    color: var(--desktop-dark);
    font-family: 'Aleo Bold', Arial, sans-serif;
    background: var(--desktop-surface);
  }

  .site-shell[data-park-page] .rainforestation-content,
  .site-shell[data-park-page] .transfers-content {
    background:
      radial-gradient(circle at 94% 8%, rgba(255, 255, 255, 0.9), transparent 20rem),
      var(--desktop-surface);
  }

  .site-shell[data-park-page] .rainforestation-action-group h2,
  .site-shell[data-park-page] .transfers-action-group h2 {
    position: relative;
    margin: 0;
    padding-bottom: 11px;
    color: var(--desktop-dark);
    font-family: 'Bushcraft', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.1;
  }

  .site-shell[data-park-page] .rainforestation-action-group h2::after,
  .site-shell[data-park-page] .transfers-action-group h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, var(--desktop-accent), transparent);
    border-radius: 999px;
  }

  .site-shell[data-park-page] .rainforestation-link-button,
  .site-shell[data-park-page] .transfers-link-button {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--desktop-dark);
    font-size: 0.98rem;
    text-decoration: none;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(8, 47, 74, 0.12);
    border-radius: 14px;
    box-shadow:
      0 8px 20px rgba(8, 47, 74, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .site-shell[data-park-page] .rainforestation-link-button::after,
  .site-shell[data-park-page] .transfers-link-button::after {
    position: absolute;
    right: 14px;
    color: var(--desktop-accent);
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    content: '›';
  }

  .site-shell[data-park-page] .rainforestation-link-button:hover,
  .site-shell[data-park-page] .rainforestation-link-button:focus-visible,
  .site-shell[data-park-page] .transfers-link-button:hover,
  .site-shell[data-park-page] .transfers-link-button:focus-visible {
    outline: 3px solid rgba(34, 167, 223, 0.24);
    outline-offset: 2px;
    box-shadow: 0 12px 26px rgba(8, 47, 74, 0.16);
    transform: translateY(-2px);
  }

  .site-shell[data-park-page] .rainforestation-social-button,
  .site-shell[data-park-page] .transfers-social-button {
    display: grid;
    min-height: 82px;
    grid-template-columns: 44px minmax(0, 1fr);
    place-items: center start;
    padding: 14px 38px 14px 16px;
  }

  .site-shell[data-park-page] .rainforestation-social-button > img,
  .site-shell[data-park-page] .transfers-social-button > img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  .site-shell[data-park-page] .rainforestation-share-prompt,
  .site-shell[data-park-page] .transfers-share-prompt {
    margin: 0;
    padding: 12px 16px;
    color: var(--desktop-dark);
    font-size: 0.95rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(8, 47, 74, 0.1);
    border-radius: 12px;
  }

  .site-shell[data-park-page] .rainforestation-instagram-tag,
  .site-shell[data-park-page] .transfers-instagram-tag {
    display: inline-flex;
    padding: 4px 10px;
    margin-left: 3px;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    background: linear-gradient(110deg, #833ab4, #c13584 40%, #e1306c 66%, #f77737);
    border-radius: 999px;
  }

  .site-shell[data-park-page] .rainforestation-google-button,
  .site-shell[data-park-page] .transfers-google-button {
    color: #fff;
    background: linear-gradient(135deg, var(--desktop-accent), var(--desktop-dark));
    border: 0;
    box-shadow:
      0 10px 24px rgba(8, 47, 74, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .site-shell[data-park-page] .rainforestation-google-button::after,
  .site-shell[data-park-page] .transfers-google-button::after,
  .site-shell[data-park-page] .rainforestation-google-button strong,
  .site-shell[data-park-page] .transfers-google-button strong {
    color: #fff;
  }

  .site-shell[data-park-page] .rainforestation-google-button small,
  .site-shell[data-park-page] .transfers-google-button small {
    color: rgba(255, 255, 255, 0.82);
  }

  .site-shell[data-park-page] .rainforestation-contact,
  .site-shell[data-park-page] .transfers-contact {
    width: calc(100% + 88px);
    gap: 16px;
    padding: 24px 28px 30px;
    margin: 4px -44px -46px;
    color: #fff;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 20rem),
      linear-gradient(135deg, var(--desktop-dark), var(--desktop-accent));
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 28px rgba(8, 47, 74, 0.12);
  }

  .site-shell[data-park-page] .rainforestation-contact h2,
  .site-shell[data-park-page] .transfers-contact h2 {
    color: #fff;
    font-family: 'Bushcraft', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
  }

  .site-shell[data-park-page] .rainforestation-contact a,
  .site-shell[data-park-page] .transfers-contact a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-shell[data-park-page] .rainforestation-contact span,
  .site-shell[data-park-page] .transfers-contact span {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
  }

  .site-shell[data-park-page] .rainforestation-contact span img,
  .site-shell[data-park-page] .transfers-contact span img {
    filter: brightness(0) invert(1);
  }
}

/* Lower the brand header on desktop */
@media (min-width: 768px) {
  .site-shell[data-park-page] .rainforestation-brand,
  .site-shell[data-park-page] .transfers-brand {
    margin-top: -26px;
  }
}

