/* Wellness Hotel Asteria — nieuwe huisstijl 2026, blokken uit de Asteria-stijlaanzet
   (topbalk+nav, hero met zoekbalk, fototegels, intro-met-ster, USP-lint,
    kaart-over-foto, aanbod-kaart, watermerk-band) */

:root {
  --zand: #F7E7D1;
  --ivoor: #FFFAF1;
  --schelp: #FEF1E2;
  --terracotta: #C76E4E;
  --kastanje: #442A06;
  --inkt: #221F1F;
  --taupe: #4C4841;
  --duin: #F5EDE0;
  --schaduw: 93, 52, 20;
  --display: 'Abhaya Libre', 'Times New Roman', serif;
  --body: 'Montserrat', 'Trebuchet MS', Helvetica, Arial, sans-serif;
  --radius: 4px;
  --radius-chip: 8px;
  --kaart-schaduw: 0 2px 10px rgba(var(--schaduw), .05), 0 1px 3px rgba(var(--schaduw), .04);
  --nav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.875;
  color: var(--taupe);
  background: var(--zand);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--kastanje);
  line-height: 1.05;
}
h2 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; }
h3 { font-size: 26px; }
h4 { font-size: 19px; }

.icon { width: 20px; height: 20px; flex: none; }

/* ---------- knoppen & chips ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.btn-primary { background: var(--terracotta); color: var(--ivoor); }
.btn-primary:hover { background: #b25f41; }
.btn-outline { border: 1.5px solid var(--terracotta); color: var(--terracotta); background: transparent; }
.btn-outline:hover { background: var(--terracotta); color: var(--ivoor); }
.btn-tegel {
  border: 1.5px solid rgba(255, 250, 241, .85);
  color: var(--ivoor);
  background: transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}
.btn-tegel:hover { background: var(--ivoor); color: var(--inkt); }
.btn:focus-visible, .chip:focus-visible { outline: 2px solid var(--kastanje); outline-offset: 2px; }

.chip {
  background: var(--ivoor);
  border-radius: var(--radius-chip);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--kaart-schaduw);
}
.chip .icon { width: 16px; height: 16px; color: var(--terracotta); }
.eyebrow {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 2px 0 6px;
}
.accent { color: var(--terracotta); }
.dots { display: flex; gap: 7px; align-items: center; }
.dots span { height: 9px; width: 25px; border-radius: 22px; background: rgba(199, 110, 78, .25); transition: width .25s, background .25s; }
.dots span.actief { width: 39px; background: var(--terracotta); }

/* ---------- layout ---------- */
.section { padding: 96px 24px; }
.section-ivoor { background: var(--ivoor); }
.section-zand { background: var(--zand); }
.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }
.mt-lg { margin-top: 48px; }
.mt-md { margin-top: 28px; }
.section-head { margin-bottom: 56px; }
.section-sub { font-size: 17px; opacity: .85; }

.card { background: var(--ivoor); border-radius: var(--radius); box-shadow: var(--kaart-schaduw); overflow: hidden; }

.watermark, .watermark-ivoor { position: relative; overflow: hidden; }
.watermark::before, .watermark-ivoor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/asteria-ster-patroon.svg") 120% -40% / 900px no-repeat;
  opacity: .05;
  pointer-events: none;
}
.watermark-ivoor::before { filter: brightness(0) invert(.97); opacity: .07; }
.watermark > *, .watermark-ivoor > * { position: relative; }

/* ---------- topbalk (schelp) ---------- */
.hd-top {
  background: var(--schelp);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 24px;
  font-size: 13px;
  color: var(--inkt);
  flex-wrap: wrap;
}
.hd-top .groep { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hd-top a { display: inline-flex; align-items: center; gap: 7px; font-weight: 400; }
.hd-top a:hover { color: var(--terracotta); }
.hd-top .icon { width: 14px; height: 14px; color: var(--terracotta); }
.lang-switch { display: inline-flex; gap: 2px; }
.lang-switch a { padding: 3px 8px; border-radius: 6px; font-weight: 500; }
.lang-switch a.active { background: var(--terracotta); color: var(--ivoor); }

/* ---------- navbalk (ivoor, sticky) ---------- */
.hd-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ivoor);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  min-height: var(--nav-h);
  box-shadow: 0 1px 0 rgba(var(--schaduw), .07);
}
.hd-logo img { height: 40px; width: auto; }
.hd-nav nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--inkt);
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.hd-nav nav a:hover { color: var(--terracotta); }
.hd-nav .hd-cta { padding: 11px 20px; font-size: 14px; }
.nav-toggle { display: none; color: var(--kastanje); }
.nav-toggle .icon { width: 26px; height: 26px; }
section[id], footer[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- hero met zoekbalk ---------- */
.hb { position: relative; padding-bottom: 46px; }
.hb-foto { position: relative; height: min(82vh, 720px); min-height: 480px; overflow: hidden; }
.hb-foto video, .hb-foto > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hb-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 31, 31, 0) 40%, rgba(34, 31, 31, .45));
}
.hb-kop {
  position: absolute;
  left: max(36px, calc((100% - 1200px) / 2));
  bottom: 110px;
  z-index: 1;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1;
  color: var(--ivoor);
  text-wrap: balance;
  max-width: 12em;
}
.zoekbalk {
  position: absolute;
  left: max(24px, calc((100% - 1200px) / 2));
  right: max(24px, calc((100% - 1200px) / 2));
  bottom: 0;
  z-index: 2;
  background: var(--ivoor);
  border-radius: 14px;
  box-shadow: var(--kaart-schaduw);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 14px 14px 26px;
  flex-wrap: wrap;
}
.zoekbalk .veld { line-height: 1.35; }
.zoekbalk .veld .mini {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.zoekbalk .veld .waarde { font-size: 15px; font-weight: 500; color: var(--inkt); }
.zoekbalk-btn { margin-left: auto; }

/* ---------- fototegels (sauna's) ---------- */
.tegels-sectie { background: var(--zand); padding: 26px 24px 10px; }
.tegels { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 14px; }
.tegel { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.tegel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tegel:hover img { transform: scale(1.04); }
.tegel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 31, 31, 0) 42%, rgba(34, 31, 31, .8));
}
.tegel .tekst { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: var(--ivoor); }
.tegel h4 { font-size: 24px; color: var(--ivoor); line-height: 1.1; }
.tegel p { font-size: 12.5px; margin-top: 5px; line-height: 1.5; opacity: .92; }
.tegel .btn { margin-top: 10px; }

/* ---------- intro met ster ---------- */
.intro-ster { background: var(--zand); padding: 96px 24px; text-align: center; }
.intro-ster .ster { height: 64px; width: auto; margin: 0 auto 22px; }
.intro-ster p { max-width: 640px; margin: 0 auto 10px; }

/* ---------- USP-lint ---------- */
.usp-lint { background: var(--zand); display: flex; gap: 12px; padding: 10px 0 34px; overflow: hidden; }
.usp-baan { display: flex; gap: 12px; flex: none; animation: usp-scroll 40s linear infinite; padding-right: 12px; }
.usp-chip { flex: none; }
@keyframes usp-scroll { to { transform: translateX(-100%); } }
.usp-lint:hover .usp-baan { animation-play-state: paused; }

/* ---------- kaart over foto ---------- */
.ok { position: relative; background: var(--zand); padding: 40px 24px; }
.ok-foto { position: relative; max-width: 1200px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; min-height: 460px; }
.ok-foto img, .ok-foto video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ok-kaart {
  position: relative;
  z-index: 1;
  max-width: 400px;
  background: var(--ivoor);
  border-radius: var(--radius);
  box-shadow: var(--kaart-schaduw);
  padding: 30px 32px 32px;
  margin: -220px auto 0 max(60px, calc((100% - 1200px) / 2 + 36px));
}
.ok-rechts .ok-kaart { margin: -220px max(60px, calc((100% - 1200px) / 2 + 36px)) 0 auto; }
.ok-kaart h4 { font-size: 27px; line-height: 1.15; }
.ok-kaart .body { font-size: 13.5px; color: var(--taupe); margin-top: 10px; line-height: 1.7; }
.ok-kaart hr { border: 0; border-top: 1px solid rgba(68, 42, 6, .14); margin: 16px 0; }
.ok-kaart .knoppen { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.ok-kaart .btn { padding: 10px 18px; font-size: 13.5px; }
.ok-kaart .chip { padding: 7px 14px; font-size: 12.5px; margin-bottom: 10px; }
.ok-kaart .quote { font-style: italic; color: var(--terracotta); font-size: 14px; margin-top: 12px; }
.ok-breed { max-width: 480px; }
.ok-specs { display: flex; flex-wrap: wrap; gap: 18px; }
.spec { display: flex; align-items: center; gap: 9px; font-size: 13.5px; line-height: 1.35; color: var(--taupe); }
.spec .icon { color: var(--terracotta); width: 18px; height: 18px; }
.spec b { display: block; font-weight: 600; color: var(--kastanje); font-size: 12.5px; }
.features { display: flex; flex-direction: column; gap: 16px; }
.feature { display: flex; gap: 13px; align-items: flex-start; }
.feature h4 { font-size: 17px; margin-bottom: 2px; }
.feature p { font-size: 13px; line-height: 1.6; }
.icon-chip {
  flex: none;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--schelp);
  color: var(--terracotta);
  border-radius: 50%;
}
.icon-chip .icon { width: 17px; height: 17px; }
.bullet-list { list-style: none; }
.bullet-list li { position: relative; padding: 4px 0 4px 24px; font-size: 13.5px; line-height: 1.6; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- plattegrond ---------- */
.floorplan { position: relative; max-width: 1080px; margin: 0 auto; }
.floorplan > img { width: 100%; height: auto; border-radius: var(--radius); }
.floorplan-chip { position: absolute; top: -8px; left: 0; z-index: 2; }
.hotspot {
  position: absolute;
  width: 34px; height: 34px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotspot-dot {
  width: 15px; height: 15px;
  background: var(--terracotta);
  border: 2.5px solid var(--ivoor);
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(var(--schaduw), .35);
  transition: transform .15s;
}
.hotspot::after {
  content: "";
  position: absolute;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(199, 110, 78, .45);
  animation: pulse 2s ease-out infinite;
}
.hotspot:hover .hotspot-dot { transform: scale(1.25); }
@keyframes pulse { 0% { transform: scale(1); opacity: .9; } 80%, 100% { transform: scale(2.4); opacity: 0; } }

.hotspot-modal, .newsletter-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hotspot-backdrop, .newsletter-backdrop, .lightbox-backdrop { position: absolute; inset: 0; background: rgba(34, 31, 31, .6); }
.hotspot-card { position: relative; width: 100%; max-width: 420px; animation: modal-in .25s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hotspot-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hotspot-info { padding: 22px 26px 26px; }
.hotspot-info p { font-size: 14px; line-height: 1.7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 12px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--terracotta);
  background: rgba(199, 110, 78, .1);
  padding: 5px 11px;
  border-radius: var(--radius-chip);
}
.tag .icon { width: 14px; height: 14px; }

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivoor);
  color: var(--kastanje);
  border-radius: 50%;
  box-shadow: var(--kaart-schaduw);
}
.modal-close.light { position: fixed; top: 20px; right: 20px; }

/* ---------- aanbod-carrousel ---------- */
.aanbod-kop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.aanbod-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.aanbod-strip::-webkit-scrollbar { display: none; }
.ak {
  flex: 0 0 min(560px, 88%);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ak-vlak { padding: 30px 28px; display: flex; flex-direction: column; }
.ak-naam { font-size: clamp(26px, 2.6vw, 34px); color: var(--terracotta); line-height: 1.1; }
.ak-body { font-size: 13px; line-height: 1.7; margin-top: 12px; }
.ak-knoppen { display: flex; gap: 10px; margin-top: auto; padding-top: 20px; flex-wrap: wrap; }
.ak-knoppen .btn { padding: 10px 18px; font-size: 13.5px; }
.ak-foto { position: relative; min-height: 300px; }
.ak-foto img { position: absolute; inset: 12px 12px 12px 0; width: calc(100% - 12px); height: calc(100% - 24px); object-fit: cover; border-radius: var(--radius); }

/* ---------- watermerk-band ---------- */
.wm-band { position: relative; background: var(--zand); min-height: 420px; overflow: hidden; display: flex; align-items: center; padding: 60px 24px; }
.wm-ster {
  position: absolute;
  inset: -40% -20%;
  background: url("/assets/asteria-ster-patroon.svg") center / 1400px no-repeat;
  opacity: .06;
  pointer-events: none;
}
.wm-band .band {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
  background: rgba(255, 250, 241, .7);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
}
.wm-band .band p { max-width: 560px; margin: 0 auto 26px; }

/* ---------- FAQ ---------- */
.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .chev { transition: transform .25s; }
.accordion[open] .chev { transform: rotate(180deg); }
.faq-item { margin-bottom: 14px; }
.faq-item summary { padding: 18px 22px; font-size: 15px; color: var(--kastanje); font-weight: 500; }
.faq-item .accordion-content { padding: 0 22px 20px; font-size: 14.5px; }

/* ---------- gallerij ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}
.gallery-tile { position: relative; overflow: hidden; border-radius: var(--radius); padding: 0; aspect-ratio: 4 / 3; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile.g1 { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
.gallery-tile.g4 { grid-column: 3 / 4; }
.gallery-more {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(34, 31, 31, .55);
  color: var(--ivoor);
  font-size: 18px;
}
.gallery-more .icon { width: 26px; height: 26px; }

.lightbox { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; }
.lightbox-backdrop { background: rgba(20, 18, 18, .92); }
.lightbox figure { position: relative; max-width: min(1100px, 88vw); }
.lightbox img { max-height: 82vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: var(--radius); }
.lightbox figcaption { text-align: center; color: var(--schelp); font-size: 13px; margin-top: 12px; }
.lightbox-nav {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivoor);
  background: rgba(255, 250, 241, .12);
  border-radius: 50%;
  margin: 0 18px;
  transition: background .15s;
}
.lightbox-nav:hover { background: rgba(199, 110, 78, .8); }
.lightbox-nav .icon { width: 26px; height: 26px; }

/* ---------- footer ---------- */
.site-footer { background: var(--kastanje); color: var(--schelp); padding: 80px 24px 0; }
.site-footer::before { background-position: -10% 130%; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand img { height: 72px; margin-bottom: 14px; }
.footer-brand h3 { color: var(--ivoor); margin-bottom: 10px; }
.footer-brand p { font-size: 14.5px; opacity: .85; line-height: 1.8; }
.footer-col h4 {
  color: var(--ivoor);
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; margin-bottom: 12px; }
.footer-col .icon { color: var(--terracotta); margin-top: 5px; }
.footer-col a:hover { color: var(--ivoor); }
.footer-col .hours { display: flex; justify-content: space-between; gap: 12px; }
.footer-col .hours b { color: var(--ivoor); font-weight: 600; }
.footnote { font-size: 12.5px; opacity: .7; }
.footer-bottom { border-top: 1px solid rgba(255, 250, 241, .15); padding: 22px 0; text-align: center; }
.footer-bottom p { font-size: 13px; opacity: .7; }

/* ---------- nieuwsbrief-popup ---------- */
.newsletter-card { position: relative; width: 100%; max-width: 440px; animation: modal-in .25s ease; }
.newsletter-img { position: relative; height: 170px; }
.newsletter-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.newsletter-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255, 250, 241, 0) 55%, var(--ivoor));
}
.newsletter-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: -28px auto 0;
  background: var(--schelp);
  border: 3px solid var(--ivoor);
  color: var(--terracotta);
  border-radius: 50%;
}
.newsletter-body { padding: 14px 34px 30px; text-align: center; }
.newsletter-body h3 { margin-bottom: 8px; }
.newsletter-body > p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }
.newsletter-body form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-body input {
  font-family: var(--body);
  font-size: 14.5px;
  padding: 13px 16px;
  border: 1px solid rgba(var(--schaduw), .18);
  border-radius: var(--radius);
  background: var(--ivoor);
  color: var(--inkt);
}
.newsletter-body input:focus { outline: 2px solid var(--terracotta); outline-offset: -1px; }
.newsletter-body .footnote { margin-top: 12px; }
.newsletter-result { padding: 16px 0 4px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; padding: 0; border: 0; }

[hidden] { display: none !important; }
body.no-scroll { overflow: hidden; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hd-nav nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .hd-nav nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ivoor);
    box-shadow: 0 12px 24px rgba(var(--schaduw), .12);
    padding: 8px 0 12px;
  }
  .hd-nav nav.open a { line-height: 52px; padding: 0 28px; }
  .tegels { grid-template-columns: 1fr 1fr; }
  .tegel:first-child { grid-column: 1 / 3; }
}
@media (max-width: 900px) {
  .section { padding: 72px 20px; }
  .hb { padding-bottom: 0; }
  .hb-kop { bottom: 36px; }
  .zoekbalk { position: relative; left: 0; right: 0; margin: -34px 20px 0; }
  .zoekbalk-btn { margin-left: 0; width: 100%; text-align: center; }
  .ok-kaart, .ok-rechts .ok-kaart { margin: -80px 20px 0; max-width: none; }
  .ok-foto { min-height: 340px; }
  .aanbod-kop { flex-direction: column; align-items: flex-start; }
  .ak { flex-basis: 92%; grid-template-columns: 1fr; }
  .ak-foto { min-height: 220px; }
  .ak-foto img { inset: 0 12px 12px 12px; width: calc(100% - 24px); height: calc(100% - 12px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-tile.g1 { grid-column: 1 / 3; }
  .gallery-tile.g4 { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hd-cta { display: none; }
}
@media (max-width: 640px) {
  .hd-top { justify-content: center; }
  .tegels { grid-template-columns: 1fr; }
  .tegel:first-child { grid-column: auto; }
  .tegel { min-height: 240px; }
  .lightbox-nav { position: fixed; bottom: 24px; top: auto; }
  .lightbox-nav.prev { left: 24px; }
  .lightbox-nav.next { right: 24px; }
}
