/* ============================================
   BaZee — Sea you soon
   Sint-Idesbald, België
   ============================================ */

:root {
  --sand-50:  #faf7f2;
  --sand-100: #f3ede2;
  --sand-200: #e8ddc9;
  --sand-300: #d4c2a3;
  --sea-50:   #eef5f2;
  --sea-100:  #d9e8e1;
  --sea-200:  #b8d4c8;
  --sea-300:  #9ec5b3;
  --sea-400:  #6fa890;
  --sea-500:  #3a7560;
  --sea-600:  #2b5849;
  --ink-900:  #1f2724;
  --ink-700:  #3d4945;
  --ink-500:  #5d6a64;
  --ink-300:  #8a948f;
  --white:    #ffffff;
  --shadow-sm: 0 1px 2px rgba(31,39,36,.04), 0 2px 8px rgba(31,39,36,.04);
  --shadow-md: 0 4px 12px rgba(31,39,36,.08), 0 12px 32px rgba(31,39,36,.06);
  --shadow-lg: 0 8px 24px rgba(31,39,36,.10), 0 24px 64px rgba(31,39,36,.10);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.4rem; line-height: 1.25; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.brand__wave {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--sea-200);
  border-radius: 50%;
  color: var(--sea-600);
}
.brand__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea-500);
  margin-left: 4px;
  display: none;
}
@media (min-width: 720px) {
  .brand__tag { display: inline; }
}

.nav { display: none; gap: 6px; }
@media (min-width: 880px) {
  .nav { display: flex; align-items: center; }
}
.nav a {
  padding: 8px 14px;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--sand-100); color: var(--ink-900); }
.nav a.is-active { color: var(--ink-900); font-weight: 500; }
.nav a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  background: var(--sea-400);
  margin: 4px auto 0;
  border-radius: 2px;
}

.header-cta {
  display: none;
  padding: 10px 18px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform .15s ease, background .15s ease;
}
@media (min-width: 720px) {
  .header-cta { display: inline-block; }
}
.header-cta:hover { background: var(--sea-600); transform: translateY(-1px); }

/* ----- Language switcher (discrete, no dropdown) ----- */
.lang-switch {
  display: none;
  align-items: center;
  gap: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin: 0 14px 0 4px;
  user-select: none;
}
@media (min-width: 980px) { .lang-switch { display: inline-flex; } }
.lang-switch a {
  padding: 6px 6px;
  color: var(--ink-300);
  cursor: pointer;
  transition: color .15s ease;
  position: relative;
}
.lang-switch a:hover { color: var(--ink-700); }
.lang-switch a.is-active {
  color: var(--ink-900);
  font-weight: 600;
}
.lang-switch a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--sea-400);
  border-radius: 2px;
}
.lang-switch i {
  color: var(--ink-300);
  font-style: normal;
  padding: 0 1px;
  opacity: 0.6;
}

/* Mobile language switcher (in drawer) */
.lang-switch--mobile {
  display: inline-flex;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--sand-200);
  align-self: flex-start;
}
@media (min-width: 980px) { .lang-switch--mobile { display: none; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-900);
}
@media (min-width: 880px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--sand-50);
  z-index: 100;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--ink-900);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-200);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--sand-200);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,39,36,0) 40%, rgba(31,39,36,.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 24px 48px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sea-200);
  margin-bottom: 12px;
}
.hero__title {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  max-width: 14ch;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.hero__sub {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 28px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--ink-900);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease;
}
.hero__cta:hover { transform: translateY(-2px); }

.hero__meta {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 1;
  display: none;
  gap: 32px;
  color: var(--white);
  font-size: 0.85rem;
}
@media (min-width: 880px) {
  .hero__meta { display: flex; }
}
.hero__meta b {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ============================================
   Mosaic gallery (Airbnb-style)
   ============================================ */

.mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 48px auto 64px;
  padding: 0 24px;
  max-width: 1240px;
}
@media (min-width: 720px) {
  .mosaic {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .mosaic > :nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1;
  }
}
.mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--sand-100);
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic__more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink-900);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   Sections
   ============================================ */

section { padding: 64px 0; }
@media (min-width: 720px) { section { padding: 96px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea-500);
  margin-bottom: 14px;
}

/* Overview row with sticky booking widget */
.overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .overview { grid-template-columns: 1.6fr 1fr; gap: 64px; }
}

.overview__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.overview__location {
  color: var(--ink-500);
  margin-bottom: 16px;
}
.overview__location svg { vertical-align: -3px; margin-right: 4px; }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 22px 0;
  margin: 18px 0 28px;
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
}
.facts li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.facts ul { padding: 0; margin: 0; display: contents; }

.fact-pill {
  background: var(--sand-100);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-600);
}

/* Highlights cards */
.highlights {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px) { .highlights { grid-template-columns: repeat(3, 1fr); } }
.highlight {
  background: var(--sand-50);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--sand-200);
}
.highlight__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sea-100);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--sea-600);
  margin-bottom: 12px;
}
.highlight h3 { font-size: 1.25rem; margin-bottom: 6px; }
.highlight p { font-size: 0.95rem; margin: 0; }

/* Booking widget */
.booking-card {
  position: sticky;
  top: 96px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,.04);
}
.booking-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.booking-card__price b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
}
.booking-card__price span { color: var(--ink-500); font-size: 0.95rem; }
.booking-card__rating {
  color: var(--ink-700);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.date-cell {
  padding: 12px 14px;
}
.date-cell + .date-cell { border-left: 1px solid var(--ink-300); }
.date-cell label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.date-cell input,
.guest-input {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  padding: 4px 0 0;
  width: 100%;
}
.date-cell input:focus-visible,
.guest-input:focus-visible {
  outline: 2px solid var(--sea-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.guest-cell {
  border: 1px solid var(--ink-300);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  border: 0;
  transition: transform .12s ease, background .15s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sea-500), var(--sea-600));
  color: var(--white);
  width: 100%;
  box-shadow: 0 6px 20px rgba(74,138,115,.28);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: var(--sand-100);
  color: var(--ink-900);
}
.btn-ghost:hover { background: var(--sand-200); }

.booking-card__meta {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-500);
  text-align: center;
}

/* ============================================
   Amenities
   ============================================ */

.amenity-grid {
  display: grid;
  gap: 18px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-200);
  color: var(--ink-700);
}
.amenity svg { color: var(--sea-500); flex-shrink: 0; }

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink-900);
  margin: 40px 0 8px;
}
.category-title:first-of-type { margin-top: 0; }

/* ============================================
   Full gallery page
   ============================================ */

.gallery-grid {
  column-count: 1;
  column-gap: 16px;
}
@media (min-width: 600px) { .gallery-grid { column-count: 2; } }
@media (min-width: 980px) { .gallery-grid { column-count: 3; } }
@media (min-width: 1300px) { .gallery-grid { column-count: 4; } }

.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-100);
  cursor: zoom-in;
  position: relative;
  transition: transform .25s ease;
}
.gallery-grid figure:hover { transform: translateY(-2px); }
.gallery-grid img { transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,28,25,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.9);
  border: 0;
  border-radius: 999px;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink-900);
  font-family: inherit;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================
   Location page — map placeholder
   ============================================ */

.map-card {
  background: linear-gradient(135deg, var(--sea-100), var(--sand-100));
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--sand-200);
}
.map-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.poi-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px) { .poi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .poi-grid { grid-template-columns: repeat(3, 1fr); } }
.poi {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.poi:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.poi__time {
  display: inline-flex;
  align-items: center; gap: 6px;
  background: var(--sea-100);
  color: var(--sea-600);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.poi h3 { font-size: 1.2rem; margin-bottom: 4px; }
.poi p { font-size: 0.92rem; margin: 0; color: var(--ink-500); }

/* ============================================
   Banner with image
   ============================================ */

.banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  margin: 0 24px;
  max-width: 1240px;
}
@media (min-width: 1280px) { .banner { margin: 0 auto; } }
.banner__media { position: absolute; inset: 0; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(31,39,36,.65) 10%, rgba(31,39,36,.1) 70%);
}
.banner__body {
  position: relative;
  padding: 48px;
  max-width: 540px;
}
.banner__body h2 { color: var(--white); font-style: italic; }
.banner__body p { color: rgba(255,255,255,.92); }

/* ============================================
   Forms (contact / boeken)
   ============================================ */

.form-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .form-card { padding: 48px; } }

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-sm);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sea-400);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ============================================
   House rules page
   ============================================ */

.rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 56px 0 32px;
  border-top: 1px solid var(--sand-200);
}
.rule {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--sand-200);
  align-items: start;
}
@media (min-width: 720px) {
  .rule { grid-template-columns: 96px 1fr; gap: 32px; padding: 36px 0; }
}
.rule__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--sea-400);
}
@media (min-width: 720px) { .rule__num { font-size: 3.2rem; } }
.rule__body h3 {
  margin: 6px 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink-900);
}
@media (min-width: 720px) { .rule__body h3 { font-size: 1.7rem; } }
.rule__body p {
  margin: 0;
  color: var(--ink-700);
  max-width: 60ch;
}

.rules-cta {
  margin: 48px auto 0;
  max-width: 720px;
  background: linear-gradient(135deg, var(--sea-100), var(--sand-100));
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
}
.rules-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.rules-cta p {
  margin-bottom: 20px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.78);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea-200);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-img {
  display: block;
  max-width: 220px;
  height: auto;
  margin: -16px 0 8px -8px;
  background: var(--sand-100);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 6px 0; }
.footer-grid a { color: rgba(255,255,255,.78); transition: color .15s ease; }
.footer-grid a:hover { color: var(--sea-200); }
.footer-social {
  display: flex !important;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  padding-top: 4px !important;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover {
  background: var(--sea-400);
  color: var(--ink-900);
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.divider {
  height: 1px;
  background: var(--sand-200);
  border: 0;
  margin: 64px 0;
}

/* Fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Accessibility — focus, skip-link, reduced motion
   ============================================ */

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--sea-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.lang-switch a:focus-visible,
.nav a:focus-visible {
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 8px;
  outline: 2px solid var(--sea-400);
  outline-offset: 2px;
}

/* Reserve space for injected header/footer to avoid CLS */
[data-slot="header"] { min-height: 72px; display: block; }
[data-slot="footer"] { min-height: 360px; display: block; }

/* Make gallery thumbnails keyboard-accessible buttons */
.gallery-grid figure { cursor: zoom-in; }
.gallery-grid figure:focus-visible {
  outline: 3px solid var(--sea-500);
  outline-offset: 4px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   FAQ page
   ============================================ */

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 56px 0 32px;
  border-top: 1px solid var(--sand-200);
}
.faq {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--sand-200);
  align-items: start;
}
@media (min-width: 720px) {
  .faq { grid-template-columns: 96px 1fr; gap: 32px; padding: 36px 0; }
}
.faq__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--sea-400);
}
@media (min-width: 720px) { .faq__num { font-size: 3.2rem; } }
.faq__body h3 {
  margin: 6px 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink-900);
}
@media (min-width: 720px) { .faq__body h3 { font-size: 1.7rem; } }
.faq__body p {
  margin: 0;
  color: var(--ink-700);
  max-width: 68ch;
}

/* ============================================
   Editorial info-block (forwho, vshotel, why, distances, pricing)
   ============================================ */

.editorial-block {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 48px auto 0;
  max-width: 880px;
}
@media (min-width: 720px) {
  .editorial-block { padding: 44px 48px; }
}
.editorial-block__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea-500);
  margin-bottom: 12px;
}
.editorial-block h2,
.editorial-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 12px;
  color: var(--ink-900);
}
@media (min-width: 720px) {
  .editorial-block h2,
  .editorial-block h3 { font-size: 2rem; }
}
.editorial-block p {
  margin: 0;
  color: var(--ink-700);
  max-width: 65ch;
}
.editorial-block p + p { margin-top: 12px; }

/* Distances table — clean numeric stripe */
.distances-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--sand-200);
}
@media (min-width: 600px) {
  .distances-table { grid-template-columns: 1fr 1fr; }
}
.distances-table .dist {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 4px;
  border-bottom: 1px solid var(--sand-200);
  color: var(--ink-700);
  font-size: 0.95rem;
}
.distances-table .dist b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================
   Cookie banner — discreet bottom-right card
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  z-index: 90;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner__title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--ink-900);
  margin: 0 0 8px;
  line-height: 1.2;
}

.cookie-banner__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0 0 16px;
}

.cookie-banner__more {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--sea-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 14px;
}
.cookie-banner__more:hover { color: var(--sea-600); }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 9px 18px;
  font-size: 0.85rem;
  width: auto;
}
.cookie-banner .btn-primary {
  width: auto;
  box-shadow: 0 4px 14px rgba(74,138,115,.22);
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 18px 20px;
  }
  .cookie-banner.is-hidden {
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
  .cookie-banner.is-hidden {
    transform: none;
  }
}
