/* ============================================================
   MASPALOMAS RESORT BY DUNAS — marketing site
   Eigen, ingetogen palet (zand / zee-blauw / navy), losser van
   Corendon. Gebouwd op de Corendon Design System tokens, opnieuw
   gewogen. Serif koppen (Spectral) + Mulish body.
   ============================================================ */

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/Spectral-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ---- Palet ---- */
  --navy:        #102E4A;
  --navy-700:    #0B2238;
  --navy-soft:   #1C3F5E;
  --sea:         #0E7FB0;   /* iets dieper dan corendon-sea, ingetogener */
  --sea-600:     #0A6890;
  --sea-700:     #085571;
  --sea-tint:    #E7F2F7;
  --sun:         #F4B731;   /* sterren / ratings */
  --sun-soft:    #FBE7B0;
  --terra:       #BC6B43;   /* warm secundair accent — eyebrows, lijnen */
  --terra-soft:  #E9D3C3;

  --sand:        #FBF6EC;   /* paginakleur */
  --sand-200:    #F3EAD9;   /* alt secties */
  --sand-300:    #ECE0C9;   /* randen op zand */

  --ink-900:     #14213A;
  --ink-700:     #3A4658;
  --ink-500:     #667085;
  --ink-400:     #98A2B3;
  --ink-300:     #D0D5DD;
  --ink-200:     #E6E2D8;   /* warme rand */
  --ink-100:     #F2F4F7;
  --white:       #FFFFFF;

  /* ---- Type ---- */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Radius ---- */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 20px;  --r-xl: 28px;  --r-pill: 999px;

  /* ---- Schaduw ---- */
  --sh-sm: 0 1px 3px rgba(16,46,74,.08), 0 1px 2px rgba(16,46,74,.05);
  --sh-md: 0 8px 24px rgba(16,46,74,.10), 0 2px 6px rgba(16,46,74,.06);
  --sh-lg: 0 20px 48px rgba(16,46,74,.16), 0 6px 16px rgba(16,46,74,.08);

  --container: 1180px;
  --header-h: 76px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--sea-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--sea-600); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
strong { font-weight: 700; color: var(--ink-900); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--sand { background: var(--sand-200); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.82); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--terra); display: inline-block; }
.eyebrow.is-light { color: var(--sun); }
.eyebrow.is-light::before { background: var(--sun); }
.eyebrow.no-rule::before { display: none; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.18rem; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--ink-700); }
.muted { color: var(--ink-500); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  padding: 15px 28px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap; line-height: 1; cursor: pointer;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--sea); color: #fff; box-shadow: 0 8px 20px rgba(14,127,176,.28); }
.btn--primary:hover { background: var(--sea-600); color:#fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,127,176,.34); }
.btn--primary:active { transform: translateY(0); background: var(--sea-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--ink-300); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(16,46,74,.04); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sand-200); color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-solid { background: rgba(251,246,236,.92); backdrop-filter: blur(10px); box-shadow: var(--sh-sm); border-bottom-color: var(--ink-200); }

.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; color: var(--navy); }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.32rem; letter-spacing: -.01em; color: var(--navy); }
.brand__sub { font-family: var(--sans); font-weight: 700; font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--terra); }
.site-header:not(.is-solid) .brand__name { color: #fff; }
.site-header:not(.is-solid) .brand__sub { color: var(--sun); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink-700);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .15s, background .15s;
}
.nav a:hover { color: var(--navy); background: rgba(16,46,74,.05); }
.nav a.is-active { color: var(--sea-700); }
.site-header:not(.is-solid) .nav a { color: rgba(255,255,255,.9); }
.site-header:not(.is-solid) .nav a:hover { background: rgba(255,255,255,.14); color:#fff; }
.site-header:not(.is-solid) .nav a.is-active { color: #fff; }
.site-header:not(.is-solid) .nav a.is-active::after { background: var(--sun); }
.nav a.is-active { position: relative; }
.nav a.is-active::after { content:""; position:absolute; left:14px; right:14px; bottom:2px; height:2px; background: var(--sea); border-radius:2px; }

.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: inherit; }
.nav-toggle svg { width: 26px; height: 26px; }
.site-header:not(.is-solid) .nav-toggle { color: #fff; }
.site-header.is-solid .nav-toggle { color: var(--navy); }

/* mobiel paneel */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--white); box-shadow: var(--sh-lg); border-bottom: 1px solid var(--ink-200);
  padding: 14px 24px 26px; display: none; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 600; font-size: 17px; color: var(--navy); padding: 13px 8px; border-bottom: 1px solid var(--ink-100); }
.mobile-nav .btn { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(9,28,46,.80) 0%, rgba(9,28,46,.55) 38%, rgba(9,28,46,.18) 66%, rgba(9,28,46,.10) 100%),
    linear-gradient(180deg, rgba(9,28,46,.55) 0%, rgba(9,28,46,.30) 34%, rgba(9,28,46,.40) 66%, rgba(9,28,46,.78) 100%);
}
.hero__inner { padding-block: 56px clamp(48px, 7vw, 90px); width: 100%; }
.hero__eyebrow { color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; display:inline-flex; gap:.6em; align-items:center; margin-bottom: 22px; }
.hero__eyebrow .star { color: var(--sun); }
.hero h1 { color: #fff; max-width: 16ch; font-weight: 600; text-shadow: 0 2px 24px rgba(6,18,30,.55), 0 1px 3px rgba(6,18,30,.5); }
.hero__sub { max-width: 54ch; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: #fff; margin-top: 22px; line-height:1.55; text-shadow: 0 1px 14px rgba(6,18,30,.55), 0 1px 2px rgba(6,18,30,.45); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 42px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.22); }
.hero__fact { display:flex; align-items:center; gap:10px; font-weight:600; font-size:15px; color:#fff; }
.hero__fact svg { width:20px; height:20px; color: var(--sun); flex:none; }
.hero__fact b { font-family: var(--serif); font-weight:700; font-size:18px; }

/* sterren */
.stars { display: inline-flex; gap: 2px; color: var(--sun); }
.stars svg { width: 1em; height: 1em; }

/* ============================================================
   GENERIC CARD / GRID
   ============================================================ */
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--ink-200); transition: transform .18s ease, box-shadow .18s ease; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--sand-300); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card--hover:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; }
.card__body h3 { margin-bottom: 10px; }
.card__kicker { font-family: var(--sans); font-weight:700; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--terra); margin-bottom: 12px; }

/* feature (icon) item */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--sea-tint); color: var(--sea-700); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h4 { margin-bottom: 6px; }
.feature p { font-size: 15.5px; }

/* checklist */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-700); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--sea); margin-top: 1px; }
.checklist .note { color: var(--ink-400); font-style: italic; font-size: 14px; }

/* split (image + content) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__media.tall img { aspect-ratio: 3/4; }

/* pill row */
.pillrow { display:flex; flex-wrap:wrap; gap:10px; }
.pill { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--ink-200); border-radius:var(--r-pill); padding:9px 16px; font-weight:600; font-size:14.5px; color: var(--navy); }
.pill svg { width:17px; height:17px; color: var(--sea); }
.section--navy .pill { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color:#fff; }
.section--navy .pill svg { color: var(--sun); }

/* badge */
.badge { display:inline-flex; align-items:center; gap:7px; background: var(--sun-soft); color: #7a5a12; font-weight:700; font-size:12.5px; letter-spacing:.04em; padding:7px 14px; border-radius:var(--r-pill); }
.badge--sea { background: var(--sea-tint); color: var(--sea-700); }
.badge--terra { background: var(--terra-soft); color: #6e3c20; }

/* ============================================================
   REVIEWS
   ============================================================ */
.score-hero { display:flex; align-items:center; gap:22px; }
.score-badge { background: var(--sea); color:#fff; border-radius: var(--r-md); padding: 14px 18px; text-align:center; box-shadow: var(--sh-md); }
.score-badge b { font-family: var(--serif); font-size: 2.4rem; font-weight:700; display:block; line-height:1; }
.score-badge span { font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.score-bars { display:grid; grid-template-columns: 1fr 1fr; gap: 12px 36px; }
.score-bar__top { display:flex; justify-content:space-between; font-size:14.5px; font-weight:600; color: var(--ink-700); margin-bottom:5px; }
.score-bar__track { height:7px; border-radius:99px; background: var(--ink-100); overflow:hidden; }
.score-bar__fill { height:100%; border-radius:99px; background: linear-gradient(90deg, var(--sea), var(--sun)); }
.section--navy .score-bar__top { color: rgba(255,255,255,.85); }
.section--navy .score-bar__track { background: rgba(255,255,255,.14); }

.quote { background:#fff; border-radius: var(--r-lg); padding: 30px 30px 26px; box-shadow: var(--sh-sm); border:1px solid var(--ink-200); display:flex; flex-direction:column; gap:16px; height:100%; }
.quote__stars { color: var(--sun); }
.quote__text { font-family: var(--serif); font-size: 1.18rem; line-height:1.5; color: var(--ink-900); font-weight:500; }
.quote__meta { margin-top:auto; font-size:14px; color: var(--ink-500); }
.quote__meta b { color: var(--navy); font-family: var(--sans); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color:#fff; isolation:isolate; }
.cta-band__img { position:absolute; inset:0; z-index:-2; }
.cta-band__img img { width:100%; height:100%; object-fit:cover; }
.cta-band__img::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,34,56,.92), rgba(11,34,56,.74) 55%, rgba(11,34,56,.5)); }
.cta-band .container { position:relative; }
.cta-band h2 { color:#fff; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 52ch; }

/* disclaimer note */
.disclaimer { font-size: 13.5px; color: var(--ink-400); line-height:1.5; }

/* ============================================================
   PAGE HERO (binnen­pagina's, compacter)
   ============================================================ */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 70px); padding-bottom: 70px; color:#fff; isolation:isolate; }
.page-hero__img { position:absolute; inset:0; z-index:-2; }
.page-hero__img img { width:100%; height:100%; object-fit:cover; }
.page-hero__img::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(9,28,46,.72) 0%, rgba(9,28,46,.45) 45%, rgba(9,28,46,.20) 100%), linear-gradient(180deg, rgba(9,28,46,.45), rgba(9,28,46,.38) 40%, rgba(9,28,46,.72)); }
.page-hero h1 { color:#fff; max-width: 18ch; text-shadow: 0 2px 20px rgba(6,18,30,.5), 0 1px 3px rgba(6,18,30,.45); }
.page-hero p { color:#fff; max-width: 56ch; margin-top: 16px; font-size: 1.15rem; text-shadow: 0 1px 12px rgba(6,18,30,.5), 0 1px 2px rgba(6,18,30,.4); }
.breadcrumb { display:flex; flex-wrap:wrap; gap:8px; align-items:center; font-size:13.5px; font-weight:600; letter-spacing:.02em; color: rgba(255,255,255,.78); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.78); }
.breadcrumb a:hover { color:#fff; }
.breadcrumb svg { width:14px; height:14px; opacity:.7; }

/* ============================================================
   ROOM CARD (kamers)
   ============================================================ */
.room { display:grid; grid-template-columns: 1.05fr 1fr; background:#fff; border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--sh-md); border:1px solid var(--ink-200); }
.room--reverse .room__media { order: 2; }
.room__media { position:relative; min-height: 340px; background: var(--sand-300); }
.room__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.room__media .badge { position:absolute; top:18px; left:18px; }
.room__body { padding: clamp(28px, 3.4vw, 46px); }
.room__specs { display:flex; flex-wrap:wrap; gap:8px 10px; margin: 18px 0 22px; }
.room__feats { columns: 2; column-gap: 28px; }
.room__feats li { break-inside: avoid; display:flex; gap:9px; align-items:flex-start; font-size:15px; margin-bottom:9px; color: var(--ink-700); }
.room__feats svg { flex:none; width:18px; height:18px; color: var(--sea); margin-top:3px; }

/* ============================================================
   ALL INCLUSIVE timeline
   ============================================================ */
.ai-list { display:grid; gap:2px; }
.ai-row { display:grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); align-items:baseline; }
.ai-row:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.ai-row__time { font-family: var(--serif); font-weight:600; font-size:1.05rem; color: var(--sun); }
.ai-row__label { color: #fff; font-weight:600; }
.ai-row__label span { display:block; color: rgba(255,255,255,.62); font-weight:400; font-size:14.5px; margin-top:3px; }

/* ============================================================
   GALLERY (foto's)
   ============================================================ */
.gallery { columns: 3; column-gap: 18px; }
.gallery figure { break-inside: avoid; margin: 0 0 18px; border-radius: var(--r-md); overflow:hidden; box-shadow: var(--sh-sm); cursor: zoom-in; position:relative; background: var(--sand-300); }
.gallery img { width:100%; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure::after { content:""; position:absolute; inset:0; background: rgba(16,46,74,0); transition: background .2s ease; }
.gallery figure:hover::after { background: rgba(16,46,74,.12); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,20,33,.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color:#fff; width: 52px; height: 52px; border-radius: 99px; display:grid; place-items:center; transition: background .15s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height:24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ============================================================
   BLOG (ligging)
   ============================================================ */
.article { font-size: 17.5px; line-height: 1.75; }
.article > * + * { margin-top: 22px; }
.article h2 { margin-top: 46px; }
.article h3 { margin-top: 32px; }
.article p { color: var(--ink-700); }
.article ul.dotted { display:grid; gap:10px; margin-top: 8px; }
.article ul.dotted li { position:relative; padding-left: 26px; color: var(--ink-700); }
.article ul.dotted li::before { content:""; position:absolute; left:4px; top:11px; width:8px; height:8px; border-radius:99px; background: var(--terra); }
.article figure { margin: 36px 0; }
.article figure img { width:100%; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.article figcaption { font-size: 13.5px; color: var(--ink-400); margin-top: 10px; text-align:center; font-style: italic; }
.callout { background: var(--sea-tint); border-left: 4px solid var(--sea); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 22px 26px; }
.callout p { color: var(--navy); margin: 0; }

.blog-card { display:flex; flex-direction:column; background:#fff; border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--sh-sm); border:1px solid var(--ink-200); transition: transform .18s, box-shadow .18s; height:100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-card__media { aspect-ratio: 16/10; overflow:hidden; background: var(--sand-300); }
.blog-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 24px 24px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.blog-card__tag { font-family: var(--sans); font-weight:700; font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color: var(--terra); }
.blog-card__body h3 { font-size: 1.3rem; }
.blog-card__more { margin-top:auto; font-weight:700; font-size:14.5px; color: var(--sea-700); display:inline-flex; align-items:center; gap:7px; }
.blog-card__more svg { width:16px; height:16px; transition: transform .15s; }
.blog-card:hover .blog-card__more svg { transform: translateX(3px); }

/* fact grid (ligging afstanden) */
.facts { display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.fact { display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--ink-200); border-radius: var(--r-md); padding: 16px 18px; }
.fact__icon { flex:none; width:42px; height:42px; border-radius:11px; background: var(--sand-200); color: var(--terra); display:grid; place-items:center; }
.fact__icon svg { width:21px; height:21px; }
.fact b { display:block; color: var(--navy); font-family: var(--sans); font-size:15.5px; }
.fact span { font-size:13.5px; color: var(--ink-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-700); color: rgba(255,255,255,.66); padding-top: 64px; }
.site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-brand__name { font-family: var(--serif); font-weight:700; font-size: 1.5rem; color:#fff; }
.footer-brand__sub { font-family: var(--sans); font-weight:700; font-size:9.5px; letter-spacing:.26em; text-transform:uppercase; color: var(--sun); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height:1.6; max-width: 36ch; }
.footer-col h4 { color:#fff; font-family: var(--sans); font-weight:700; font-size: 13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom: 18px; }
.footer-col ul { display:grid; gap: 11px; }
.footer-col a { font-size: 15px; }
.footer-meta { display:flex; align-items:flex-start; gap: 14px; }
.footer-meta svg { width: 19px; height:19px; color: var(--sun); flex:none; margin-top:2px; }
.footer-meta span { font-size:14.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 40px; display:flex; flex-wrap:wrap; gap: 14px 28px; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); margin:0; }
.footer-disclaimer { background: rgba(0,0,0,.18); padding: 20px 0; }
.footer-disclaimer p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; max-width: 90ch; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery { columns: 2; }
}
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .split, .room { grid-template-columns: 1fr; }
  .split--reverse .split__media, .room--reverse .room__media { order: 0; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .room__media { min-height: 260px; aspect-ratio: 3/2; }
  .score-bars { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .room__feats { columns: 1; }
  .ai-row { grid-template-columns: 1fr; gap: 4px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .hero__facts { gap: 14px 20px; }
  .hero { min-height: 88vh; }
}
