/* Guide Point Central — Mediterranean light design */

:root {
  --bg: #eef2f4;
  --bg-soft: #f7f9fa;
  --surface: #ffffff;
  --ink: #142226;
  --ink-soft: #3d4f55;
  --muted: #6a7c82;
  --line: #d5dde0;
  --teal: #0a4d52;
  --teal-deep: #073a3e;
  --teal-soft: rgba(10, 77, 82, 0.08);
  --copper: #b86b45;
  --copper-soft: rgba(184, 107, 69, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --shadow: 0 12px 40px rgba(20, 34, 38, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: #cfd8dc;
  background-image:
    linear-gradient(180deg, #eef3f5 0%, rgba(238, 243, 245, 0.35) 180px, transparent 380px),
    radial-gradient(920px 520px at 6% -8%, rgba(10, 77, 82, 0.18), transparent 62%),
    radial-gradient(760px 440px at 100% 0%, rgba(184, 107, 69, 0.12), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 10px,
      rgba(20, 34, 38, 0.045) 10px,
      rgba(20, 34, 38, 0.045) 11px
    );
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--copper); }
button { font-family: inherit; }
strong { font-weight: 700; color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-band {
  background: rgba(255, 255, 255, 0.78);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 38rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 249, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  box-sizing: border-box;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.logo-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-name span { color: var(--teal); }
.logo-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav button:hover { background: var(--teal-soft); color: var(--teal); }
.nav button.active { background: var(--teal); color: #fff; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.header-cta:hover { color: var(--teal); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}
.mobile-menu nav button {
  text-align: left;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}
.mobile-menu nav button.active,
.mobile-menu nav button:hover {
  background: var(--teal-soft);
  color: var(--teal);
}
.mobile-meta {
  margin-top: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pages */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.28s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 58, 62, 0.25) 0%, rgba(7, 58, 62, 0.78) 72%, rgba(7, 58, 62, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 58, 62, 0.55) 0%, transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 16px 56px;
  color: #f4f7f8;
  box-sizing: border-box;
}
.hero-copy .kicker { color: #e8b08c; }
.hero-copy h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 16px;
}
.hero-copy p {
  max-width: 34rem;
  color: rgba(244, 247, 248, 0.88);
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
}
.btn-primary:hover {
  background: #a35c3a;
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn-outline {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

/* Contact strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-cell {
  background: var(--surface);
  padding: 22px 20px;
}
.contact-cell .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-cell .value {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.contact-cell a { color: var(--teal); font-weight: 600; }

/* Venue tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
}
.tab-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.venue-panel {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.venue-panel.active { display: grid; }
.venue-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.venue-body { padding: 28px; }
.venue-body h3 { margin-bottom: 8px; }
.venue-body p { color: var(--ink-soft); margin-bottom: 16px; }
.meta-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.meta-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.meta-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.legal-layout > *,
.split-cta > *,
.footer-grid > * {
  min-width: 0;
  max-width: 100%;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.mosaic img:nth-child(2),
.mosaic img:nth-child(4) { transform: translateY(18px); }

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 22px rgba(20, 34, 38, 0.05);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.event-card:hover {
  border-color: rgba(10, 77, 82, 0.35);
  box-shadow: var(--shadow);
}
.event-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.event-prize {
  background: var(--copper-soft);
  color: var(--copper);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: right;
  flex-shrink: 0;
}
.event-prize small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-prize strong { font-size: 1.05rem; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 0.88rem;
}
.event-grid dt { color: var(--muted); }
.event-grid dd { font-weight: 600; color: var(--ink); margin-top: 2px; }

/* Accordion */
.accordion { display: grid; gap: 10px; }
.acc-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.acc-head:hover { background: rgba(10, 77, 82, 0.04); }
.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.acc-item.open .acc-icon { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-item.open .acc-body { max-height: 320px; }
.acc-body p {
  padding: 0 18px 16px;
  color: var(--ink-soft);
}

/* Jobs */
.job {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 18px rgba(20, 34, 38, 0.04);
}
.job-head {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: block;
}
.job-head:hover { background: rgba(10, 77, 82, 0.04); }
.job-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.job-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.job-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.job.open .job-chevron { transform: rotate(180deg); }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.job-body {
  display: none;
}
.job.open .job-body { display: block; }
.job-inner {
  border-top: 1px solid var(--line);
  padding: 18px 20px 22px;
}
.job-inner p { color: var(--ink-soft); margin-bottom: 12px; }
.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.req-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin: 14px 0 8px;
}
.req-list { list-style: none; display: grid; gap: 8px; }
.req-list li {
  padding-left: 14px;
  position: relative;
  color: var(--ink-soft);
}
.req-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.apply-anchor {
  scroll-margin-top: 96px;
}

/* Forms */
.form-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-box h3 { margin-bottom: 6px; }
.form-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal); }
.field textarea { min-height: 110px; resize: vertical; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 8px 0 16px;
}
.form-success {
  text-align: center;
  padding: 36px 12px;
}
.form-success h3 { margin: 12px 0 8px; }
.form-success p { color: var(--muted); }

/* Page hero */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 249, 250, 0.55)),
    linear-gradient(120deg, rgba(10, 77, 82, 0.08), transparent 55%);
}
.page-hero p {
  margin-top: 12px;
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}
.page-hero .updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

#main-slot,
#header-slot,
#footer-slot,
.page,
.page main,
.section {
  max-width: 100%;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}
.legal-content {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-content h2,
.legal-content p,
.legal-content li {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.legal-toc h3 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.legal-toc ol { list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin-bottom: 6px; }
.legal-toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.legal-toc a::before { content: counter(toc) ". "; color: var(--muted); }
.legal-toc a:hover { background: var(--teal-soft); color: var(--teal); }
.legal-content section {
  margin-bottom: 34px;
  scroll-margin-top: 100px;
}
.legal-content p { color: var(--ink-soft); margin-top: 12px; }
.legal-content ul, .legal-content ol { margin: 12px 0 0 1.2rem; color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; }
.legal-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.aside-stats {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
}
.aside-stats h3 {
  color: #e8b08c;
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.aside-stats .row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.aside-stats .row:last-child { border-bottom: 0; }
.aside-stats .num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
}
.aside-stats .lbl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.process {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.process li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  color: var(--ink-soft);
}
.process .n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.split-cta .card {
  background: linear-gradient(160deg, #fff, #f3f7f8);
}

.cta-band {
  text-align: center;
  padding: 64px 20px;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(184, 107, 69, 0.14), transparent),
    var(--surface);
  border-block: 1px solid var(--line);
}
.cta-band p {
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 12px auto 24px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.footer {
  background: var(--teal-deep);
  color: rgba(244, 247, 248, 0.82);
  padding-top: 48px;
}
.footer a { color: #d7ecee; }
.footer a:hover { color: #fff; }
.footer-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 0 16px 36px;
  box-sizing: border-box;
}
.footer h4 {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8b08c;
  margin-bottom: 14px;
}
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer button {
  border: 0;
  background: none;
  color: #d7ecee;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}
.footer button:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 16px 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(244, 247, 248, 0.65);
  box-sizing: border-box;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 120;
  width: auto;
  max-width: min(720px, calc(100vw - 20px));
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(20, 34, 38, 0.18);
  padding: 16px;
  display: none;
  box-sizing: border-box;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.cookie-banner p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-panel {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.cookie-panel.open { display: grid; gap: 8px; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  text-align: left;
}
th {
  padding: 14px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: #e8f1f2;
}
td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
td.bold { color: var(--ink); font-weight: 700; }

/* Responsive */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .contact-strip { grid-template-columns: 1fr 1fr; }
  .venue-panel.active { grid-template-columns: 1fr; }
  .venue-panel img { min-height: 220px; max-height: 280px; }
  .grid-2, .grid-3, .grid-4, .split-cta, .legal-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-toc { position: static; width: 100%; max-width: 100%; }
  .mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(4) { transform: none; }
  .aside-stats { width: 100%; max-width: 100%; }
  .page-hero h1,
  .hero-copy h1 { max-width: 100%; }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }
  .container { padding-inline: 14px; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-cell { padding: 16px 14px; }
  .hero { min-height: 520px; }
  .hero-copy { padding: 64px 14px 36px; }
  .hero-actions .btn { width: 100%; }
  .event-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .page-hero { padding: 40px 0 28px; }
  .cta-band { padding: 48px 14px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; max-width: none; }
  .logo-name { font-size: 1rem; }
  .logo img { width: 38px; height: 38px; }
  table { min-width: 480px; }
  th, td { padding: 12px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page.active { animation: none; }
  * { transition: none !important; }
}
@media (max-width: 768px) {
  .grid-2{
    display: block;
  }
}