:root {
  --ink: #1f221e;
  --muted: #69736b;
  --brand: #103f3b;
  --brand-2: #9e2f24;
  --boat-red: #b83228;
  --canal: #0d5a59;
  --canal-dark: #073432;
  --cream: #f4ead8;
  --parchment: #fff8e8;
  --gold: #dca84d;
  --brass: #c58a2d;
  --timber: #6f452d;
  --line: rgba(31, 34, 30, .16);
  --ok: #1f7a4a;
  --bad: #9c3026;
  --shadow: 0 22px 70px rgba(14, 39, 37, .18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--cream); color: var(--ink); }
body {
  font-size: 16px;
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 8%, rgba(220, 168, 77, .2), transparent 28rem),
    linear-gradient(180deg, #f7eddc 0%, #efe1ca 52%, #e8d5b9 100%);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

.site-header, .admin-top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(244, 234, 216, .9);
  border-bottom: 1px solid rgba(16, 63, 59, .16);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-weight: 900; text-decoration: none; color: var(--brand); letter-spacing: .02em; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(16,63,59,.18)); }
.site-nav { display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 8px; text-decoration: none; white-space: nowrap; font-weight: 800; color: var(--canal-dark); }
.site-nav a:hover { background: rgba(16, 63, 59, .1); }
.nav-cta { background: var(--boat-red); color: #fff !important; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

main { width: min(1180px, calc(100vw - 32px)); margin: 0 auto; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); line-height: .88; margin: 14px 0 18px; color: var(--parchment); text-shadow: 0 5px 18px rgba(0,0,0,.34); }
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.02; margin: 0 0 14px; color: var(--brand); }
h3 { margin: 0 0 8px; color: var(--brand); }
.lead { font-size: clamp(1.25rem, 2.4vw, 1.8rem); font-weight: 900; margin: 0 0 8px; color: var(--canal-dark); }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--boat-red); font-size: .78rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 34px; height: 3px; background: var(--gold); border-radius: 999px; }

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  padding: 96px 0 34px;
  isolation: isolate;
}
.narrowboat-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -3;
  background: url('/assets/img/narrowboat-hero.webp') center / cover no-repeat;
}
.narrowboat-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 34, 32, .86) 0%, rgba(5, 34, 32, .66) 34%, rgba(5,34,32,.18) 68%, rgba(5,34,32,.08) 100%),
    linear-gradient(180deg, rgba(5,34,32,.22), rgba(244,234,216,.95) 96%);
}
.hero-copy { max-width: 720px; padding-bottom: 48px; }
.hero-copy p { max-width: 620px; color: #fff8e8; font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 650; text-shadow: 0 3px 14px rgba(0,0,0,.35); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-card {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: min(330px, 36vw);
  padding: 18px;
  border: 1px solid rgba(255, 248, 232, .55);
  border-radius: 8px;
  background: rgba(255, 248, 232, .9);
  box-shadow: var(--shadow);
}
.hero-card span { color: var(--boat-red); font-weight: 950; text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; }
.hero-card strong { display: block; color: var(--brand); font-size: 1.12rem; line-height: 1.2; margin: 6px 0; }
.hero-card small { color: var(--muted); font-weight: 750; }

.button, button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--parchment);
  color: var(--brand);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 63, 59, .1);
}
.button.primary, button.primary { background: var(--boat-red); border-color: var(--boat-red); color: #fff; }
.button.danger, button.danger { background: var(--bad); border-color: var(--bad); color: #fff; }
.button.ghost { background: rgba(255, 248, 232, .16); color: var(--parchment); border-color: rgba(255, 248, 232, .65); backdrop-filter: blur(8px); }
.promo-banner {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--parchment);
  background: linear-gradient(135deg, var(--boat-red), #7c261f);
  box-shadow: var(--shadow);
}
.promo-banner strong, .promo-banner span { display: block; }
.promo-banner span { margin-top: 5px; color: rgba(255,248,232,.82); font-weight: 750; }
.button-row, .action-stack { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.status-badge { display: inline-flex; min-height: 34px; align-items: center; border-radius: 999px; padding: 5px 13px; font-weight: 950; color: #fff; background: var(--bad); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.status-badge.open { background: var(--ok); }

.location-panel, .content-band, .page-heading, .form-card, .table-card {
  margin: 28px 0;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 248, 232, .92);
  border: 1px solid rgba(16, 63, 59, .18);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 63, 59, .08);
}
.mooring-board {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,248,232,.96), rgba(255,248,232,.9)),
    repeating-linear-gradient(135deg, rgba(111,69,45,.12) 0 10px, transparent 10px 20px);
}
.mooring-board::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: repeating-linear-gradient(180deg, var(--boat-red) 0 28px, var(--gold) 28px 40px, var(--canal) 40px 68px);
}
.mooring-main { padding-left: 8px; }
.detail-grid { display: grid; gap: 12px; margin: 20px 0; }
.detail-grid div { padding: 13px 0 0; border-top: 1px solid rgba(16,63,59,.16); }
dt { color: var(--muted); font-weight: 900; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
dd { margin: 2px 0 0; font-weight: 850; }
.note, .small { color: var(--muted); }
.mooring-actions { align-content: start; }
.map-section, .directions-section { display: grid; gap: 18px; }
.mooring-map {
  width: 100%;
  min-height: 380px;
  border: 1px solid rgba(16,63,59,.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--parchment);
}
.map-fallback {
  min-height: 260px;
  display: grid;
  place-content: center;
  padding: 24px;
  border: 1px dashed rgba(16,63,59,.3);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13,90,89,.08), rgba(220,168,77,.14)),
    var(--parchment);
}
.direction-details { margin-top: 6px; }
.directions-groups { display: grid; gap: 12px; }
.direction-provider-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(16,63,59,.14);
  border-radius: 8px;
  background: rgba(255,253,246,.82);
}
.direction-provider-row > strong {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compass-card {
  width: 100%;
  min-height: 130px;
  padding: 18px;
  border-radius: 8px;
  color: var(--parchment);
  background:
    radial-gradient(circle at 80% 20%, rgba(220,168,77,.55), transparent 38%),
    linear-gradient(145deg, var(--canal), var(--canal-dark));
  box-shadow: var(--shadow);
}
.compass-card span { display: block; color: #f3cc79; font-weight: 950; text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; }
.compass-card strong { display: block; margin-top: 8px; font-size: 1.2rem; }

.card-grid, .menu-grid, .quick-grid, .platform-grid { display: grid; gap: 16px; }
.seo-grid { display: grid; gap: 16px; margin: 28px 0; }
.seo-grid article { padding: 22px; border-radius: 8px; background: rgba(255,248,232,.9); border: 1px solid rgba(16,63,59,.16); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.category-tabs a { min-height: 44px; display: inline-flex; align-items: center; padding: 9px 14px; border-radius: 999px; background: var(--parchment); color: var(--brand); font-weight: 900; text-decoration: none; border: 1px solid rgba(16,63,59,.18); }
.category-tabs a.hot { background: #ffe7dd; color: #9e2f24; border-color: rgba(158,47,36,.28); }
.category-tabs a.cold { background: #e2f0ff; color: #15558f; border-color: rgba(21,85,143,.28); }
.seasonal-menu.hot { border-color: rgba(158,47,36,.28); box-shadow: inset 0 5px 0 #d94d32, 0 14px 38px rgba(158,47,36,.08); }
.seasonal-menu.cold { border-color: rgba(21,85,143,.28); box-shadow: inset 0 5px 0 #2f7ec2, 0 14px 38px rgba(21,85,143,.08); }
.season-menu-stack { display: grid; gap: 18px; }
.admin-menu-list { display: grid; gap: 12px; }
.admin-menu-item { border: 1px solid rgba(16,63,59,.16); border-radius: 8px; background: rgba(255,253,246,.94); }
.admin-menu-item summary { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; cursor: pointer; font-weight: 900; color: var(--brand); }
.menu-order-panel { margin-top: 16px; }
.menu-order-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.drag-handle {
  min-width: 56px;
  padding: 5px 8px;
  border: 1px solid rgba(16,63,59,.2);
  border-radius: 8px;
  background: rgba(13,90,89,.08);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
  cursor: grab;
}
.admin-menu-item.dragging {
  opacity: .58;
  border-style: dashed;
}
.compact-card { margin: 0; border: 0; box-shadow: none; background: transparent; }
.season-toggle-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.toggle-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(16,63,59,.18);
  background: #fffdf6;
}
.toggle-pill.hot { color: #9e2f24; background: #ffe7dd; border-color: rgba(158,47,36,.28); }
.toggle-pill.cold { color: #15558f; background: #e2f0ff; border-color: rgba(21,85,143,.28); }
.toggle-pill.neutral { color: var(--brand); }
.toggle-pill input { width: 20px; min-height: 20px; }
.faq-section details { padding: 12px 0; border-top: 1px solid rgba(16,63,59,.16); }
.faq-section summary { cursor: pointer; min-height: 44px; font-weight: 900; color: var(--brand); }
.faq-editor { display: grid; gap: 16px; }
.faq-edit-row {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16,63,59,.14);
  border-radius: 8px;
  background: rgba(244,234,216,.34);
}
.warning-inline { padding: 12px 14px; border-radius: 8px; background: #fff2d4; border: 1px solid #e5c36b; color: #553817; font-weight: 800; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cookie-banner {
  position: fixed;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(16,63,59,.2);
  border-radius: 8px;
  background: rgba(255, 248, 232, .98);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; color: var(--brand); }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); }
.cookie-banner .button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  flex: 0 0 auto;
}
.cookie-banner .button-row .button {
  width: 100%;
  justify-content: center;
}
.cookie-banner [data-cookie-choice="accept"] {
  border-color: #1f7a48;
  background: #1f7a48;
  color: #fff;
}
.cookie-banner [data-cookie-choice="deny"] {
  border-color: #b83a2f;
  background: #b83a2f;
  color: #fff;
}
.cookie-banner [data-cookie-choice="accept"]:hover,
.cookie-banner [data-cookie-choice="deny"]:hover {
  filter: brightness(.95);
}
.card, .menu-card, .quick-card, .history-item {
  padding: 18px;
  border: 1px solid rgba(16, 63, 59, .16);
  border-radius: 8px;
  background: rgba(255, 253, 246, .96);
}
.menu-feature { position: relative; }
.menu-feature::after {
  content: "";
  display: block;
  height: 16px;
  margin-top: 26px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--boat-red) 0 42px, var(--gold) 42px 58px, var(--canal) 58px 100px);
}
.menu-tile, .menu-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,253,246,.98), rgba(250,239,218,.98));
  box-shadow: inset 0 5px 0 var(--gold), 0 12px 28px rgba(16,63,59,.08);
}
.menu-tile strong, .menu-card strong { color: var(--boat-red); font-size: 1.15rem; }
.menu-card { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.canal-story {
  margin: 28px 0;
  display: grid;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 8px;
  color: var(--parchment);
  background:
    radial-gradient(circle at 92% 18%, rgba(220,168,77,.28), transparent 24rem),
    linear-gradient(135deg, var(--canal-dark), var(--canal));
  box-shadow: var(--shadow);
}
.canal-story h2 { color: var(--parchment); }
.canal-story p { color: rgba(255,248,232,.88); max-width: 720px; }
.lock-motif { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; min-height: 180px; }
.lock-motif span {
  border-radius: 8px;
  background: linear-gradient(180deg, #8b5a35, #51311f);
  box-shadow: inset 12px 0 rgba(255,255,255,.1), inset -12px 0 rgba(0,0,0,.12);
  transform: skewY(-8deg);
}
.lock-motif span:nth-child(2) { transform: translateY(20px) skewY(8deg); background: linear-gradient(180deg, #9d6840, #5f3925); }
.lock-motif span:nth-child(3) { transform: translateY(42px) skewY(-8deg); }
.canal-heading, .canal-note {
  background:
    linear-gradient(90deg, rgba(255,248,232,.96), rgba(255,248,232,.9)),
    linear-gradient(135deg, rgba(13,90,89,.18), transparent 60%);
}

.site-footer {
  margin-top: 44px;
  padding: 30px 16px 96px;
  color: var(--parchment);
  background:
    linear-gradient(180deg, var(--canal), var(--canal-dark));
}
.site-footer > * { width: min(1180px, calc(100vw - 32px)); margin-left: auto; margin-right: auto; }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.social-links a, .footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  color: #f3cc79;
}
.footer-link {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.admin-body { background: #f4ead8; }
.admin-shell {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.admin-sidebar {
  position: sticky;
  top: 78px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(16,63,59,.16);
  border-radius: 8px;
  background: rgba(255, 248, 232, .92);
  box-shadow: 0 14px 36px rgba(16,63,59,.12);
}
.admin-nav, .admin-nav-group { display: grid; gap: 8px; }
.admin-nav-group {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(16,63,59,.14);
}
.admin-nav-group:last-child { border-bottom: 0; padding-bottom: 0; }
.admin-nav-group span {
  padding: 4px 10px;
  color: var(--boat-red);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.admin-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--canal-dark);
  font-weight: 900;
  text-decoration: none;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: var(--canal);
  color: var(--parchment);
  box-shadow: 0 10px 24px rgba(13,90,89,.18);
}
.admin-main { min-width: 0; padding-bottom: 40px; }
.admin-shell .admin-main { width: auto; margin: 0; }
.admin-main-solo { width: min(1180px, calc(100vw - 32px)); margin: 0 auto; }
.admin-hero { padding: 24px 0 6px; }
.admin-main h1,
.admin-hero h1,
.page-heading h1 {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-shadow: none;
}
.notice, .warning { margin: 16px 0; padding: 12px 14px; border-radius: 8px; background: #e8f3ec; border: 1px solid #b7d9c3; font-weight: 700; }
.warning { background: #fff2d4; border-color: #e5c36b; }
.narrow { max-width: 460px; margin-inline: auto; }
form label { display: grid; gap: 6px; font-weight: 800; color: var(--brand); }
.field-help {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 100%;
  padding: 14px;
  border: 1px dashed rgba(16,63,59,.28);
  border-radius: 8px;
  background: rgba(13, 90, 89, .06);
}
.field-help strong { color: var(--brand); }
.field-help span { color: var(--muted); font-weight: 650; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16,63,59,.28);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fffdf6;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-card { display: grid; gap: 16px; }
.admin-fieldset {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16,63,59,.15);
  border-radius: 8px;
  background: rgba(255, 253, 246, .96);
  box-shadow: 0 14px 34px rgba(16,63,59,.1);
}
.admin-fieldset h2,
.admin-fieldset h3 {
  margin-bottom: 0;
}
.admin-fieldset p.small {
  margin: -4px 0 0;
}
.form-grid, .hours-list { display: grid; gap: 12px; }
.form-grid.compact { align-items: end; }
.hours-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
input[type="checkbox"] { width: 20px; min-height: 20px; }
label:has(input[type="checkbox"]) { display: flex; align-items: center; gap: 8px; min-height: 44px; }
.logo-preview { display: flex; align-items: center; gap: 12px; }
.logo-preview img { width: 96px; height: 96px; object-fit: contain; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.quick-card { color: var(--ink); text-decoration: none; min-height: 110px; display: flex; flex-direction: column; justify-content: center; }
.quick-card strong { color: var(--brand); font-size: 1.15rem; }
.history-item { margin: 12px 0; display: grid; gap: 10px; }
.history-item h3 { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.history-item h3 span, .over-limit { color: var(--bad); }
.inline-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-top: 8px; border-top: 1px solid var(--line); }

@media (max-width: 720px) {
  .site-header, .admin-top { align-items: stretch; flex-direction: column; padding-inline: 12px; }
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px;
    background: rgba(255, 248, 232, .97);
    border-top: 1px solid rgba(16, 63, 59, .16);
  }
  .site-nav a { flex: 1 0 auto; justify-content: center; font-size: .92rem; }
  .admin-shell {
    width: min(100vw - 24px, 1180px);
    display: block;
  }
  .admin-sidebar {
    position: sticky;
    top: 65px;
    z-index: 8;
    margin-top: 12px;
    padding: 10px;
    overflow-x: auto;
  }
  .admin-nav {
    display: flex;
    gap: 10px;
    min-width: max-content;
  }
  .admin-nav-group {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px 0 0;
    border-bottom: 0;
    border-right: 1px solid rgba(16,63,59,.14);
  }
  .admin-nav-group span { white-space: nowrap; }
  .admin-nav a { white-space: nowrap; font-size: .92rem; }
  main { width: min(100vw - 24px, 1180px); }
  .hero { min-height: 680px; padding-top: 120px; }
  .narrowboat-hero::before { background-position: 58% center; }
  .narrowboat-hero::after { background: linear-gradient(180deg, rgba(5,34,32,.72), rgba(5,34,32,.58) 44%, rgba(244,234,216,.98) 100%); }
  .hero-copy { padding-bottom: 170px; }
  .hero-card { left: 0; right: auto; bottom: 34px; width: min(100%, 360px); }
  .location-panel, .content-band, .page-heading, .form-card, .table-card, .canal-story { padding: 18px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 82px; flex-direction: column; align-items: stretch; }
}

@media (min-width: 680px) {
  .card-grid, .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-panel { grid-template-columns: minmax(0, 1fr) minmax(220px, 320px); align-items: start; }
  .canal-story { grid-template-columns: minmax(0, 1fr) 320px; }
  .seo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .card-grid, .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hours-row { grid-template-columns: 130px 90px 120px 120px 1fr; align-items: center; }
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
