/* Glendon Camping Grounds & Moto Park
   Poppins for headings, Open Sans for body. Brand orange #ff5a00. */

:root {
  --white: #ffffff;
  --sand: #f3efe6;
  --sand-2: #e7e1d4;
  --ink: #1e1c19;
  --ink-2: #45413b;
  --muted: #6b665d;
  --line: #d9d3c7;
  --line-2: #e8e3d9;
  --orange: #ff5a00;
  --orange-d: #d64b00;
  --green: #2e3a2a;
  --green-d: #232c20;
  --bone: #efe9dc;
  --ok: #3f7a3a;
  --err: #b3261e;
  --max: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --radius: 6px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --fast: 120ms;
  --header-h: 81px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: var(--orange-d); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color var(--fast) ease; }
a:hover { color: var(--orange); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; line-height: 1.12; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 700; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--sand { background: var(--sand); }
.section--tight { padding: clamp(32px, 4vw, 52px) 0; }
.intro { max-width: 64ch; font-size: 1.08rem; }
.intro--center { margin: 0 auto; text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.prose { max-width: 66ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; }
.section-head { margin-bottom: clamp(24px, 3vw, 40px); max-width: 64ch; }
.section-head h2 { margin-bottom: .35em; }
.section-head p { color: var(--muted); }
.eyebrow { font-size: 14px; color: var(--muted); margin-bottom: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line-2); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--max); margin: 0 auto; padding: 10px var(--gutter); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-family: "Poppins", sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); text-decoration: none; padding: 8px 12px; border-radius: 4px; transition: color var(--fast) ease, background-color var(--fast) ease; }
.nav-links a:hover { color: var(--orange-d); }
.nav-links a.active { color: var(--orange-d); box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }
.nav-phone { color: var(--ink-2) !important; font-weight: 600 !important; margin-left: 12px; }
.nav-cta { background: var(--orange); color: #fff !important; font-weight: 600 !important; padding: 10px 18px !important; border-radius: var(--radius) !important; margin-left: 6px; }
.nav-cta:hover { background: var(--orange-d); }
.nav-links .nav-cta { transition: background-color var(--fast) ease, transform 160ms var(--ease-out); }
.nav-links .nav-cta:active { transform: scale(.97); }
.nav-cta.active { box-shadow: none; border-radius: var(--radius) !important; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 4px; padding: 8px 12px; font: 600 14px "Poppins", sans-serif; color: var(--ink); cursor: pointer; transition: transform 160ms var(--ease-out), border-color var(--fast) ease; }
.nav-toggle:active { transform: scale(.96); }
.nav-toggle[aria-expanded="true"] { border-color: var(--ink); }
@media (max-width: 980px) {
  :root { --header-h: 69px; }
  .brand-logo { height: 48px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 18px; box-shadow: 0 12px 24px -16px rgba(0,0,0,.3); }
  .nav-links.open { display: flex; transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out); }
  @starting-style { .nav-links.open { opacity: 0; transform: translateY(-6px); } }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .nav-links a.active { box-shadow: none; }
  .nav-phone, .nav-cta { margin-left: 0; }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0 !important; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; font: 600 15px "Poppins", sans-serif; border-radius: var(--radius); text-decoration: none; cursor: pointer; border: 2px solid transparent; line-height: 1.2; transition: background-color var(--fast) ease, color var(--fast) ease, border-color var(--fast) ease, transform 160ms var(--ease-out); }
.btn:active { transform: scale(.97); }
.btn:disabled { cursor: default; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-d); border-color: var(--orange-d); color: #fff; }
.btn-secondary, .btn-amber-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover, .btn-amber-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { display: none; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Home hero */
.hero { position: relative; height: calc(100vh - var(--header-h)); height: calc(100svh - var(--header-h)); min-height: 520px; background: #2b2a26; color: #fff; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.7) 100%); }
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(36px, 6vw, 72px); }
.hero h1 { color: #fff; max-width: 16ch; font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero p { color: rgba(255,255,255,.95); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 52ch; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero .actions { margin-top: 22px; }
@media (max-width: 720px) { .hero { min-height: 460px; } }

/* Inner page hero */
.page-hero { position: relative; height: calc(100vh - var(--header-h)); height: calc(100svh - var(--header-h)); min-height: 460px; background: #2b2a26; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.7) 100%); }
.page-hero .wrap { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(28px, 4vw, 48px); }
.page-hero h1 { color: #fff; margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.page-hero p { color: rgba(255,255,255,.95); max-width: 60ch; font-size: 1.08rem; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

/* Quick facts */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line-2); padding-top: 8px; }
.fact { padding: 20px 20px 20px 0; border-right: 1px solid var(--line-2); margin-right: 20px; }
.fact:last-child { border-right: 0; margin-right: 0; }
.fact .k { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.fact .v { font: 600 15.5px/1.35 "Poppins", sans-serif; color: var(--ink); }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr 1fr; } .fact:nth-child(2) { border-right: 0; margin-right: 0; } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } .fact { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line-2); padding: 14px 0; } .fact:last-child { border-bottom: 0; } }

/* Page title block */
.page-title { background: var(--sand); padding: clamp(36px, 5vw, 64px) 0; }
.page-title h1 { margin-bottom: 12px; }
.page-title p { max-width: 62ch; font-size: 1.08rem; margin: 0; }
.page-photo { width: 100%; height: auto; aspect-ratio: 1188 / 450; object-fit: cover; max-height: 480px; }

/* Photo + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--top { align-items: start; }
.split figure { margin: 0; }
.split img { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.split img.tall { aspect-ratio: 4 / 5; }
.split figcaption { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.split--flip > :first-child { order: 2; }
.split h2 { margin-bottom: .6em; }
.split .btn { margin-top: 12px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split--flip > :first-child { order: 0; }
}

/* Feature bands (photo edge to edge) */
.band { display: grid; grid-template-columns: 1fr 1fr; }
.band-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.band-media { position: relative; }
.band-body { padding: clamp(32px, 5vw, 72px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.band-body > * { max-width: 52ch; }
.band--flip .band-media { order: 2; }
.band--sand { background: var(--sand); }
@media (max-width: 820px) {
  .band, .band--flip { grid-template-columns: 1fr; }
  .band--flip .band-media { order: 0; }
  .band-media img { min-height: 0; aspect-ratio: 16 / 10; }
}

/* Activity cards */
.acts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 20px; }
.act { text-decoration: none; color: inherit; display: block; }
.act img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); margin-bottom: 10px; }
.act h3 { font-size: 1.05rem; margin: 0 0 3px; transition: color var(--fast) ease; }
.act p { font-size: 14px; color: var(--muted); margin: 0; }
.act:hover h3 { color: var(--orange-d); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .acts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .acts { grid-template-columns: 1fr; } }

/* Rule cards (About) */
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.rule { padding-top: 18px; border-top: 3px solid var(--orange); }
.rule h3 { margin-bottom: .4em; }
.rule p, .rule li { color: var(--ink-2); }
.rule ul { padding-left: 1.2em; }
@media (max-width: 720px) { .rules { grid-template-columns: 1fr; } }

/* Checklist */
.list { list-style: none; padding: 0; margin: 0 0 20px; }
.list li { padding: 9px 0 9px 22px; border-bottom: 1px solid var(--line-2); position: relative; }
.list li::before { content: ""; position: absolute; left: 0; top: 19px; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.list li:last-child { border-bottom: 0; }

/* Callout */
.callout { background: var(--sand); border-left: 4px solid var(--orange); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; color: var(--ink); }
.notice { background: var(--sand); border: 1px solid var(--line); padding: 16px 20px; border-radius: var(--radius); font-size: 15px; }
.notice strong { color: var(--ink); }

/* Video */
.film { position: relative; aspect-ratio: 16 / 9; width: 100%; overflow: hidden; border-radius: var(--radius); background: #000; }
.film picture, .film img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 600ms ease; }
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.film.is-playing picture { opacity: 0; pointer-events: none; }
.film-play { position: absolute; inset: 0; z-index: 2; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 12px; background: rgba(0,0,0,.18); border: 0; padding: 0; cursor: pointer; width: 100%; }
.film.needs-click:not(.is-playing) .film-play { display: flex; }
.film-play .ring { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.3); transition: background-color var(--fast) ease, transform 160ms var(--ease-out); }
.film-play .ring svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.film-play .label { font: 600 14px "Poppins", sans-serif; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.film-play:hover .ring { background: var(--orange-d); }
.film-play:active .ring { transform: scale(.94); }
.film-ui { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 14px 16px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%); }
.film-ui .credit { font-size: 13px; color: rgba(255,255,255,.85); text-shadow: 0 1px 3px rgba(0,0,0,.5); margin: 0; }
.film-ui .credit a { color: #fff; }
.film-btns { display: flex; gap: 8px; flex-shrink: 0; }
.film-btn { display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 12px; border: 0; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); font: 600 13px "Poppins", sans-serif; cursor: pointer; transition: background-color var(--fast) ease, transform 160ms var(--ease-out); }
.film-btn svg { width: 16px; height: 16px; fill: currentColor; }
.film-btn:hover { background: #fff; }
.film-btn:active { transform: scale(.96); }
.film-sound .on, .film.is-muted .film-sound .off { display: none; }
.film.is-muted .film-sound .on { display: inline; }
.film-sound .on-icon, .film.is-muted .film-sound .off-icon { display: none; }
.film.is-muted .film-sound .on-icon { display: inline; }
.film.needs-click:not(.is-playing) .film-ui { display: none; }
/* A hairline at the top while the player is still fetching, so a slow
   connection shows something happening behind the still. */
.film.is-loading:not(.is-playing)::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4; background: linear-gradient(90deg, transparent, var(--orange), transparent); background-size: 40% 100%; background-repeat: no-repeat; animation: film-load 1.4s linear infinite; }
@keyframes film-load { from { background-position: -40% 0; } to { background-position: 140% 0; } }

/* Full screen: fill the display, drop the still and the rounded corners. */
.film:fullscreen { aspect-ratio: auto; width: 100%; height: 100%; border-radius: 0; }
.film:fullscreen picture, .film:fullscreen img { opacity: 0; }
.film:fullscreen .film-ui { padding: 22px 26px; }
.film-full .off, .film.is-full .film-full .on { display: none; }
.film.is-full .film-full .off { display: inline; }

/* The film given the full width of its section. */
.film-block { margin-top: clamp(20px, 3vw, 32px); }
.film-intro { max-width: 62ch; }

@media (max-width: 600px) { .film-ui { padding: 10px 12px; } .film-ui .credit { display: none; } }
@media (prefers-reduced-motion: reduce) { .film.is-loading::after { animation: none; } }

/* Rates table */
.ptable { width: 100%; border-collapse: collapse; margin: 0 0 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ptable th, .ptable td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable thead th { font: 600 13.5px "Poppins", sans-serif; color: var(--muted); background: var(--sand); }
.ptable .acc .nm { font: 600 1.02rem "Poppins", sans-serif; color: var(--ink); display: block; }
.ptable .acc .meta { font-size: 13.5px; color: var(--muted); line-height: 1.5; display: block; margin-top: 2px; }
.ptable .price { font: 600 1.05rem "Poppins", sans-serif; color: var(--ink); white-space: nowrap; }
.ptable .sub { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; }
.ptable .free { color: var(--ok); font-weight: 600; }
.rates-mini { width: 100%; border-collapse: collapse; }
.rates-mini td { padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.rates-mini td:last-child { text-align: right; font: 600 1rem "Poppins", sans-serif; color: var(--ink); white-space: nowrap; }
.rates-mini small { display: block; font-size: 13px; color: var(--muted); }
@media (max-width: 720px) {
  .ptable, .ptable thead, .ptable tbody, .ptable tr, .ptable th, .ptable td { display: block; }
  .ptable { border: 0; background: transparent; }
  .ptable thead { display: none; }
  .ptable tr { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; padding: 6px 14px; background: var(--white); }
  .ptable td { padding: 10px 0; }
  .ptable td:last-child { border-bottom: 0; }
  .ptable td::before { content: attr(data-l); display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 2px; }
  .ptable td:first-child::before { display: none; }
}

/* FAQ (native details) */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 40px 16px 0; font: 600 1.05rem "Poppins", sans-serif; color: var(--ink); position: relative; transition: color var(--fast) ease; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 1.5rem; font-weight: 400; color: var(--orange); }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--orange-d); }
.faq .faq-a { padding: 0 0 18px; max-width: 68ch; color: var(--ink-2); transition: opacity 180ms var(--ease-out); }
@starting-style { .faq details[open] .faq-a { opacity: 0; } }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.contact-list li:first-child { padding-top: 0; }
.contact-list .k { font-size: 13.5px; color: var(--muted); }
.contact-list .v { font: 600 1.15rem "Poppins", sans-serif; color: var(--ink); }
.contact-list .v a { color: var(--ink); text-decoration: none; transition: color var(--fast) ease; }
.contact-list .v a:hover { color: var(--orange-d); text-decoration: underline; }

/* Forms */
.form { display: grid; gap: 16px; }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row-2 { grid-template-columns: 1fr; } }
.form label { display: block; font: 600 14px "Poppins", sans-serif; color: var(--ink); margin-bottom: 6px; }
.form label small { font-weight: 400; color: var(--muted); font-family: "Open Sans", sans-serif; font-size: 13px; }
.form input, .form textarea, .form select { width: 100%; padding: 12px 14px; font-family: inherit; font-size: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); transition: border-color var(--fast) ease, box-shadow var(--fast) ease; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,0,.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231e1c19' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form .note { font-size: 13.5px; color: var(--muted); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* Map */
.map-embed { width: 100%; aspect-ratio: 16 / 8; min-height: 300px; max-height: 480px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Closing CTA */
.cta { background: var(--green); color: var(--bone); padding: clamp(40px, 6vw, 72px) 0; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta h2 { color: #fff; margin: 0 0 6px; }
.cta p { margin: 0; color: rgba(255,255,255,.8); }
.cta .btn-primary { flex-shrink: 0; }

/* Footer */
.site-footer { background: var(--green-d); color: rgba(255,255,255,.78); padding: 56px 0 28px; font-size: 14.5px; }
.site-footer .ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--fast) ease; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .ftr-links a { display: block; padding: 4px 0; }
.site-footer .ftr-logo { height: 56px; width: auto; margin-bottom: 14px; }
.site-footer p { margin-bottom: .8em; }
.site-footer .legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; color: rgba(255,255,255,.55); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ftr-admin { opacity: .6; }
@media (max-width: 860px) { .site-footer .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .ftr-grid { grid-template-columns: 1fr; gap: 28px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-property: color, background-color, border-color, box-shadow, opacity !important; }
  .btn:active, .nav-cta:active, .nav-toggle:active, .stp-b:active, .film:active .film-play .ring { transform: none; }
}

/* ===== Booking widget ===== */
.bk { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.bk [hidden] { display: none !important; }
.form .bk-type, .form .bk-agree { font: inherit; color: inherit; margin-bottom: 0; }
.bk-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); background: var(--sand); }
.bk-tab { appearance: none; border: 0; background: transparent; cursor: pointer; text-align: left; padding: 18px 24px; display: flex; flex-direction: column; gap: 2px; border-bottom: 3px solid transparent; font-family: inherit; transition: background-color var(--fast) ease, border-color var(--fast) ease; }
.bk-tab .k { font: 600 1.05rem "Poppins", sans-serif; color: var(--muted); transition: color var(--fast) ease; }
.bk-tab .d { font-size: 13.5px; color: var(--muted); }
.bk-tab:hover .k { color: var(--ink); }
.bk-tab.is-active { background: var(--white); border-bottom-color: var(--orange); }
.bk-tab.is-active .k { color: var(--ink); }
.bk-closed { margin: 24px; }
.bk-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; }
.bk-form { padding: clamp(20px, 3vw, 36px); gap: 0; border-right: 1px solid var(--line-2); }
.bk-step { border: 0; padding: 0; margin: 0 0 36px; min-width: 0; }
.bk-step:last-child { margin-bottom: 0; }
.bk-step-h { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bk-step-h h3 { margin: 0; font-size: 1.2rem; }
.bk-step-h h3 small { font-size: .85rem; font-weight: 400; color: var(--muted); }
.bk-num { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font: 600 13px/28px "Poppins", sans-serif; text-align: center; flex-shrink: 0; }
.bk-step-p { font-size: 15px; margin: -6px 0 16px; }
.bk-form .row-2 + .row-2 { margin-top: 16px; }
.bk-form .bk-field + .bk-field { margin-top: 16px; }
.bk-form .row-2 .bk-field + .bk-field { margin-top: 0; }
.bk-hint { display: flex; flex-direction: column; justify-content: center; gap: 2px; font-size: 13.5px; color: var(--muted); line-height: 1.5; padding-top: 4px; }
.bk-hint-t { font: 600 13.5px "Poppins", sans-serif; color: var(--ink); }
.bk-err { display: block; font-size: 13.5px; color: var(--err); margin-top: 6px; line-height: 1.5; }
.bk-err[hidden] { display: none; }
.bk-err:not([hidden]) { transition: opacity 160ms var(--ease-out); }
@starting-style { .bk-err:not([hidden]) { opacity: 0; } }
.bk-err-form { background: rgba(179,38,30,.07); border-left: 3px solid var(--err); padding: 10px 14px; margin: 0 0 16px; }
.bk-field.is-err input, .bk-field.is-err select, .bk-field.is-err textarea { border-color: var(--err); }

.bk-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-type { display: block; cursor: pointer; position: relative; }
.bk-type input { position: absolute; opacity: 0; pointer-events: none; }
.bk-type-body { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: border-color var(--fast) ease, box-shadow var(--fast) ease, opacity var(--fast) ease; }
@media (hover: hover) and (pointer: fine) { .bk-type:hover .bk-type-body { border-color: var(--ink); } }
.bk-type.is-on .bk-type-body { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange) inset; }
.bk-type.is-off .bk-type-body { opacity: .55; }
.bk-type-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.bk-type .nm { font: 600 1rem "Poppins", sans-serif; color: var(--ink); line-height: 1.25; }
.bk-type .pr { font: 600 1rem "Poppins", sans-serif; color: var(--ink); white-space: nowrap; text-align: right; line-height: 1.1; }
.bk-type .pr small { display: block; font: 400 11.5px "Open Sans", sans-serif; color: var(--muted); margin-top: 2px; }
.bk-type .meta { font-size: 13px; color: var(--muted); line-height: 1.5; }
.bk-avail { font-size: 12.5px; font-weight: 600; min-height: 1.4em; transition: color var(--fast) ease; }
.bk-avail.is-ok { color: var(--ok); }
.bk-avail.is-no { color: var(--err); }
.bk-avail.is-wait { color: var(--muted); font-weight: 400; }

.bk-counts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bk-counts .bk-field + .bk-field { margin-top: 0; }
.stp { display: grid; grid-template-columns: 40px 1fr 40px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.stp-b { appearance: none; border: 0; background: var(--sand); color: var(--ink); font-size: 18px; cursor: pointer; font-family: "Poppins", sans-serif; transition: background-color var(--fast) ease, color var(--fast) ease, transform 120ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .stp-b:hover { background: var(--orange); color: #fff; } }
.stp-b:active { background: var(--orange-d); color: #fff; transform: scale(.94); }
.form .stp input { border: 0; border-radius: 0; text-align: center; padding: 11px 4px; font: 600 16px "Poppins", sans-serif; -moz-appearance: textfield; }
.form .stp input:focus { box-shadow: none; }
.stp input::-webkit-outer-spin-button, .stp input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.bk-acts { display: grid; gap: 12px; }
.bk-act { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; background: var(--white); }
.bk-act-h { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; margin-bottom: 12px; }
.bk-act-h .nm { font: 600 1rem "Poppins", sans-serif; color: var(--ink); }
.bk-act-h .pr { font-size: 13px; color: var(--ink); font-weight: 600; white-space: nowrap; align-self: center; }
.bk-act-h .meta { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }
.bk-act-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bk-act-row .bk-field + .bk-field { margin-top: 0; }

.bk-hp { position: absolute; left: -9999px; top: -9999px; }
.bk-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 20px 0 16px; cursor: pointer; }
.form .bk-agree input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; padding: 0; }
.bk-submit { transition: opacity var(--fast) ease, background-color var(--fast) ease, color var(--fast) ease, border-color var(--fast) ease, transform 160ms var(--ease-out); }
.bk-submit.is-busy { opacity: .6; pointer-events: none; }
.bk-form .note { margin: 14px 0 0; }

.bk-side { padding: clamp(20px, 3vw, 28px); background: var(--sand); display: flex; flex-direction: column; gap: 16px; }
.bk-quote-card { position: sticky; top: 96px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.bk-quote-h { font: 600 15px "Poppins", sans-serif; color: var(--ink); margin-bottom: 10px; }
.bk-quote-empty { font-size: 14px; color: var(--muted); margin: 0; }
.bk-q-group { padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.bk-q-gh { font: 600 13.5px "Poppins", sans-serif; color: var(--ink); margin-bottom: 4px; }
.bk-q-line { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 3px 0; color: var(--ink-2); }
.bk-q-line small { display: block; font-size: 12px; color: var(--muted); }
.bk-q-line .a { font: 600 13.5px "Poppins", sans-serif; white-space: nowrap; color: var(--ink); }
.bk-q-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 2px; font-size: 14px; color: var(--muted); }
.bk-q-total strong { font: 700 1.5rem "Poppins", sans-serif; color: var(--ink); }
.bk-q-note { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.bk-side-note { font-size: 13.5px; background: var(--white); }

.bk-done { padding: clamp(28px, 4vw, 48px); max-width: 720px; transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out); }
@starting-style { .bk-done:not([hidden]) { opacity: 0; transform: translateY(10px); } }
.bk-done-mark { width: 44px; height: 44px; border-radius: 50%; background: var(--ok); color: #fff; font: 700 22px/44px "Poppins", sans-serif; text-align: center; margin-bottom: 14px; }
.bk-done h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.bk-ref { font-family: "Poppins", sans-serif; color: var(--orange-d); }
.bk-done-dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 20px; margin: 24px 0; font-size: 15px; }
.bk-done-dl dt { font: 600 13.5px "Poppins", sans-serif; color: var(--muted); padding-top: 1px; }
.bk-done-dl dd { margin: 0; color: var(--ink); }
.bk-done-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1000px) { .bk-grid { grid-template-columns: 1fr; } .bk-form { border-right: 0; border-bottom: 1px solid var(--line-2); } .bk-quote-card { position: static; } }
@media (max-width: 720px) {
  .bk-types, .bk-act-row { grid-template-columns: 1fr; }
  .bk-counts { grid-template-columns: 1fr 1fr; }
  .bk-tab { padding: 14px 16px; }
  .bk-done-dl { grid-template-columns: 1fr; gap: 0; }
  .bk-done-dl dd { margin-bottom: 10px; }
}

/* ===== Manage booking ===== */
.mg { max-width: 760px; }
.mg-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(20px, 4vw, 36px); margin-top: 28px; }
.mg-status { display: inline-block; font: 600 13px "Poppins", sans-serif; padding: 5px 12px; border-radius: 999px; background: var(--sand-2); color: var(--ink); }
.mg-status.s-pending { background: #fbeccf; color: #8a5a00; }
.mg-status.s-confirmed, .mg-status.s-checked_in { background: #dcebd8; color: var(--ok); }
.mg-status.s-cancelled, .mg-status.s-declined { background: rgba(179,38,30,.1); color: var(--err); }
.mg-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.mg-head h3 { margin: 4px 0 0; }
.mg-cancel { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-2); }
