:root {
  --teal: #029db2; --teal-deep: #027d8e; --green: #87c640; --gold: #fcb934;
  --red: #ef3e24; --red-deep: #c92c15; --purple: #241239;
  --ink: #333333; --ink-2: #545454; --line: #e4e0da; --bed: #f5f2ee;
}
main { font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; color: var(--ink); font-size: 16px; line-height: 1.6; }
main a { color: var(--teal); text-decoration: none; }
main a:hover { color: var(--teal-deep); text-decoration: underline; }
main h1, main h2, main h3 { font-family: 'Roboto Slab', serif; line-height: 1.2; margin: 0; }

.page-title { color: var(--teal); font-size: 42px; font-weight: 700; }
.lede { font-size: 18px; color: var(--ink-2); margin: 12px 0 0; max-width: 60ch; }
.cta-row { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px;
  padding: 12px 26px; border-radius: 5px; line-height: 1.2; }
.btn.primary { background: var(--red); color: #fff; box-shadow: 0 3px 0 var(--red-deep); }
.btn.primary:hover { background: var(--red-deep); color: #fff; text-decoration: none; }
.btn.outline { border: 2px solid var(--teal); color: var(--teal); padding: 10px 24px; }
.btn.outline:hover { background: var(--teal); color: #fff; text-decoration: none; }
.btn.sm { padding: 7px 16px; font-size: 13.5px; border-radius: 4px; }
.cta-phone { font-size: 15px; color: var(--ink-2); }

.quickfacts { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  margin-top: 24px; background: #fff; }
.qf { flex: 1; padding: 13px 18px; border-left: 1px solid var(--line); border-top: 3px solid var(--qf-color, var(--teal)); }
.qf:first-child { border-left: 0; }
.qf-label { display: block; font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 700; margin-bottom: 4px; }
.qf-val { font-family: 'Roboto Slab', serif; font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.format-note { margin: 14px 0 0; font-size: 15px; color: var(--ink-2); }
.format-note strong { color: var(--ink); }

.hero-photo { margin: 28px 0 0; }
.hero-photo img { width: 100%; border-radius: 8px; display: block; object-fit: cover; height: 300px; }
.hero-photo figcaption { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.meta-line { font-size: 15px; color: var(--ink-2); margin: 18px 0 0; }

.sect { margin-top: 52px; }
.sect > h2 { color: var(--gold); font-size: 30px; font-weight: 700; margin-bottom: 18px; }
.sect > h2 .thin { color: var(--ink-2); font-weight: 500; }

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(35,32,33,.07); background: #fff; }
.loc-card .head { color: #fff; padding: 14px 18px; }
.loc-card .head .city { font-family: 'Roboto Slab', serif; font-size: 21px; font-weight: 700; }
.loc-card .head .park { font-size: 14px; opacity: .92; }
.loc-card.srq .head { background: var(--teal); }
.loc-card.stp .head { background: var(--green); }
.loc-card dl { margin: 0; padding: 16px 18px; display: grid; grid-template-columns: 118px 1fr;
  row-gap: 9px; column-gap: 12px; font-size: 15px; }
.loc-card dt { font-weight: 700; color: var(--ink); }
.loc-card dd { margin: 0; color: var(--ink-2); }
.loc-card .foot { border-top: 1px solid var(--line); padding: 12px 18px; font-size: 15px; }
.verify { display: inline-block; vertical-align: 1px; margin-left: 6px; font-family: monospace; font-size: 10.5px;
  background: #fef0d2; color: #8a6a13; border: 1px dashed #e3bb55; border-radius: 3px; padding: 0 5px; }

.formats { padding: 4px 18px 16px; border-top: 1px solid var(--line); }
.format-row { padding: 12px 0; border-top: 1px dashed var(--line); }
.format-row:first-child { border-top: 0; }
.fo-head { display: flex; align-items: center; gap: 8px; }
.fo-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.fo-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.fo-blurb { font-size: 13.5px; color: var(--ink-2); margin: 4px 0 10px; line-height: 1.5; }

.steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.step { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px dashed var(--line); }
.step:last-child { border-bottom: 0; }
.step .num { counter-increment: step; flex: none; width: 44px; height: 44px; border-radius: 50%;
  color: #fff; font-family: 'Roboto Slab', serif; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; }
.step .num::before { content: counter(step); }
.step:nth-child(1) .num { background: var(--red); }
.step:nth-child(2) .num { background: var(--teal); }
.step:nth-child(3) .num { background: var(--green); }
.step h3 { font-size: 19px; margin-bottom: 4px; }
.step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

.tours { display: grid; grid-template-columns: 1fr 300px; gap: 26px; align-items: center; }
.tours img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; display: block; }
.tours p { margin: 0 0 12px; color: var(--ink-2); font-size: 15.5px; }

details { border: 1px solid var(--line); border-radius: 6px; margin-bottom: 10px; background: #fff; }
details summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; padding: 14px 18px; font-weight: 700; font-size: 16.5px; color: var(--ink); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 22px; color: var(--teal); font-weight: 400; }
details[open] summary::after { content: "–"; }
details .body { padding: 0 18px 18px; color: var(--ink-2); font-size: 15px; }
details .body p { margin: 0 0 10px; }
.std-group { margin-bottom: 14px; }
.std-group b { display: block; color: var(--ink); margin-bottom: 3px; }
.std-group a { margin-right: 2px; }

.quote-band { background: #fdf6e7; border: 1px solid #f3dfae; border-radius: 8px; padding: 26px 30px; text-align: center; }
.quote-band blockquote { margin: 0 auto 14px; max-width: 62ch; font-size: 17px; font-style: italic; color: var(--ink); }
.quote-band blockquote footer { font-style: normal; font-weight: 700; font-size: 14px; margin-top: 4px; color: var(--ink-2); }
.quote-band .cta-row { justify-content: center; margin-top: 20px; }

.mad-teaser { margin-top: 52px; border: 1px solid var(--line); border-left: none; border-radius: 8px;
  display: flex; align-items: center; gap: 22px; padding: 20px 24px; background: var(--bed);
  position: relative; overflow: hidden; }
.mad-teaser::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--red), var(--gold), var(--green), var(--teal)); }
.mad-teaser h3 { color: var(--teal); font-size: 21px; margin-bottom: 4px; }
.mad-teaser p { margin: 0; font-size: 15px; color: var(--ink-2); }
.mad-teaser .btn { flex: none; }