/* ============================================================
   Jungle Land redesign — Homepage
   ============================================================ */

/* home: header floats transparent over the video hero, then sticks and
   turns solid green as you scroll */
.is-home .topbar { display: none; }
.is-home .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  z-index: 60;
  transition: background .3s, box-shadow .3s;
}
.is-home .site-header.is-scrolled {
  background: var(--ink);
  box-shadow: var(--sh-header);
}
.is-home .site-nav a { text-shadow: 0 1px 6px rgba(0, 0, 0, .4); }
/* home header is fixed at the very top of the viewport - no room above it */
.is-home .site-logo img { height: 144px; top: 2px; }
.is-home .site-header.is-scrolled .site-logo img { height: 88px; }
@media (max-width: 1180px) {
  .is-home .site-logo img { height: 104px; }
  .is-home .site-header.is-scrolled .site-logo img { height: 72px; }
}

/* ---- hero ---- */
.home-hero {
  position: relative;
  height: 94vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink-deep);
}
.home-hero .hero-media, .home-hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 30, 16, .6) 0%, rgba(8, 30, 16, .1) 34%, rgba(8, 30, 16, .84) 100%);
}
@media (max-width: 719px), (prefers-reduced-motion: reduce) {
  .home-hero .hero-media { display: none; }
}

/* fireflies */
.home-hero .fly {
  position: absolute;
  width: 5px; height: 5px;
  background: #FFE082;
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(255, 224, 130, .8);
  animation: twinkle 4s ease-in-out infinite;
}
.home-hero .fly.f1 { left: 24%; top: 38%; animation-duration: 3.4s; }
.home-hero .fly.f2 { left: 35%; top: 55%; width: 4px; height: 4px; animation-duration: 4.2s; animation-delay: 1.1s; }
.home-hero .fly.f3 { right: 28%; top: 42%; animation-duration: 3.8s; animation-delay: .6s; }
.home-hero .fly.f4 { right: 20%; top: 62%; width: 4px; height: 4px; animation-duration: 4.6s; animation-delay: 1.8s; }
.home-hero .fly.f5 { left: 12%; top: 70%; width: 4px; height: 4px; animation-duration: 5s; animation-delay: 2.4s; }
.home-hero .fly.f6 { left: 55%; top: 30%; width: 4px; height: 4px; animation-duration: 4.4s; animation-delay: 3s; }

/* corner foliage blobs */
@keyframes swayBig  { 0%, 100% { transform: rotate(31deg); }  50% { transform: rotate(38deg); } }
@keyframes swayBigR { 0%, 100% { transform: rotate(-27deg); } 50% { transform: rotate(-34deg); } }
.home-hero .leafblob { position: absolute; pointer-events: none; }
.home-hero .lb1 { left: -40px; bottom: -30px; width: 210px; height: 210px; background: #08200F; border-radius: 0 100% 0 100%; animation: swayBig 9s ease-in-out infinite; transform-origin: bottom left; opacity: .92; }
.home-hero .lb2 { left: 95px; bottom: -70px; width: 150px; height: 150px; background: #0D3018; border-radius: 0 100% 0 100%; transform: rotate(15deg); animation: sway 11s ease-in-out 1s infinite; transform-origin: bottom left; opacity: .85; }
.home-hero .lb3 { right: -50px; bottom: -40px; width: 230px; height: 230px; background: #08200F; border-radius: 100% 0 100% 0; animation: swayBigR 10s ease-in-out .5s infinite; transform-origin: bottom right; opacity: .92; }
.home-hero .lb4 { right: 115px; bottom: -60px; width: 140px; height: 140px; background: #0D3018; border-radius: 100% 0 100% 0; transform: rotate(-12deg); animation: sway 12s ease-in-out 2s infinite; transform-origin: bottom right; opacity: .85; }

@keyframes heroIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.home-hero .hero-center {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(70px, 12vh, 120px);
  text-align: center;
  padding: 0 var(--pad-x);
}
.home-hero .hero-eyebrow {
  display: inline-block;
  background: rgba(8, 30, 16, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--topbar-tint);
  animation: heroIn .8s ease .15s both;
}
.home-hero h1 {
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1;
  color: var(--cream);
  margin: 18px 0 0;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
  animation: heroIn .9s ease .3s both;
}
.home-hero h1 .accent { color: var(--sun); }
.home-hero .hero-sub {
  font-weight: 600;
  font-size: clamp(15px, 2.5vw, 19.5px);
  color: rgba(253, 249, 237, .9);
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
  animation: heroIn .9s ease .45s both;
}
.home-hero .hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 0;
  animation: heroIn .9s ease .6s both;
}
@keyframes cueBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.home-hero .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 30px; height: 48px;
  border: 2.5px solid rgba(253, 249, 237, .7);
  border-radius: var(--r-pill);
  display: flex;
  justify-content: center;
  padding-top: 9px;
}
.home-hero .scroll-cue span {
  width: 5px; height: 10px;
  background: var(--sun);
  border-radius: 99px;
  animation: cueBounce 1.6s ease-in-out infinite;
}

/* ---- quick facts ---- */
.home-facts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 56px;
  padding-bottom: 8px;
}
.fact {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 180px;
}
.fact .fact-ic {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.fact .fact-t { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.fact .fact-s { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ---- follow the trail ---- */
@keyframes dotSlide { to { background-position-x: 24px; } }
.trail { position: relative; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 40px 60px 30px; }
.trail-line {
  position: absolute;
  left: 170px; right: 170px; top: 92px;
  height: 4px;
  background-image: repeating-linear-gradient(90deg, #B9C9A8 0 12px, transparent 12px 24px);
  animation: dotSlide 1.4s linear infinite;
}
.trail-step { position: relative; width: 230px; text-align: center; margin: 0 auto; }
.trail-step .step-num {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 0 10px 24px rgba(23, 66, 31, .15);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  animation: bob 5s ease-in-out infinite;
}
.trail-step .step-t { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); margin-top: 14px; }
.trail-step .step-s { font-weight: 600; font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
@media (max-width: 1080px) {
  .trail { padding: 40px 0 10px; }
  .trail-line { display: none; }
  .trail-step { width: 46%; margin-bottom: 26px; }
}
@media (max-width: 560px) {
  .trail-step { width: 100%; }
}

/* ---- inside the jungle ---- */
.inside {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.inside-photo { position: relative; }
.inside-photo .photo-shadow {
  position: absolute;
  inset: 20px -18px -18px 20px;
  background: var(--ink);
  opacity: .09;
  border-radius: 170px 30px 170px 30px;
}
.inside-photo img.main {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 170px 30px 170px 30px;
  border: 5px solid #fff;
  box-shadow: 0 24px 50px rgba(23, 66, 31, .18);
}
.inside-photo .rating-badge {
  position: absolute;
  top: -20px; right: -12px;
  width: 104px; height: 104px;
  background: var(--sun);
  border: 4px solid var(--bg);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
  animation: bob 4s ease-in-out infinite;
  transform: rotate(6deg);
}
.inside-photo .rating-badge .rb-v { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: var(--ink); line-height: 1; }
.inside-photo .rating-badge .rb-s { font-size: 11px; font-weight: 700; color: #5C4A12; }
.inside-photo .show-pill {
  position: absolute;
  bottom: 24px; left: -24px;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
  transform: rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inside-photo .show-pill::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.inside-copy p { font-weight: 600; font-size: 17px; color: var(--body); line-height: 1.6; margin: 16px 0 0; max-width: 520px; }
.inside-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.inside-checks { display: flex; gap: 26px; margin: 26px 0 0; font-weight: 600; font-size: 14.5px; color: var(--body); flex-wrap: wrap; }
.inside-checks span { display: flex; align-items: center; gap: 8px; }
.inside-checks .ck { font-family: var(--font-display); font-weight: 800; color: var(--green); }
@media (max-width: 980px) {
  .inside { grid-template-columns: 1fr; gap: 40px; }
  .inside-photo { max-width: 480px; margin: 0 auto; }
  .inside-photo .show-pill { left: 0; }
}

/* ---- admission section (sand) ---- */
.home-admission { position: relative; background: var(--sand); overflow: hidden; }
.home-admission .giraffe { position: absolute; left: 26px; bottom: 0; width: 120px; animation: sway 6s ease-in-out infinite; transform-origin: bottom center; opacity: .95; pointer-events: none; z-index: 0; }
.home-admission .leaf { position: absolute; border-radius: 0 65% 0 65%; opacity: .7; animation: leafFloat 5.5s ease-in-out infinite; }
.home-admission .leaf.l1 { right: 6%; top: 60px; width: 22px; height: 22px; background: var(--leaf); transform: rotate(30deg); }
.home-admission .leaf.l2 { right: 12%; top: 150px; width: 15px; height: 15px; background: var(--green-mid); transform: rotate(-40deg); animation-duration: 7s; animation-delay: .8s; opacity: .55; }
.home-admission .wrap { position: relative; padding-top: 76px; padding-bottom: 70px; }

.adm-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin: 38px 0 0; }
.adm-card { border-radius: var(--r-lg); padding: 34px; text-align: center; }
.adm-card .adm-who { font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.adm-card .adm-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 6vw, 58px); line-height: 1; margin: 14px 0 4px; color: var(--ink); }
.adm-card .adm-note { font-weight: 600; font-size: 13.5px; color: var(--moss); }
.adm-card .adm-sep { margin: 16px auto 0; width: 56px; border-top: 3px dashed var(--sand-line); }
.adm-card .adm-desc { font-weight: 600; font-size: 14.5px; color: var(--body); margin-top: 14px; line-height: 1.6; }
.adm-card.is-featured { background: var(--ink); position: relative; box-shadow: 0 16px 36px rgba(23, 66, 31, .25); }
.adm-card.is-featured .adm-price { color: var(--cream); }
.adm-card.is-featured .adm-note { color: var(--on-dark-dim); }
.adm-card.is-featured .adm-sep { border-color: rgba(253, 249, 237, .25); }
.adm-card.is-featured .adm-desc { color: var(--on-dark-body); }
.adm-card .adm-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--sun);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  white-space: nowrap;
}
@media (max-width: 900px) { .adm-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.member-strip {
  background: #fff;
  border-radius: var(--r-lg);
  margin: 26px 0 0;
  padding: 30px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--sh-card);
  flex-wrap: wrap;
}
.member-strip .ms-title { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--ink); line-height: 1.15; }
.member-strip .ms-note { font-weight: 600; font-size: 13.5px; color: var(--moss); margin-top: 8px; }
.member-strip .ms-tiers { display: flex; gap: 16px; flex: 1; justify-content: space-around; flex-wrap: wrap; }
.ms-tier { text-align: center; }
.ms-tier .tier-tag { font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--r-pill); padding: 5px 14px; display: inline-block; }
.ms-tier .tier-p { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); margin-top: 10px; }
.ms-tier .tier-p:last-child { margin-top: 0; }
.ms-tier .tier-p small { font-family: var(--font-body); font-size: 14px; color: var(--moss); font-weight: 600; }
.member-strip .ms-div { width: 2px; background: #F0E9D2; }
.home-admission .adm-hours-note { text-align: center; margin: 22px auto 0; position: relative; z-index: 1; font-weight: 600; font-size: 13.5px; color: var(--moss); max-width: 760px; }

/* ---- birthday parties (dark) ---- */
.home-parties { background: var(--ink); position: relative; overflow: hidden; }
.home-parties .bubble { position: absolute; border-radius: 50%; }
.home-parties .bu1 { left: -60px; top: -60px; width: 220px; height: 220px; background: rgba(140, 198, 62, .08); }
.home-parties .bu2 { right: -80px; bottom: -80px; width: 300px; height: 300px; background: rgba(255, 201, 60, .06); }
.home-parties .wrap { position: relative; padding-top: 80px; padding-bottom: 70px; }
.home-parties .hp-eyebrow { background: rgba(255, 201, 60, .14); color: var(--sun); }
.home-parties h2 { color: var(--cream); margin: 14px 0 0; }
.home-parties .hp-sub { color: var(--on-dark-dim); max-width: 640px; margin: 10px auto 0; }

.pk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0 0; }
.pk-card { background: var(--bg); border-radius: 26px; padding: 28px; transition: transform .25s, box-shadow .25s; }
.pk-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(0, 0, 0, .3); }
.pk-card .pk-ic { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; }
.pk-card .pk-ic img { width: 46px; height: 46px; object-fit: contain; }
.pk-card .pk-name { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); margin: 16px 0 2px; }
.pk-card .pk-cap { font-weight: 700; font-size: 13.5px; }
.pk-card .pk-price { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink); margin: 14px 0 0; }
.pk-card .pk-price small { font-family: var(--font-body); font-size: 15px; color: var(--moss); font-weight: 700; }
.pk-card .pk-alt { font-weight: 600; font-size: 13px; color: var(--moss); }
.pk-card .pk-food { border-top: 2px dashed var(--sand-line); margin: 16px 0 0; padding: 14px 0 0; font-weight: 600; font-size: 13.5px; color: var(--body); line-height: 1.7; }
.pk-card { display: flex; flex-direction: column; }
.pk-card .pk-book { margin-top: auto; align-self: stretch; text-align: center; }
.pk-card .pk-food { margin-bottom: 18px; }
@media (max-width: 1080px) { .pk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .pk-grid { grid-template-columns: 1fr; } }

.fever-banner {
  background: linear-gradient(120deg, #0B2413, #123A1E);
  border: 2px solid rgba(255, 201, 60, .4);
  border-radius: 26px;
  margin: 20px 0 0;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  transition: transform .25s, box-shadow .25s;
}
.fever-banner:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0, 0, 0, .35); }
.fever-banner .fv-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 3vw, 28px); color: var(--sun); }
.fever-banner .fv-flag { background: var(--sun); border-radius: var(--r-pill); padding: 4px 12px; font-weight: 700; font-size: 12px; color: var(--ink); transform: rotate(-2deg); display: inline-block; }
.fever-banner .fv-sub { font-weight: 600; font-size: 14.5px; color: var(--on-dark-body); margin-top: 8px; line-height: 1.6; }
.fever-banner .fv-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 34px); color: var(--cream); }
.fever-banner .fv-price small { font-family: var(--font-body); font-size: 16px; color: var(--on-dark-dim); font-weight: 700; }
.fever-banner .fv-alt { font-weight: 600; font-size: 12.5px; color: var(--on-dark-dim); }
.home-parties .hp-bottom { display: flex; align-items: center; justify-content: center; gap: 26px; margin: 30px 0 0; flex-wrap: wrap; }
.home-parties .hp-bottom .hp-note { font-weight: 600; font-size: 13.5px; color: var(--on-dark-dim); }

/* ---- group events banner ---- */
.home-groups { padding-top: 60px; padding-bottom: 60px; }
.groups-banner { background: var(--pale-green); border-radius: var(--r-xl); display: flex; align-items: stretch; overflow: hidden; }
.groups-banner .gb-copy { flex: 1; padding: 48px 50px; }
.groups-banner .gb-eyebrow { background: rgba(46, 125, 50, .14); color: var(--green); letter-spacing: 2px; padding: 7px 16px; font-size: 13px; }
.groups-banner h2 { font-size: clamp(28px, 4vw, 40px); margin: 14px 0 0; line-height: 1.1; }
.groups-banner .gb-sub { font-weight: 600; font-size: 16px; color: var(--body-2); line-height: 1.6; margin: 14px 0 0; max-width: 520px; }
.groups-banner .gb-stats { display: flex; gap: 26px; margin: 24px 0 0; flex-wrap: wrap; }
.groups-banner .gb-stat .st-v { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink); }
.groups-banner .gb-stat .st-v small { font-family: var(--font-body); font-size: 15px; color: var(--muted); font-weight: 600; }
.groups-banner .gb-stat .st-s { font-weight: 600; font-size: 13px; color: var(--muted); }
.groups-banner .gb-div { width: 2px; background: rgba(23, 66, 31, .12); }
.groups-banner .gb-cta { display: flex; gap: 14px; margin: 28px 0 0; align-items: center; flex-wrap: wrap; }
.groups-banner .gb-cta .gb-note { font-weight: 600; font-size: 13px; color: var(--body); }
.groups-banner .gb-photo { flex: 0 0 380px; position: relative; overflow: hidden; }
.groups-banner .gb-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.groups-banner .gb-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--pale-green) 0%, rgba(221, 239, 200, 0) 30%); }
@media (max-width: 980px) {
  .groups-banner { flex-direction: column; }
  .groups-banner .gb-photo { flex: none; height: 240px; }
  .groups-banner .gb-photo::after { background: linear-gradient(180deg, var(--pale-green) 0%, rgba(221, 239, 200, 0) 30%); }
  .groups-banner .gb-copy { padding: 34px 28px; }
}

/* ---- stats strip ---- */
.home-stats {
  background: var(--ink);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 52px var(--pad-x);
  flex-wrap: wrap;
}
.home-stats .hs-item { text-align: center; min-width: 130px; }
.home-stats .hs-v { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 52px); color: var(--sun); line-height: 1; }
.home-stats .hs-s { font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-dim); margin-top: 8px; }
.home-stats .hs-div { width: 2px; height: 58px; background: rgba(253, 249, 237, .14); }
@media (max-width: 800px) { .home-stats .hs-div { display: none; } .home-stats .hs-item { min-width: 40%; } }

/* ---- awards ---- */
.home-awards {
  padding-top: 64px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.home-awards h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
.home-awards .aw-sub { margin-top: 10px; font-weight: 600; font-size: 15px; color: var(--muted); }
.home-awards .aw-badges { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.aw-badge {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(23, 66, 31, .12);
  animation: bob 5s ease-in-out infinite;
}
.aw-badge img { height: 88px; width: auto; }
.aw-badge.aw-year { border: 3px solid var(--sun); }
.aw-badge .awy-top { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--note-ink); }
.aw-badge .awy-year { font-family: var(--font-display); font-weight: 800; font-size: 29px; color: var(--ink); line-height: 1; }
.aw-badge .awy-stars { font-size: 10.5px; font-weight: 700; color: var(--body); }

/* ---- gallery peek ---- */
.home-peek { padding-top: 50px; padding-bottom: 30px; }
.peek-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 44px; padding: 36px 0 10px; }
.polaroid {
  background: #fff;
  padding: 13px 13px 40px;
  box-shadow: 0 14px 30px rgba(23, 66, 31, .16);
  position: relative;
  transition: transform .25s;
}
.polaroid:hover { transform: rotate(0deg) scale(1.03) !important; z-index: 2; }
.polaroid .tape { position: absolute; top: -12px; left: 50%; width: 86px; height: 24px; }
.polaroid img { width: min(330px, 76vw); display: block; }
.polaroid .cap { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--body-2); text-align: center; margin-top: 11px; }
.polaroid.p1 { transform: rotate(-3deg); }
.polaroid.p1 .tape { background: rgba(255, 201, 60, .75); transform: translateX(-50%) rotate(-2deg); }
.polaroid.p2 { transform: rotate(2deg); margin-top: 20px; }
.polaroid.p2 .tape { background: rgba(126, 200, 227, .75); transform: translateX(-50%) rotate(3deg); }
.polaroid.p2 img { width: min(300px, 70vw); }
.polaroid.p3 { transform: rotate(-2deg); }
.polaroid.p3 .tape { background: rgba(140, 198, 62, .6); transform: translateX(-50%) rotate(-3deg); }
.dashed-link { border-bottom: 2px dashed rgba(46, 125, 50, .4); padding-bottom: 2px; font-weight: 700; }

/* ---- good to know (highlight band, right under the hero/ticker) ---- */
.home-know {
  background: var(--sand);
  border-bottom: 2px dashed var(--sand-line);
}
.home-know .wrap { padding-top: 54px; padding-bottom: 54px; }
.know-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 30px 0 0;
}
.sticker {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s;
}
.sticker:hover { transform: rotate(0deg) translateY(-3px) !important; }
.sticker.s1 { background: var(--pale-peach); transform: rotate(-2deg); }
.sticker.s2 { background: var(--pale-mint); transform: rotate(1.5deg); }
.sticker.s3 { background: #DFF0F9; transform: rotate(-1deg); }
.sticker.s4 { background: var(--pale-pink); transform: rotate(2deg); }
.sticker.s5 { background: var(--pale-yellow); transform: rotate(-1.5deg); }
.sticker small { font-size: 13px; }
.know-links {
  display: flex;
  gap: 26px;
  margin: 26px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}
