:root {
  --ink: #17312b;
  --muted: #667871;
  --green: #145c4b;
  --green-dark: #102c26;
  --lime: #dbea72;
  --cream: #f7f3e9;
  --paper: #fffefa;
  --line: #dce4df;
  --warn: #fff3cc;
  --danger: #8d352f;
  --shadow: 0 18px 50px rgba(16, 44, 38, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.025em; }
h2 { margin-bottom: .6rem; font-size: clamp(1.65rem, 4vw, 2.35rem); }
h3 { margin-bottom: .4rem; font-size: 1.08rem; }
ul, ol { padding-left: 1.25rem; }
li + li { margin-top: .45rem; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  padding: .7rem 1rem; border-radius: .5rem; background: white;
}
.skip-link:focus { top: 1rem; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  color: white; background: rgba(16, 44, 38, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  width: min(1120px, calc(100% - 2rem)); min-height: 68px; margin: auto;
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: white; text-decoration: none; font-weight: 800; letter-spacing: .03em; white-space: nowrap; }
.brand img { width: 125px; height: auto; display: block; }
.brand-context { padding-left: .6rem; color: #dce7e2; border-left: 1px solid rgba(255,255,255,.25); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.brand span { color: var(--lime); }
nav { margin-left: auto; display: flex; gap: .25rem; overflow-x: auto; scrollbar-width: none; }
nav a { padding: .45rem .7rem; border-radius: 999px; text-decoration: none; white-space: nowrap; font-size: .9rem; }
nav a:hover, nav a:focus-visible { background: rgba(255,255,255,.12); outline: none; }
.topbar nav .home-link { padding: .42rem .7rem; color: var(--green-dark); background: var(--lime); font-weight: 800; }
.topbar nav .home-link:hover, .topbar nav .home-link:focus-visible { background: #ebf59d; }

.hero { position: relative; overflow: hidden; color: white; background: var(--green-dark); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 430px; height: 430px; right: -150px; top: -210px; border: 1px solid rgba(219,234,114,.35); }
.hero::after { width: 220px; height: 220px; right: 6%; bottom: -125px; background: var(--lime); opacity: .92; }
.hero-inner {
  position: relative; z-index: 1; width: min(1120px, calc(100% - 2rem));
  margin: auto; padding: clamp(4rem, 10vw, 7rem) 0 5rem;
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 3rem; align-items: end;
}
.eyebrow { color: var(--lime); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 850px; margin: .45rem 0 1rem; font-size: clamp(2.65rem, 7vw, 5.8rem); }
.lead { max-width: 720px; color: #d7e2de; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.edition { margin-top: 1.5rem; padding: .55rem .8rem; display: inline-flex; align-items: center; gap: .55rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .88rem; }
.edition::before { content: ""; width: .6rem; height: .6rem; border-radius: 50%; background: var(--lime); }
.hero-note { padding: 1.2rem; border-left: 2px solid var(--lime); background: rgba(255,255,255,.07); }
.hero-note strong { display: block; color: var(--lime); font-size: 2.2rem; }

main { width: min(1120px, calc(100% - 2rem)); margin: auto; }
.quick-grid { position: relative; z-index: 3; margin: -2rem 0 4rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.quick-card { padding: 1.15rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
.quick-card .label { color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.quick-card strong { display: block; margin-top: .25rem; font-size: 1.18rem; }

.intro { max-width: 850px; margin-bottom: 4rem; }
.intro p { color: var(--muted); font-size: 1.08rem; }
.notice { margin-top: 1.4rem; padding: 1rem 1.1rem; color: #5d4a0c; background: var(--warn); border-left: 4px solid #d5ae26; border-radius: .8rem; }

.rule-section { padding: 3rem 0; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 2.2rem; border-top: 1px solid #ccd8d2; }
.section-kicker { color: var(--green); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.section-side p { color: var(--muted); font-size: .9rem; }
.cards { display: grid; gap: 1rem; }
.cards.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card { padding: 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; }
.card.accent { color: white; background: var(--green); border-color: var(--green); }
.card.accent p, .card.accent li { color: #e1ebe7; }
.pill { margin-bottom: .65rem; padding: .22rem .55rem; display: inline-block; color: var(--green); background: #e5eee9; border-radius: 999px; font-size: .74rem; font-weight: 800; }
.accent .pill { color: var(--green-dark); background: var(--lime); }
.card p:last-child, .card ul:last-child, .card ol:last-child { margin-bottom: 0; }
.card ul, .card ol { margin-bottom: 0; }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: booking; }
.steps li { position: relative; min-height: 3.2rem; padding: .2rem 0 1rem 3.4rem; counter-increment: booking; }
.steps li::before { content: counter(booking); position: absolute; left: 0; top: 0; width: 2.3rem; height: 2.3rem; display: grid; place-items: center; color: var(--green-dark); background: var(--lime); border-radius: 50%; font-weight: 900; }
.hours { margin: 1rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: .45rem 1rem; }
.hours dt { font-weight: 750; }
.hours dd { margin: 0; color: var(--muted); }

table { width: 100%; overflow: hidden; border-collapse: collapse; background: var(--paper); border-radius: 1rem; box-shadow: var(--shadow); }
th, td { padding: 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: white; background: var(--green-dark); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
td:first-child { width: 115px; color: var(--green); font-weight: 850; }

.closing { margin: 3rem 0 5rem; padding: clamp(1.5rem, 5vw, 3.2rem); color: white; background: var(--green-dark); border-radius: 1.4rem; }
.closing p { max-width: 760px; color: #d5e1dd; }
.closing p:last-child { margin-bottom: 0; color: var(--lime); font-weight: 750; }
footer { padding: 1.5rem; color: var(--muted); text-align: center; font-size: .84rem; }
.back-top { margin-top: .5rem; display: inline-block; color: var(--green); font-weight: 750; }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-note { max-width: 320px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .rule-section { grid-template-columns: 1fr; gap: 1rem; }
  .section-side p { max-width: 600px; }
  .cards.three { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .topbar-inner { width: 100%; padding: .65rem 1rem; display: block; }
  .brand { margin-bottom: .35rem; }
  .brand img { width: 112px; }
  .brand-context { font-size: .56rem; }
  nav { margin: 0; }
  nav a:first-child { padding-left: 0; }
  .hero-inner { padding-top: 3.6rem; }
  .quick-grid, .cards.two { grid-template-columns: 1fr; }
  .quick-grid { margin-top: -1.2rem; }
  .hours { grid-template-columns: 1fr; gap: .1rem; }
  .hours dd { margin-bottom: .6rem; }
  table { font-size: .9rem; }
  th, td { padding: .75rem; }
}

@media print {
  .topbar, .back-top { display: none; }
  body { background: white; font-size: 11pt; }
  .hero { color: var(--ink); background: white; }
  .hero-inner { padding: 1rem 0 2rem; }
  .lead, .hero-note, .closing p { color: var(--ink); }
  .quick-grid { margin: 0 0 2rem; }
  .quick-card, table { box-shadow: none; }
  .rule-section { break-inside: avoid; }
  .closing { color: var(--ink); background: white; border: 1px solid var(--line); }
}
