/* Atlantik-Blau, Klippen-Ocker (Ponta da Piedade), Gischt */
:root {
  --ocean: #0f3d56;
  --ocean-deep: #0a2b3d;
  --sea: #1b6b8f;
  --cliff: #a8601a;
  --foam: #eef4f6;
  --ink: #1c2a33;
  --muted: #5b6b75;
  --line: #d6e1e6;
  --wrap: 1160px;
  --head: "Spectral", Georgia, serif;
  --body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 17px/1.65 var(--body); color: var(--ink); background: #fff; }
img, iframe, video { max-width: 100%; }
img { height: auto; }
a { color: var(--sea); text-underline-offset: .18em; }
a:hover { color: var(--ocean); }
:focus-visible { outline: 3px solid var(--cliff); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.2; color: var(--ocean); margin: 1.4em 0 .5em; }
h1 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); margin-top: 0; }
h2 { font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: 8px 14px; }

.btn {
  display: inline-block; background: var(--cliff); color: #fff; border: 0; border-radius: 2px;
  padding: .7em 1.4em; font: 700 .95rem/1.2 var(--body); text-decoration: none; cursor: pointer;
}
.btn:hover { background: #8d4f12; color: #fff; }
.btn.light { background: #fff; color: var(--ocean); }
.btn.light:hover { background: var(--foam); color: var(--ocean); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ocean); color: #dbe8ef; font-size: .85rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: flex-end; gap: 6px 20px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar svg { width: 16px; height: 16px; fill: currentColor; flex: none; }
.search-form { display: flex; align-items: center; background: rgba(255,255,255,.12); border-radius: 2px; }
.search-form input { background: transparent; border: 0; color: #fff; font: inherit; padding: 5px 8px; width: 150px; }
.search-form input::placeholder { color: #b9cfdb; }
.search-form button { background: none; border: 0; color: #fff; padding: 5px 8px; cursor: pointer; display: flex; }
.langs { display: flex; gap: 2px; }
.langs a { padding: 3px 8px; font-weight: 700; font-size: .78rem; letter-spacing: .04em; border-radius: 2px; }
.langs a.on { background: #fff; color: var(--ocean); }

/* ---------- Header & Menü ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.logo { display: block; flex: none; text-decoration: none; }
.logo img { display: block; max-height: 68px; width: auto; }
.logo span { font: 600 1.4rem var(--head); color: var(--ocean); }

.nav .menu { list-style: none; margin: 0; padding: 0; display: flex; }
.nav li { position: relative; }
.nav a { display: block; padding: 10px 14px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; }
.nav .menu > li > a { border-bottom: 3px solid transparent; padding-bottom: 7px; }
.nav .menu > li > a:hover, .nav .menu > li.current > a { border-bottom-color: var(--cliff); color: var(--ocean); }
.nav .has-sub > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 8px; border: solid currentColor; border-width: 0 2px 2px 0; transform: translateY(-3px) rotate(45deg); opacity: .6; }
.nav .sub {
  list-style: none; margin: 0; padding: 8px 0; position: absolute; left: 0; top: 100%; min-width: 240px; z-index: 10;
  background: #fff; border-top: 3px solid var(--cliff); box-shadow: 0 14px 34px rgba(15,61,86,.16);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .16s, transform .16s, visibility .16s;
}
.nav li:hover > .sub, .nav li:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
.nav .sub a { font-weight: 400; padding: 8px 20px; }
.nav .sub a:hover, .nav .sub .current > a { background: var(--foam); color: var(--ocean); }
.sub-toggle, .burger { display: none; }

@media (max-width: 1000px) {
  :root { --header-h: 72px; }
  .logo img { max-height: 54px; }
  .burger { display: inline-flex; align-items: center; gap: 10px; background: none; border: 1px solid var(--line); padding: 8px 12px; font: 700 .9rem var(--body); color: var(--ocean); cursor: pointer; }
  .bars, .bars::before, .bars::after { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
  .bars::before { top: -6px; } .bars::after { top: 6px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 3px solid var(--cliff); max-height: calc(100vh - var(--header-h)); overflow: auto; }
  .nav-open .nav { display: block; }
  .nav .menu { flex-direction: column; padding: 4px 0 12px; }
  .nav .menu > li { border-top: 1px solid var(--line); }
  .nav .menu > li > a { border: 0; padding: 12px 22px; }
  .nav .has-sub > a::after { display: none; }
  .nav .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 18px; display: none; }
  .nav li.open > .sub { display: block; }
  .sub-toggle { display: block; position: absolute; right: 12px; top: 6px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; }
  .sub-toggle::before, .sub-toggle::after { content: ""; position: absolute; left: 13px; top: 19px; width: 14px; height: 2px; background: var(--ocean); }
  .sub-toggle::after { transform: rotate(90deg); transition: transform .15s; }
  .open > .sub-toggle::after { transform: rotate(0); }
}
@media (max-width: 640px) {
  .topbar .wrap { justify-content: space-between; }
  .topbar a span { display: none; }
  .search-form input { width: 110px; }
}

/* ---------- Slider ---------- */
.slider { position: relative; height: clamp(340px, 64vh, 660px); overflow: hidden; background: var(--ocean); }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.1s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide.noimg { background: linear-gradient(165deg, var(--sea), var(--ocean-deep)); }
.slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 90px 0 64px; background: linear-gradient(rgba(10,43,61,0), rgba(10,43,61,.78)); }
.slide-title {
  font: 600 clamp(1.8rem, 1rem + 3vw, 3.4rem)/1.1 var(--head); color: #fff; margin: 0; max-width: 20ch;
  padding-left: 22px; border-left: 5px solid var(--cliff);
}
.slide-sub { color: #e2edf2; font-size: 1.15rem; margin: 14px 0 0 27px; max-width: 46ch; }
.slide .btn { margin: 20px 0 0 27px; }
.rot-prev, .rot-next { position: absolute; z-index: 3; top: 50%; width: 48px; height: 48px; margin-top: -24px; border: 0; background: rgba(10,43,61,.45); cursor: pointer; }
.rot-prev { left: 16px; } .rot-next { right: 16px; }
.rot-prev::before, .rot-next::before { content: ""; position: absolute; top: 18px; width: 11px; height: 11px; border: solid #fff; border-width: 0 3px 3px 0; }
.rot-prev::before { left: 20px; transform: rotate(135deg); }
.rot-next::before { left: 14px; transform: rotate(-45deg); }
.rot-prev:hover, .rot-next:hover { background: rgba(10,43,61,.75); }
.rot-dots { display: flex; gap: 8px; }
.slider .rot-dots { position: absolute; z-index: 3; right: 22px; bottom: 24px; }
.rot-dots button { width: 30px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.rot-dots button.on { background: #fff; }
@media (max-width: 640px) { .rot-prev, .rot-next { display: none; } }

/* ---------- Seiteninhalte ---------- */
.page-head { background: var(--foam); border-bottom: 1px solid var(--line); padding: 52px 0 36px; }
.page-head h1 { margin: 0; max-width: 28ch; }
.page-sub { margin: 10px 0 0; color: var(--muted); }
.page-body { padding-top: 44px; padding-bottom: 72px; }
.content { max-width: 800px; }
.content > :first-child { margin-top: 0; }
.content ul, .content ol { padding-left: 1.3em; }
.content li { margin-bottom: .35em; }
.content img { display: block; margin: 1.4em 0; }
.content table { border-collapse: collapse; width: 100%; margin: 1.4em 0; font-size: .95rem; display: block; overflow-x: auto; }
.content th, .content td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.content th { background: var(--foam); color: var(--ocean); }
.content blockquote { margin: 1.6em 0; padding: .2em 0 .2em 1.2em; border-left: 4px solid var(--cliff); font: italic 500 1.15rem/1.55 var(--head); color: var(--ocean); }
.content iframe { width: 100%; min-height: 380px; border: 0; }
.back { margin-top: 40px; }

/* ---------- Startseite ---------- */
.intro { padding-top: 60px; padding-bottom: 40px; }
.intro .content { max-width: 820px; }
.boxes-wrap { background: var(--foam); padding: 56px 0; }
.boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px 32px; }
.box { border-top: 3px solid var(--sea); padding-top: 18px; }
.box img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 16px; }
.box h2 { font-size: 1.3rem; margin: 0 0 .5em; }
.box h2 a { color: var(--ocean); text-decoration: none; }
.box h2 a:hover { text-decoration: underline; }
.box p { color: var(--muted); font-size: .96rem; margin: 0; }

.findus { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 40px; padding-top: 64px; padding-bottom: 64px; align-items: start; }
.findus h2 { margin-top: 0; }
.findus iframe { width: 100%; height: 360px; border: 0; }
@media (max-width: 760px) { .findus { grid-template-columns: 1fr; } }

.reviews { background: var(--ocean); color: #fff; padding: 64px 0 56px; }
.reviews h2 { color: #fff; margin: 0 0 28px; }
.rev-stage { display: grid; }
.review { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transition: opacity .7s, visibility .7s; max-width: 860px; }
.review.active { opacity: 1; visibility: visible; }
.review > div { font: italic 500 clamp(1.1rem, 1rem + .5vw, 1.35rem)/1.6 var(--head); }
.review footer { margin-top: 18px; font-weight: 700; color: #f0c893; }
.reviews .rot-dots { margin-top: 28px; }

/* ---------- News ---------- */
.news-list { display: grid; gap: 36px; max-width: 900px; }
.news-item { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 26px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.news-item.noimg { grid-template-columns: 1fr; }
.news-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.news-item h2 { font-size: 1.4rem; margin: 0 0 .4em; }
.news-item h2 a { color: var(--ocean); text-decoration: none; }
.news-item h2 a:hover { text-decoration: underline; }
.date { color: var(--muted); font-size: .88rem; margin: 0 0 4px; }
.pager { display: flex; justify-content: space-between; margin-top: 36px; font-weight: 700; }
@media (max-width: 640px) { .news-item { grid-template-columns: 1fr; } }

/* ---------- Formulare & Suche ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form label { display: block; font-weight: 700; margin-bottom: 16px; color: var(--ocean); }
.form input, .form textarea, .search-big input {
  display: block; width: 100%; margin-top: 6px; padding: 11px 12px; border: 1px solid #b9c9d1; border-radius: 2px; font: 400 1rem var(--body); color: var(--ink); background: #fff;
}
.form input:focus, .form textarea:focus, .search-big input:focus { border-color: var(--sea); outline: 2px solid var(--sea); outline-offset: 0; }
.hp { position: absolute; left: -9999px; }
.notice { padding: 12px 16px; border-left: 4px solid; }
.notice.ok { background: #e8f5ec; border-color: #2e7d4f; }
.notice.err { background: #fbecec; border-color: #b3261e; }
.search-big { display: flex; gap: 10px; max-width: 620px; margin-bottom: 36px; }
.search-big input { margin: 0; }
.result { padding: 18px 0; border-bottom: 1px solid var(--line); max-width: 800px; }
.result h2 { font-size: 1.25rem; margin: 0 0 .3em; }

/* ---------- Meet the Team ---------- */
.team { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.member { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; padding: 0; border: 0; overflow: hidden; cursor: pointer; background: var(--foam); text-align: left; font: inherit; }
.member img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.member-ph { display: grid; place-items: center; height: 100%; font: 600 4rem var(--head); color: var(--sea); }
.member-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 18px 16px; color: #fff;
  background: linear-gradient(rgba(10,43,61,0), rgba(10,43,61,.88));
  opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s;
}
.member-cap strong { display: block; font: 600 1.3rem/1.2 var(--head); }
.member-cap span { display: block; font-size: .9rem; color: #f0c893; margin-top: 4px; }
.member:hover .member-cap, .member:focus-visible .member-cap { opacity: 1; transform: none; }
.member:hover img, .member:focus-visible img { transform: scale(1.04); }
.member:focus-visible { outline-offset: 3px; }
@media (hover: none) { .member-cap { opacity: 1; transform: none; } }

.member-dlg { width: min(960px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-top: 4px solid var(--cliff); box-shadow: 0 24px 60px rgba(10,43,61,.35); color: var(--ink); }
.member-dlg::backdrop { background: rgba(10,43,61,.72); }
.member-dlg[open] { animation: dlg-in .22s ease-out; }
@keyframes dlg-in { from { opacity: 0; transform: translateY(12px); } }
.dlg-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.dlg-grid.noimg { grid-template-columns: 1fr; }
.dlg-grid img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.dlg-text { padding: 40px 40px 32px; overflow-y: auto; max-height: calc(100vh - 36px); }
.dlg-text h2 { margin: 0; font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); }
.dlg-role { color: var(--cliff); font-weight: 700; margin: 6px 0 22px; }
.dlg-close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 42px; height: 42px; border: 0; background: rgba(255,255,255,.92); cursor: pointer; border-radius: 50%; }
.dlg-close::before, .dlg-close::after { content: ""; position: absolute; left: 12px; top: 20px; width: 18px; height: 2px; background: var(--ocean); transform: rotate(45deg); }
.dlg-close::after { transform: rotate(-45deg); }
@media (max-width: 720px) {
  .dlg-grid { grid-template-columns: 1fr; }
  .dlg-grid img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .dlg-text { max-height: none; padding: 26px 22px; }
  .member-dlg { overflow-y: auto; }
}

/* ---------- Fees ---------- */
.fee-intro { margin-bottom: 8px; }
.fee-jump { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 28px 0 12px; }
.fee-jump a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--foam); color: var(--ocean); text-decoration: none; font-weight: 700; border-left: 4px solid var(--sea); }
.fee-jump a:hover { background: #e2edf1; border-left-color: var(--cliff); }
.fee-jump svg { width: 28px; height: 28px; fill: var(--sea); flex: none; }
.fee-cat { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 20px 48px; padding: 56px 0; border-top: 1px solid var(--line); margin-top: 40px; }
.fee-cat + .fee-cat { margin-top: 0; }
.fee-cat-head { align-self: start; position: sticky; top: calc(var(--header-h) + 24px); }
.fee-cat-head h2 { margin: 16px 0 0; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.fee-icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--ocean); }
.fee-icon svg { width: 32px; height: 32px; fill: #fff; }
.fee-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px; }
.fee-cards.single { max-width: 560px; }
.fee-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--sea); display: flex; flex-direction: column; }
.fee-card h3 { margin: 0; padding: 18px 22px 4px; font-size: 1.3rem; }
.fee-card dl { margin: 0; padding: 6px 22px 10px; flex: 1; }
.fee-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.fee-row:last-child { border-bottom: 0; }
.fee-row dt { font-weight: 600; }
.fee-row dt small { display: block; font-weight: 400; color: var(--muted); font-size: .88rem; }
.fee-row dd { margin: 0; text-align: right; }
.fee-row dd.price { font: 600 1.35rem/1.2 var(--head); color: var(--ocean); font-variant-numeric: tabular-nums; white-space: nowrap; }
.fee-note { margin: 0; padding: 12px 22px; background: var(--foam); color: var(--muted); font-size: .9rem; }
@media (max-width: 860px) {
  .fee-cat { grid-template-columns: 1fr; padding: 40px 0; }
  .fee-cat-head { position: static; display: flex; align-items: center; gap: 16px; }
  .fee-cat-head h2 { margin: 0; }
  .fee-icon { width: 52px; height: 52px; flex: none; }
  .fee-icon svg { width: 26px; height: 26px; }
}

/* ---------- Course dates ---------- */
.courses { margin: 40px 0; max-width: 900px; }
.course-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.course-filter button { border: 1px solid #b9c9d1; background: #fff; color: var(--ocean); padding: 7px 16px; border-radius: 999px; font: 700 .9rem var(--body); cursor: pointer; }
.course-filter button[aria-pressed="true"] { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.course { padding: 32px 0; border-top: 1px solid var(--line); }
.course:first-of-type { border-top: 0; padding-top: 0; }
.course[hidden] { display: none; }
.course h3 { margin: 0 0 .4em; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); }
.course-text { color: var(--muted); max-width: 70ch; }
.course-none { padding: 14px 18px; background: var(--foam); border-left: 4px solid var(--sea); }
.sessions { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.session { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: start; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--sea); }
.session[data-mode="school"] { border-left-color: var(--cliff); }
.session[hidden] { display: none; }
.cal { text-align: center; border: 1px solid var(--line); background: #fff; line-height: 1; }
.cal-m { display: block; background: var(--ocean); color: #fff; font-size: .75rem; font-weight: 700; padding: 5px 2px; text-transform: capitalize; }
.cal-d { display: block; font: 600 1.8rem/1 var(--head); color: var(--ocean); padding: 8px 2px 9px; }
.cal.weekly .cal-m { background: var(--sea); }
.cal.weekly .cal-d { font-size: 1.15rem; padding: 12px 2px; text-transform: capitalize; }
.s-main p { margin: 0; }
.s-top { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; margin-bottom: 6px !important; }
.tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: 2px 9px; border-radius: 2px; }
.tag.online { background: #e1eef4; color: var(--sea); }
.tag.school { background: #f6eadc; color: #7f4712; }
.tag.run { background: #e3f3e8; color: #22683e; }
.s-label { font-weight: 700; color: var(--ocean); font-size: .92rem; }
.s-dates { font: 600 1.15rem/1.35 var(--head); color: var(--ocean); }
.s-weeks { font: 400 .9rem var(--body); color: var(--muted); margin-left: 8px; }
.s-time { font-weight: 600; margin-top: 2px !important; text-transform: none; }
.s-note { margin-top: 8px !important; font-size: .9rem; color: #7f4712; padding-left: 20px; position: relative; }
.s-note::before { content: "!"; position: absolute; left: 0; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--cliff); color: #fff; font: 700 .65rem/14px var(--body); text-align: center; }
@media (max-width: 520px) { .session { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; padding: 14px; } .cal-d { font-size: 1.5rem; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean-deep); color: #c9dae3; font-size: .93rem; }
.site-footer a { color: #fff; }
.fcols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; padding-top: 56px; padding-bottom: 40px; }
.fh { font-size: 1.15rem; color: #fff; margin: 0 0 14px; }
.site-footer table { border-collapse: collapse; }
.site-footer td { padding: 3px 14px 3px 0; vertical-align: top; }
.site-footer .menu { list-style: none; margin: 0; padding: 0; }
.site-footer .menu li { margin-bottom: 6px; }
.fcopy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; padding-bottom: 22px; font-size: .85rem; }

/* ---------- Cookie-Hinweis ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; max-width: 720px; margin: 0 auto; background: #fff; border-top: 4px solid var(--cliff); box-shadow: 0 10px 40px rgba(10,43,61,.25); padding: 16px 20px; display: flex; gap: 20px; align-items: center; }
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .9rem; }

@media (prefers-reduced-motion: reduce) {
  .slide, .review, .nav .sub, .member img, .member-cap { transition: none; }
  .member-dlg[open] { animation: none; }
}
