/* ============================================================
   HOME.CSS — section styling & signature animations
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.panel-hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--clr-dark); color: #fff;
  overflow: hidden;
  padding-bottom: calc(var(--panel-pad) + 60px);
}
.hero-media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero-media img,
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  filter: brightness(.5) saturate(1.05);
  display: block;
}
/* slow zoom drifts the still image; the video already has its own motion */
.hero-media img { animation: heroDrift 24s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { transform: scale(1.02) translateX(0); }
  to   { transform: scale(1.09) translateX(-1.5%); }
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(200,148,30,.18), transparent 55%),
    linear-gradient(to bottom, rgba(22,36,26,.35) 0%, rgba(22,36,26,.5) 55%, rgba(22,36,26,.92) 100%);
}
/* subtle film grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-logo {
  display: block;
  width: clamp(56px, 7vw, 80px); height: auto;
  margin-bottom: 1.4rem;
}
.hero-inner { position: relative; z-index: 2; }
.hero-kicker {
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--clr-accent-light); margin-bottom: 1.4rem;
}
.hero-title {
  font-family: 'Bricolage Grotesque', var(--font-display);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.02;
  margin-bottom: 1.6rem; text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-title span { display: block; }
.hero-title-accent { color: var(--clr-accent-light); font-style: normal; font-weight: 700; }
.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.82);
  max-width: 46ch; margin-bottom: 2.4rem; font-weight: 400;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* scroll hint — labelled "Scroll to explore" + bouncing chevron */
.scroll-hint {
  position: absolute; left: 50%; bottom: clamp(64px, 9vh, 104px); transform: translateX(-50%);
  z-index: 2; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.82);
  transition: color .25s, transform .25s var(--ease-out);
}
.scroll-hint:hover { color: #fff; transform: translateX(-50%) translateY(3px); }
.scroll-hint-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-hint-chev {
  width: 16px; height: 16px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: chevBounce 1.6s ease-in-out infinite;
}
@keyframes chevBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .7; }
  50%      { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ── Quirk marquee ────────────────────────────────────────── */
.quirk-marquee {
  background: var(--clr-bg); overflow: hidden; padding: 1.1rem 0;
  border-bottom: 1px solid var(--clr-border);
  user-select: none;
}
.quirk-track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--clr-text-muted); white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.quirk-track i { font-style: normal; color: var(--clr-border); font-weight: 400; letter-spacing: -.05em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.quirk-marquee:hover .quirk-track { animation-play-state: paused; }

/* ── Stay / offers ────────────────────────────────────────── */
.panel-stay { background: var(--clr-bg); }

.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}
.offer-card {
  display: flex; flex-direction: column;
  background: var(--clr-surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ── Animated number visual ── */
.offer-visual {
  position: relative; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.offer-visual--1 { background: linear-gradient(135deg, #1d3d21 0%, #2e5d33 60%, #3d7040 100%); }
.offer-visual--2 { background: linear-gradient(135deg, #0e2a38 0%, #1a4d6b 60%, #235e80 100%); }
.offer-visual--3 { background: linear-gradient(135deg, #3a2a12 0%, #7a4a1a 60%, #9a6028 100%); }

/* subtle radial highlight */
.offer-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.09), transparent 65%);
}

/* ── Offer-big-num: removed (overlaid numbers not used) ── */

/* ── Cross-dissolve photo slideshow ── */
.offer-slide {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-out);
}
.offer-slide.is-active { opacity: 1; }
/* slow Ken Burns drift on the visible slide */
@media (prefers-reduced-motion: no-preference) {
  .offer-slide.is-active { animation: kenBurns 9s ease-out both; }
}
@keyframes kenBurns {
  from { transform: scale(1.001); }
  to   { transform: scale(1.085); }
}
/* legibility scrim over the photos, under the number/label */
.offer-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(155deg, rgba(13,22,15,.12) 0%, rgba(13,22,15,.20) 45%, rgba(13,22,15,.5) 100%);
}

.offer-photo-btn {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
  padding: .45em 1.1em; border-radius: 99px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background .2s;
}
.offer-card:hover .offer-photo-btn,
.offer-card.is-visible .offer-photo-btn { opacity: 1; transform: translateY(0); }
.offer-photo-btn:hover { background: rgba(255,255,255,.28); }

/* ── Card body ── */
.offer-body {
  display: flex; flex-direction: column; gap: .55rem;
  padding: 1.4rem 1.4rem 1.6rem;
}
.offer-body h3 { font-size: 1.1rem; }
.offer-body p  { font-size: .9rem; color: var(--clr-text-muted); }
.offer-body .arrow-link { margin-top: .4rem; }

.quirk-aside { margin-top: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.quirk-note {
  font-size: clamp(1.35rem, 3vw, 1.8rem); max-width: 34ch; margin: 0 auto;
  line-height: 1.35; color: var(--clr-primary-dark);
}

/* ── Rates ────────────────────────────────────────────────── */
.panel-rates {
  background: var(--clr-dark); color: #fff;
  padding-top: calc(var(--panel-pad) + 60px);
}
.rate-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem; margin-bottom: 2rem;
  align-items: start;
}
.rate-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .35s, background .35s, transform .45s var(--ease-out);
}
.rate-card:hover { border-color: rgba(240,184,74,.4); transform: translateY(-4px); }
.rate-card-btn {
  width: 100%; padding: 1.8rem 1.5rem; text-align: left; position: relative;
  display: flex; flex-direction: column; gap: .3rem;
}
/* chevron shows which card is open (rotates up when expanded) */
.rate-card-btn::after {
  content: ''; position: absolute; top: 2rem; right: 1.6rem;
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,.45); border-bottom: 2px solid rgba(255,255,255,.45);
  transform: rotate(45deg); transition: transform .3s var(--ease-out), border-color .3s;
}
.rate-card-btn[aria-expanded="true"]::after {
  transform: rotate(225deg); border-color: var(--clr-accent-light);
}
.rate-name { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.72); }
.rate-price {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800; color: var(--clr-accent-light); line-height: 1;
}
.rate-unit { font-size: .85rem; color: rgba(255,255,255,.72); }
.rate-alt  { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .35rem; margin-bottom: .4rem; }
.rate-card-detail {
  padding: 0 1.5rem 1.5rem; font-size: .88rem; color: rgba(255,255,255,.7);
}
.rate-card-detail p { max-width: none; }

.rates-fine { margin-top: 1.5rem; }
.rates-fine summary {
  cursor: pointer; font-size: .9rem; color: rgba(255,255,255,.6);
  font-weight: 600; padding: .4rem 0;
  transition: color .25s;
  list-style-position: inside;
}
.rates-fine summary:hover { color: var(--clr-accent-light); }
.rates-fine table { color: rgba(255,255,255,.8); }
.rates-fine th { color: #fff; }

/* ── Book ─────────────────────────────────────────────────── */
.panel-book { background: var(--clr-bg); }

.booking-wizard {
  background: var(--clr-surface); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow-lg);
}
.wizard-bar { height: 4px; background: var(--clr-mist); border-radius: 99px; margin-bottom: 1.2rem; overflow: hidden; }
.wizard-bar-fill {
  height: 100%; border-radius: 99px; width: 0;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transition: width .6s var(--ease-out);
}
.wizard-steps { display: flex; margin-bottom: 2rem; }
.wizard-steps li {
  flex: 1; text-align: center; font-size: .76rem; color: var(--clr-text-muted);
  padding-bottom: .45rem; border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.wizard-steps li.is-active { color: var(--clr-primary); border-color: var(--clr-primary); font-weight: 600; }
.wizard-steps li.is-done   { color: var(--clr-primary-light); }

.wizard-panel { border: none; }
.wizard-panel:not(.is-active) { display: none; }
.wizard-panel.is-active { animation: panelIn .45s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: none; }
}
.wizard-question { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: .4rem; }
.wizard-subhead  { font-family: var(--font-display); font-weight: 600; margin-bottom: .6rem; }
.booking-section { margin-bottom: 1.2rem; }
.wizard-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.6rem; gap: 1rem; }
.wizard-review {
  background: var(--clr-mist); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; font-size: .92rem; margin-bottom: 1.2rem; line-height: 1.75;
}
.wizard-price-box { margin-bottom: 1.2rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.price-table td { padding: .45rem .6rem; border-bottom: 1px solid var(--clr-border); }
.price-table td:last-child { text-align: right; white-space: nowrap; }
.price-table tr.price-sub td { color: var(--clr-text-muted); font-size: .82rem; border-bottom-style: dashed; }
.price-table tr.price-total td { font-weight: 700; font-size: .95rem; color: var(--clr-primary); border-top: 2px solid var(--clr-border); border-bottom: none; }
.price-note { font-size: .78rem; color: var(--clr-text-muted); margin: .4rem 0 0; }

/* ── Visit / travel ───────────────────────────────────────── */
.panel-visit { background: var(--clr-bg); }

.travel-tabs {
  display: flex; gap: .6rem; margin-bottom: 1.8rem; flex-wrap: wrap;
}
.travel-tab {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .7em 1.5em; border-radius: 99px;
  background: var(--clr-surface); border: 1.5px solid var(--clr-border);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--clr-text-muted);
  transition: all .3s var(--ease-out);
}
.travel-tab:hover { border-color: var(--clr-primary-light); color: var(--clr-primary); transform: translateY(-2px); }
.travel-tab.is-active {
  background: var(--clr-primary); border-color: var(--clr-primary); color: #fff;
  box-shadow: 0 6px 18px rgba(46,93,51,.3);
}

.travel-pane { display: none; }
.travel-pane.is-active { display: block; animation: paneIn .5s var(--ease-out); }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.travel-map-wrap { margin-bottom: 1.4rem; }
.map-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--clr-border); box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.leaflet-map { height: clamp(300px, 46vh, 440px); background: var(--clr-mist); }
.map-wrap.map-expanded .leaflet-map { height: min(72vh, 640px); }
.map-toolbar { position: absolute; top: .7rem; right: .7rem; z-index: 500; display: flex; gap: .35rem; }
.map-expand-btn {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.92); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background .2s, transform .2s;
}
.map-expand-btn:hover { background: #fff; transform: scale(1.08); }

/* animated map markers */
.pulse-marker { position: relative; }
.pulse-marker::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid var(--clr-primary);
  animation: markerPulse 2s var(--ease-out) infinite;
}
@keyframes markerPulse {
  from { transform: scale(.5); opacity: .9; }
  to   { transform: scale(1.5); opacity: 0; }
}
.vehicle-marker { font-size: 22px; line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,.35)); }

.route-picker { display: flex; flex-wrap: wrap; gap: .5rem; }
.route-btn {
  padding: .55em 1.2em; border-radius: 99px;
  border: 1.5px solid var(--clr-border); background: var(--clr-surface);
  font-size: .88rem; font-weight: 600; color: var(--clr-text-muted);
  display: inline-flex; align-items: center; gap: .45em;
  transition: all .3s var(--ease-out);
}
.route-btn.is-active {
  background: var(--clr-primary); border-color: var(--clr-primary); color: #fff;
  box-shadow: 0 4px 14px rgba(46,93,51,.28);
}
.route-btn:hover:not(.is-active) { border-color: var(--clr-primary-light); color: var(--clr-primary); }
.route-btn-tag {
  background: var(--clr-accent); color: #fff; border-radius: 99px;
  font-size: .66rem; padding: .15em .6em; text-transform: uppercase; letter-spacing: .06em;
}

.route-detail { display: none; }
.route-detail.is-active { display: block; animation: paneIn .45s var(--ease-out); }
.route-detail h3 { margin-bottom: .6rem; }
.route-time { font-weight: 400; color: var(--clr-text-muted); font-size: .85rem; font-family: var(--font-body); display: inline-block; }
.route-tips { margin-left: 0; list-style: none; font-size: .92rem; color: var(--clr-text-muted); }
.route-tips li { margin-bottom: .35rem; padding-left: 1rem; position: relative; }
.route-tips li::before { content: '—'; position: absolute; left: 0; color: var(--clr-primary-light); }

.travel-info h3 { margin-bottom: .6rem; }
.travel-info p { font-size: .95rem; color: var(--clr-text-muted); margin-bottom: .8rem; }
.travel-meta { font-size: .85rem !important; }
.travel-info .btn { margin-top: .4rem; }
.fly-operators { font-size: .92rem; }
.fly-operators li { padding: .4rem 0; border-bottom: 1px solid var(--clr-border); }
.fly-operators a { color: var(--clr-primary); font-weight: 600; text-decoration: none; }
.fly-operators a:hover { text-decoration: underline; }

/* ── Contact ──────────────────────────────────────────────── */
.panel-contact {
  background: var(--clr-dark); color: #fff;
  padding-top: calc(var(--panel-pad) + 60px);
}
.contact-block { margin-bottom: 2.2rem; display: flex; flex-direction: column; gap: .7rem; }
.contact-big {
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 800;
  color: var(--clr-accent-light); text-decoration: none; line-height: 1; width: fit-content;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 3px;
  transition: background-size .45s var(--ease-out), color .3s;
}
.contact-big:hover { background-size: 100% 3px; }
.contact-email { color: rgba(255,255,255,.75); text-decoration: underline; font-size: 1rem; width: fit-content; }
.contact-email:hover { color: #fff; }
.contact-address { font-size: .9rem; color: rgba(255,255,255,.65); }

.contact-inquire { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.contact-inquire .inquire-panel { width: 100%; max-width: 760px; }
.inquire-inline-form {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); width: 100%; max-width: 760px;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.1rem;
}
.inquire-inline-form .form-field { margin-bottom: 1rem; }
.inquire-inline-form .form-field--full { grid-column: 1 / -1; }
.inquire-inline-form .btn { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 520px) { .inquire-inline-form { grid-template-columns: 1fr; } }
.inquire-inline-form .form-field input,
.inquire-inline-form .form-field textarea {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: #fff;
}
.inquire-inline-form .form-field label { color: rgba(255,255,255,.72); }
.inquire-inline-form .form-field input:focus,
.inquire-inline-form .form-field textarea:focus { border-color: var(--clr-accent-light); box-shadow: 0 0 0 3px rgba(240,184,74,.15); }
.inquire-inline-form .form-field input:not(:placeholder-shown) ~ label,
.inquire-inline-form .form-field input:focus ~ label,
.inquire-inline-form .form-field textarea:not(:placeholder-shown) ~ label,
.inquire-inline-form .form-field textarea:focus ~ label { color: var(--clr-accent-light); }
.inquire-form-status { color: var(--clr-accent-light); }
.cf-turnstile { margin: .25rem 0 .5rem; }

.rates-fine-note { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .75rem; }

/* ── Contact — phone uses body font ── */
.contact-big { font-family: var(--font-body); font-weight: 700; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .offer-grid { grid-template-columns: 1fr; }
  .rate-cards { grid-template-columns: 1fr; }
  .leaflet-map { height: 280px; }
  .hero-cta .btn { width: 100%; }
}

/* ── Park info slide-out drawer ───────────────────────────── */
.info-drawer { position: fixed; inset: 0; z-index: 450; }
.info-drawer[hidden] { display: none; }
.info-drawer-backdrop {
  position: absolute; inset: 0; background: rgba(16,24,18,.55);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; animation: infoFade .3s ease forwards;
}
.info-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(480px, 92vw); background: var(--clr-bg);
  display: flex; flex-direction: column;
  box-shadow: -14px 0 50px rgba(0,0,0,.32);
  transform: translateX(100%); animation: infoSlide .35s var(--ease-out) forwards;
}
@keyframes infoFade  { to { opacity: 1; } }
@keyframes infoSlide { to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .info-drawer-backdrop, .info-drawer-panel { animation-duration: .01ms; }
}

.info-drawer-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  background: var(--clr-dark); color: #fff; padding: 1.5rem 1.4rem 1.3rem;
}
.info-drawer-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--clr-accent-light); margin-bottom: .35rem;
}
.info-drawer-head h2 { font-size: 1.5rem; line-height: 1.1; }
.info-drawer-close {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.info-drawer-close:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.info-drawer-close:focus-visible { outline: 3px solid var(--clr-accent-light); outline-offset: 2px; }

.info-tabs { display: flex; gap: .35rem; padding: 0 1rem; background: var(--clr-dark); }
.info-tab {
  flex: 1; padding: .7em .4em; border-radius: 10px 10px 0 0;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  color: rgba(255,255,255,.6); background: transparent; white-space: nowrap;
  transition: color .2s, background .2s;
}
.info-tab:hover { color: #fff; }
.info-tab.is-active { background: var(--clr-bg); color: var(--clr-primary); }
.info-tab:focus-visible { outline: 3px solid var(--clr-accent-light); outline-offset: -3px; }

.info-drawer-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 1.5rem 1.4rem; }
.info-pane[hidden] { display: none; }
.info-pane h3 {
  font-size: 1rem; margin: 1.5rem 0 .55rem; color: var(--clr-dark);
  font-family: var(--font-display);
}
.info-pane h3:first-child { margin-top: 0; }
.info-list { display: flex; flex-direction: column; gap: .65rem; }
.info-list li {
  position: relative; padding-left: 1.1rem; font-size: .92rem; line-height: 1.55;
  color: var(--clr-text);
}
.info-list li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--clr-accent);
}
.info-list li strong { color: var(--clr-dark); font-weight: 600; }
.info-note {
  background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: 10px;
  padding: .85rem 1rem; font-size: .86rem; color: var(--clr-text-muted); margin-top: 1.1rem;
}
.info-note a { color: var(--clr-primary); font-weight: 600; }
.info-alert {
  border-left: 3px solid var(--clr-accent); background: rgba(200,148,30,.09);
  border-radius: 8px; padding: .85rem 1rem; margin: 1.2rem 0 .2rem;
  font-size: .9rem; line-height: 1.55;
}
.info-alert strong { color: var(--clr-dark); }

.info-drawer-foot {
  border-top: 1px solid var(--clr-border); background: var(--clr-surface);
  padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.info-drawer-foot p { font-family: var(--font-display); font-weight: 600; color: var(--clr-dark); }

@media (max-width: 420px) {
  .info-drawer-panel { width: 100vw; }
  .info-drawer-foot { flex-direction: column; align-items: stretch; text-align: center; }
}
