/* ============================================================================
   ISLA DE ORO BONAIRE — DESIGN SYSTEM
   Kleuren en fonts komen 1-op-1 uit de merk-guide in Canva.
   ============================================================================ */

:root {
  /* --- Merk-kleuren (Canva brand guide) --- */
  --cream:       #fcf9f2;  /* Ligt beige   */
  --beige:       #f7f3e8;  /* Beige        */
  --sand:        #f4e8b8;  /* Light yellow */
  --steel:       #5a7489;  /* donker oceaanblauw */
  --blue:        #899dbb;  /* endless blue */
  --ink:         #2a2a2a;  /* charcoal     */
  --gold:        #b28f56;  /* goud-accent (sieraden) */
  --gold-soft:   #cdb083;

  --ink-70: rgba(42, 42, 42, .72);
  --ink-55: rgba(42, 42, 42, .55);
  --line:   rgba(42, 42, 42, .14);
  --line-2: rgba(42, 42, 42, .08);

  /* --- Type ---
     Cormorant Garamond staat model voor het merk-font 'Kudryashev Display'.
     Zet Kudryashev vooraan zodra je die (legaal) hebt. */
  --serif: 'Kudryashev Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Ritme ---
     Royale verticale maat en een strakke, vierkante vormentaal (geen ronde
     hoeken): architectuur in plaats van webshop-template. */
  --wrap: 1280px;
  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --section: clamp(5.5rem, 11vw, 11rem);
  --radius: 0px;
  --shadow-s: 0 2px 12px rgba(42,42,42,.07);
  --shadow-m: 0 30px 70px -30px rgba(42,42,42,.35);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 104px;
  /* paginatop: met kruimelpad levert dat blok de ruimte onder de header */
  --top-offset: var(--header-h);
  --page-top: clamp(2.5rem, 6vw, 5rem);
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--sand); color: var(--ink); }

/* --------------------------- Typografie ---------------------------------
   Editorial serif: normaal gewicht, strakke regelafstand en licht negatieve
   letterspatiëring — groot maar rustig, zoals een modemagazine. */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: .98; letter-spacing: -.015em; }
.display   { font-size: clamp(3.2rem, 8vw, 7rem); font-weight: 500; }
.h-section { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 500; }
.h-sub     { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: clamp(1.2rem, 2.4vw, 2rem); }
p { max-width: 62ch; }

/* klein functioneel kapitaal-label (nav, meta, knoppen) */
.micro { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }

/* ----------------------------- Layout ----------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--slim { padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.6rem); }
.section-head p { margin-top: 1rem; color: var(--ink-70); }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

.bg-beige { background: var(--beige); }

/* ----------------------------- Buttons ----------------------------------
   Vierkant en architecturaal: kapitaaltjes, royale padding, kleur-inversie
   bij hover. Geen pillen, geen schaduw. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 500;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05rem 2.2rem; border-radius: 0;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
/* Alle knoppen zijn glossy (frosted glass): op foto's de lichte variant
   (.btn--glass), op crème/beige de ink-variant. */
.btn--solid, .btn--outline {
  color: var(--ink); background: rgba(255,255,255,.34); border-color: rgba(42,42,42,.32);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 30px -16px rgba(42,42,42,.28);
}
.btn--solid:hover, .btn--outline:hover { background: rgba(255,255,255,.6); border-color: rgba(42,42,42,.6); }
.btn--glass {
  color: var(--cream); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 30px -14px rgba(0,0,0,.45);
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
}
.btn--glass:hover { background: rgba(255,255,255,.3); border-color: rgba(255,255,255,.85); }
.btn--glass-ink {
  color: var(--ink); background: rgba(255,255,255,.34); border-color: rgba(42,42,42,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 30px -16px rgba(42,42,42,.28); text-shadow: none;
}
.btn--glass-ink:hover { background: rgba(255,255,255,.6); border-color: rgba(42,42,42,.6); }
.btn--ghost { padding-inline: 0; border-radius: 0; letter-spacing: .16em; position: relative; }
.btn--ghost::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(.55); transform-origin: left; opacity: .5;
  transition: transform .5s var(--ease), opacity .3s;
}
.btn--ghost:hover::after { transform: scaleX(1); opacity: 1; }

/* =============================== HEADER ================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-inline: var(--gutter);
  max-width: 1560px; margin-inline: auto;
}
.brand { display: block; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; transition: opacity .3s, filter .3s, height .3s var(--ease); }
.brand:hover .brand-logo { opacity: .7; }
.site-header.scrolled .brand-logo { height: 38px; }

.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.7rem); }
.main-nav a {
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; line-height: 1;
  font-weight: 500; position: relative; padding-block: .5rem; color: var(--ink);
  display: inline-flex; align-items: center; white-space: nowrap; transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

/* Collecties-dropdown (desktop): collecties + productcategorieën */
.nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.nav-item > a { display: inline-flex; align-items: center; gap: .45rem; }
.nav-caret { width: 9px; height: 6px; margin-top: 1px; transition: transform .35s var(--ease); }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.mega {
  /* top = onderkant van de header: het menu-item staat verticaal in het midden
     van de header, dus header-hoogte/2 + halve item-hoogte */
  position: absolute; top: calc(var(--header-h) / 2 + 50%); left: 50%; transform: translate(-50%, 8px);
  display: block; min-width: 250px;
  padding: 1.5rem 2.2rem 1.6rem; color: var(--ink);
  background: rgba(252,249,242,.7); border: 1px solid rgba(255,255,255,.65);
  -webkit-backdrop-filter: blur(18px) saturate(1.35); backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 26px 60px -26px rgba(42,42,42,.35);
  white-space: nowrap; z-index: 120;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
}
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -44px; height: 44px; } /* brug om met de muis van menu-item naar dropdown te komen */
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-item.is-closing .mega { opacity: 0; visibility: hidden; pointer-events: none; }
.mega__group + .mega__group { margin-top: .8rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.site-header .main-nav .mega a,
.site-header.over-hero:not(.scrolled) .main-nav .mega a {
  display: block; color: var(--ink); font-family: var(--serif); font-size: 1.22rem; font-weight: 500;
  letter-spacing: 0; text-transform: none; padding: .28rem 0; transition: color .25s, transform .35s var(--ease);
}
.site-header .main-nav .mega a::after { display: none; }
.site-header .main-nav .mega a:hover { color: var(--steel); transform: translateX(5px); }
.site-header .main-nav .mega a.mega__feature { padding: 0; font-size: 1.1rem; line-height: 1.2; }
.mega__feature img { width: 170px; height: 190px; object-fit: cover; margin-bottom: .6rem; }
.mega__feature .micro { display: block; color: var(--gold); font-family: var(--sans); font-size: .6rem; margin-bottom: .15rem; }

/* Taal-switch: NL | EN */
.lang-switch { display: flex; align-items: center; gap: .55rem; }
.lang-switch button {
  font-size: .78rem; letter-spacing: .12em; font-weight: 500;
  color: var(--ink-55); padding: .55rem .35rem; position: relative;
  transition: color .3s;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active { color: var(--ink); font-weight: 600; }
.lang-switch button.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
}
.lang-switch__sep { color: var(--line); font-size: .8rem; }

/* Header boven de foto-hero: licht op donkere foto */
.site-header.over-hero:not(.scrolled) { background: transparent; }
.site-header.over-hero:not(.scrolled) .main-nav a { color: var(--cream); }
.site-header.over-hero:not(.scrolled) .lang-switch button { color: rgba(252,249,242,.7); }
.site-header.over-hero:not(.scrolled) .lang-switch button:hover,
.site-header.over-hero:not(.scrolled) .lang-switch button.is-active { color: var(--cream); }
.site-header.over-hero:not(.scrolled) .lang-switch__sep { color: rgba(252,249,242,.4); }
.site-header.over-hero:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.site-header.over-hero:not(.scrolled) .nav-burger span { background: var(--cream); }

.site-header.scrolled {
  background: rgba(252,249,242,.58);
  -webkit-backdrop-filter: blur(18px) saturate(1.35); backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.55), 0 12px 34px -22px rgba(42,42,42,.35);
  border-bottom: 1px solid rgba(42,42,42,.06);
}

.nav-burger { display: none; width: 30px; height: 22px; position: relative; }
.nav-burger::after { content: ''; position: absolute; inset: -11px -9px; } /* onzichtbaar groter tikvlak */
.nav-burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease);
}
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 10px; }
.nav-burger span:nth-child(3) { top: 18px; }
body.nav-open .nav-burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ============================ FOTO-HERO ================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
}
.hero__img { position: absolute; inset: 0; }
.hero__img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 12s var(--ease) forwards;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,42,42,.34) 0%, transparent 22%),
    linear-gradient(2deg, rgba(42,42,42,.62) 0%, rgba(42,42,42,.22) 34%, transparent 58%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 9vh, 7rem); width: 100%; }
.hero__trust {
  display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem;
  color: rgba(252,249,242,.92); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
}
.hero__trust .stars { color: var(--sand); letter-spacing: .12em; font-size: .8rem; }
.hero__trust:hover { color: var(--cream); }
.hero .display { margin: 0 0 1.3rem; max-width: 14ch; text-shadow: 0 2px 34px rgba(0,0,0,.25); }
.hero__sub { max-width: 46ch; color: rgba(252,249,242,.94); font-size: 1.12rem; font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.4rem; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* collectie-spotlight: in dezelfde rij als de hero-knop, verticaal gecentreerd */
.hero__spot {
  margin-left: auto; z-index: 3;
  display: flex; align-items: center; gap: 1.1rem;
  background: rgba(255,255,255,.14); color: var(--cream);
  border: 1px solid rgba(255,255,255,.45);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 20px 50px -24px rgba(0,0,0,.5);
  padding: .9rem; padding-right: 1.6rem; max-width: 340px;
  transition: background .35s, border-color .35s;
}
.hero__spot:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.75); }
.hero__spot img { width: 84px; height: 84px; object-fit: cover; }
.hero__spot .micro { color: var(--sand); display: block; margin-bottom: .3rem; }
.hero__spot strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1; display: block; }
.hero__spot .spot-arrow { margin-left: auto; font-size: 1.1rem; transition: transform .4s var(--ease); }
.hero__spot:hover .spot-arrow { transform: translateX(4px); }

/* ============================ USP STRIP ================================ */
.usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.usp { text-align: center; }
.usp h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.usp p { color: var(--ink-70); font-size: .95rem; margin-inline: auto; max-width: 34ch; }

/* ==================== FEATURED — editorial photo rows =================== */
.featured { display: grid; gap: clamp(4rem, 8vw, 7.5rem); }
.feat-row {
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.feat-row--flip .feat-cluster { order: 2; }

.feat-cluster { position: relative; padding-bottom: clamp(2.5rem, 5vw, 4rem); padding-right: clamp(2rem, 4vw, 3.5rem); }
.feat-cluster__main {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}
.feat-cluster__main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feat-cluster:hover .feat-cluster__main img { transform: scale(1.04); }
.feat-cluster__detail {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; z-index: 2;
  overflow: hidden; border-radius: var(--radius);
  padding: clamp(5px, .7vw, 9px);
  background: rgba(252,249,242,.5); border: 1px solid rgba(255,255,255,.75);
  -webkit-backdrop-filter: blur(14px) saturate(1.25); backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 24px 50px -24px rgba(42,42,42,.45);
}
.feat-row--flip .feat-cluster { padding-right: 0; padding-left: clamp(2rem, 4vw, 3.5rem); }
.feat-row--flip .feat-cluster__detail { right: auto; left: 0; }
.feat-cluster__detail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-cluster a { position: absolute; inset: 0; z-index: 3; }

.feat-body .feat-year { font-size: .76rem; letter-spacing: .22em; color: var(--ink-55); text-transform: uppercase; }
.feat-body > h3 { font-size: clamp(2.6rem, 4.6vw, 4rem); margin-top: .4rem; }
.feat-tag { font-style: italic; color: var(--steel); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); margin: .35rem 0 1.2rem; font-weight: 500; }
.feat-body p { color: var(--ink-70); margin-bottom: 1.9rem; }

/* ======================== COLLECTIE-COVERS GRID ========================= */
.grid-collections { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.grid-collections--two { grid-template-columns: repeat(2, 1fr); }
.grid-products { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1.8rem, 3vw, 2.6rem) clamp(.9rem, 1.5vw, 1.35rem); }

.card { display: block; position: relative; }
.card__media {
  position: relative; overflow: hidden;
  background: var(--beige); aspect-ratio: 1/1;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter .6s; }
.card:hover .card__media img { transform: scale(1.04); filter: brightness(1.03); }
.card__media .card__alt { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s var(--ease), transform 1.4s var(--ease); }
.card:hover .card__media .card__alt { opacity: 1; }
.grid-collections--three { grid-template-columns: repeat(3, 1fr); }

.card__badge {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: rgba(252,249,242,.94);
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  padding: .45rem .85rem; color: var(--ink-55);
}
.card__badge--gold { color: var(--gold); }

.card__body { padding: 1rem .05rem .2rem; }
.card__title { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.12; display: inline-block; position: relative; }
.card__title::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease); opacity: .55;
}
.card:hover .card__title::after { transform: scaleX(1); }
.card__meta { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); margin-top: .35rem; }

/* collectie-kaarten blijven staand, met naam op de foto */
.collection-card .card__media { aspect-ratio: 3/4; }
.collection-card .card__media::after {
  content: ''; position: absolute; inset: 40% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(42,42,42,.44));
}
.collection-card .card__on {
  position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; z-index: 2; color: var(--cream);
}
.collection-card .card__on h3 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); font-weight: 500; text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.collection-card .card__on span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; opacity: .92; }

/* ========================== GALLERY STRIP =============================== */
.strip-section { overflow: hidden; }
/* diepe oceaan-band: het ene donkere moment op de homepage */
.strip-section--steel {
  background: linear-gradient(170deg, #4d667c 0%, var(--steel) 55%, #46607593 100%), var(--steel);
  color: var(--cream);
}
.strip-section--steel .h-section { color: var(--cream); }
.strip {
  display: flex; gap: clamp(.8rem, 1.6vw, 1.3rem);
  overflow-x: auto; padding: .5rem var(--gutter) 1.2rem;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip__item {
  position: relative; flex: 0 0 auto; height: clamp(300px, 44vw, 460px);
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
}
.strip__item--p { aspect-ratio: 4/5; }
.strip__item--l { aspect-ratio: 3/2; }
.strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.strip__item:hover img { transform: scale(1.05); }
.strip__tag {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 2;
  background: rgba(252,249,242,.92); color: var(--ink); border-radius: 100px;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: .42rem .85rem; display: inline-flex; align-items: center; gap: .45rem;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s var(--ease);
}
.strip__item:hover .strip__tag { opacity: 1; transform: none; }

/* ===================== COLLECTIE-PAGINA (foto-hero) ===================== */
.chero { position: relative; margin-top: var(--header-h); }
.chero__img { position: relative; height: clamp(320px, 52vh, 560px); overflow: hidden; }
.chero__img img { width: 100%; height: 100%; object-fit: cover; }
.chero__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(3deg, rgba(42,42,42,.55) 0%, rgba(42,42,42,.15) 40%, transparent 62%);
}
.chero__on { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; color: var(--cream); padding-bottom: clamp(1.6rem, 4vw, 3rem); }
.chero__on .display { font-size: clamp(2.8rem, 6.4vw, 5.4rem); text-shadow: 0 2px 30px rgba(0,0,0,.3); margin-top: .5rem; }
.chero__intro { padding-top: clamp(1.8rem, 4vw, 3rem); }
.chero__intro p { color: var(--ink-70); margin-top: .9rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); transition: color .3s; }
.back-link:hover { color: var(--ink); }

/* categorie-anker-navigatie op collectiepagina's */
.cat-nav {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0; margin-top: clamp(1.8rem, 4vw, 3rem);
}
.cat-nav a { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; color: var(--ink-55); position: relative; transition: color .3s; }
.cat-nav a:hover { color: var(--ink); }
.cat-nav a span { color: var(--gold); margin-left: .35rem; font-weight: 400; }
.cat-group { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* campagne-galerij (masonry-achtig) */
.campaign { columns: 3; column-gap: 1.1rem; }
.campaign a, .campaign div { break-inside: avoid; display: block; margin-bottom: 1.1rem; position: relative; border-radius: var(--radius); overflow: hidden; }
.campaign img { width: 100%; transition: transform 1.1s var(--ease); }
.campaign a:hover img { transform: scale(1.045); }
.campaign .strip__tag { position: absolute; left: .8rem; bottom: .8rem; }
.campaign a:hover .strip__tag { opacity: 1; transform: none; }

/* categorie-kaarten (zelfde stijl als collectie-covers, iets lager) */
.category-card .card__media { aspect-ratio: 4/3; }
.cat-group .h-sub a { color: inherit; }

/* eerlijke materiaalnoot (Viva) */
.note { font-size: .92rem; color: var(--ink-70); border-left: 2px solid var(--gold-soft); padding: .35rem 0 .35rem 1rem; margin-top: 1.2rem; max-width: 62ch; }

/* paginabrede fotoband: witte tekst links, glazen knop (B2B, Over Isla de Oro) */
.band { position: relative; isolation: isolate; display: grid; align-items: center; min-height: clamp(440px, 62vh, 680px); color: var(--cream); overflow: hidden; }
.band__img { position: absolute; inset: 0; z-index: -2; }
.band__img img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(42,42,42,.66) 0%, rgba(42,42,42,.38) 48%, rgba(42,42,42,.1) 100%),
              linear-gradient(180deg, rgba(42,42,42,.22), transparent 32%);
}
.band__inner { padding-block: clamp(3.5rem, 8vw, 6rem); }
.band__inner h2 { color: var(--cream); max-width: 13ch; margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.band__inner p { color: rgba(252,249,242,.9); max-width: 44ch; margin-bottom: 1.9rem; font-size: 1.06rem; }

/* contactpagina: paginabrede foto, witte tekst, glazen formulier */
.contact { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem)); }
.contact--photo { position: relative; isolation: isolate; color: var(--cream); min-height: 100vh; }
.contact__bg { position: absolute; inset: 0; z-index: -2; }
.contact__bg picture { display: block; width: 100%; height: 100%; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.contact--photo::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(42,42,42,.58) 0%, rgba(42,42,42,.46) 45%, rgba(42,42,42,.62) 100%);
}
.contact--photo .display { color: var(--cream); text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.contact--photo .contact__intro > p, .contact--photo .contact__info, .contact--photo .contact__info small { color: rgba(252,249,242,.88); }
.contact--photo .contact__info li > span:first-child { color: rgba(252,249,242,.65); }
.contact--photo .contact__info a { color: var(--cream); border-bottom-color: rgba(252,249,242,.4); }
.contact--photo .contact__info a:hover { border-bottom-color: var(--cream); }
.glass-panel {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.25); backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 30px 70px -34px rgba(0,0,0,.55);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.contact--photo .contact__form { padding-top: clamp(1.5rem, 3vw, 2.4rem); }
.contact--photo .glass-panel { background: rgba(28,34,40,.34); border-color: rgba(255,255,255,.34); }
.contact--photo .contact__form-title { color: var(--cream); }
.contact--photo .field label { color: rgba(252,249,242,.9); }
.contact--photo .contact__form .field input, .contact--photo .contact__form .field textarea, .contact--photo .contact__form .field select {
  color: var(--cream); background-color: transparent; border-bottom-color: rgba(252,249,242,.5); caret-color: var(--cream);
}
.contact--photo .field input::placeholder, .contact--photo .field textarea::placeholder { color: rgba(252,249,242,.5); }
.contact--photo .contact__form .field input:focus, .contact--photo .contact__form .field textarea:focus, .contact--photo .contact__form .field select:focus { border-bottom-color: var(--cream); }
.contact--photo .contact__form .field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(252,249,242,.85) 50%), linear-gradient(135deg, rgba(252,249,242,.85) 50%, transparent 50%);
}
.contact--photo .field select option { color: var(--ink); background: var(--cream); }
.contact--photo .contact__form .field input:-webkit-autofill,
.contact--photo .contact__form .field input:-webkit-autofill:hover,
.contact--photo .contact__form .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream); caret-color: var(--cream);
  -webkit-background-clip: text; background-clip: text;
  transition: background-color 9999s ease-out 0s;
}
.contact--photo .form-error { color: #ffc2b8; }
.contact--photo .form-success, .contact--photo .form-success h2, .contact--photo .form-success p { color: var(--cream); }
.contact__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 430px); gap: clamp(2.5rem, 8vw, 7rem); align-items: start; }
.contact__intro > p { color: var(--ink-70); margin: 1.1rem 0 2.2rem; max-width: 42ch; }
.contact__info { display: grid; gap: .6rem; font-size: .96rem; }
.contact__info li { display: grid; grid-template-columns: 6.5rem 1fr; align-items: baseline; gap: .5rem; }
.contact__info li > span:first-child { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); font-weight: 500; }
.contact__info a { border-bottom: 1px solid var(--line); transition: border-color .3s; }
.contact__info a:hover { border-color: var(--ink); }
.contact__info a.ic { display: inline-flex; align-items: center; gap: .4rem; }
.contact__info a.ic svg { width: 15px; height: 15px; }
.contact__info small { color: var(--ink-55); font-size: .84rem; margin-left: .3rem; }
.contact__form { padding-top: clamp(.4rem, 2vw, 1.4rem); }
.contact__form .field { margin-bottom: 1.3rem; }
.contact__form .field label { margin-bottom: .1rem; }
.contact__form .field input, .contact__form .field textarea, .contact__form .field select {
  background-color: transparent; border: 0; border-bottom: 1px solid rgba(42,42,42,.28); padding: .5rem 0;
}
.contact__form .field select { padding-right: 1.6rem; background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%; }
.contact__form .field textarea { min-height: 110px; }
.contact__form .field input:focus, .contact__form .field textarea:focus, .contact__form .field select:focus { box-shadow: none; border-bottom-color: var(--ink); }
.contact__form .btn { width: 100%; margin-top: .4rem; }
.field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 0; padding: .8rem .9rem;
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-55) 50%), linear-gradient(135deg, var(--ink-55) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field select:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 3px rgba(90,116,137,.14); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* tekstpagina's (FAQ, verzorging, juridisch) */
.prose-page { padding-top: calc(var(--top-offset) + var(--page-top)); }
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2.2rem 0 .7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-70); margin-bottom: .9rem; }
.faq { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.1rem 2.2rem 1.1rem 0; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); display: inline; }
.faq__item summary::after { content: '+'; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.6rem; color: var(--steel); transition: transform .35s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 0 1.3rem; }
.faq__a p { color: var(--ink-70); max-width: 62ch; }

/* 'binnenkort' pagina */
.coming-hero { min-height: 76vh; display: grid; place-items: center; text-align: center; padding-top: var(--top-offset); background: linear-gradient(170deg, var(--cream), var(--beige) 60%, var(--sand)); }
.coming-hero .display { max-width: 14ch; margin-inline: auto; }
.coming-hero .feat-tag { margin: .8rem 0 1rem; }
.coming-hero p { color: var(--ink-70); margin: 0 auto 2rem; }

/* ============================ PRODUCT DETAIL =========================== */
.product { padding-top: calc(var(--top-offset) + var(--page-top)); }
.product__layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: start; }
.product__gallery { position: sticky; top: calc(var(--header-h) + 1.2rem); }
.product__main-img { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--beige); box-shadow: var(--shadow-m); }
.product__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs { display: flex; gap: .7rem; margin-top: .8rem; }
.product__thumbs button { width: 82px; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); opacity: .65; transition: opacity .3s, border-color .3s; position: relative; padding: 0; }
.product__thumbs button.is-active, .product__thumbs button:hover { opacity: 1; border-color: var(--steel); }
.product__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product__info h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.product__desc { margin: 1.4rem 0; color: var(--ink-70); font-size: 1.08rem; }
.product__specs { border-top: 1px solid var(--line); margin: 1.6rem 0; }
.product__specs .row { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.product__specs .row dt { flex: 0 0 34%; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; color: var(--ink-55); padding-top: .2rem; }
.product__specs .row dd { color: var(--ink); }

.avail-box { background: var(--beige); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.1rem); margin-top: 1.5rem; }
.avail-box h3 { font-size: 1.7rem; }
.avail-box p { color: var(--ink-70); font-size: .96rem; margin: .5rem 0 1.2rem; }

/* ============================== LOCATIONS ============================== */
.map-layout {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .9fr);
  grid-template-areas: "map intro" "map list"; grid-template-rows: auto 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem); row-gap: clamp(1.4rem, 2.5vw, 2rem); align-items: stretch;
}
.loc-intro { grid-area: intro; padding-top: 0; }
.loc-intro h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); margin-bottom: .9rem; }
.loc-intro p { color: var(--ink-70); max-width: 40ch; }
.map-layout .map-stage { grid-area: map; }
.map-layout .loc-list { grid-area: list; }
.map-stage {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(90% 80% at 20% 15%, rgba(252,249,242,.35), transparent 55%),
    linear-gradient(168deg, #dfe9f2 0%, #cfdde9 55%, #bfd1e0 100%);
  border-radius: 0; padding: clamp(1rem, 3vw, 2.2rem); overflow: hidden;
  box-shadow: var(--shadow-s);
}
.map-stage::before { /* subtiele zee-textuur */
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(90,116,137,.13) 1px, transparent 1.5px);
  background-size: 14px 14px; opacity: .55;
}
.map-svg { position: relative; width: 100%; height: 100%; overflow: visible; }
.map-island { stroke: var(--gold-soft); stroke-width: .7; filter: drop-shadow(0 12px 16px rgba(60,80,95,.22)); }
.map-klein { stroke: var(--gold-soft); stroke-width: .7; filter: drop-shadow(0 6px 10px rgba(60,80,95,.18)); }
.map-label { font-family: var(--sans); font-size: 2.6px; letter-spacing: .12em; text-transform: uppercase; fill: rgba(90,116,137,.8); font-weight: 500; }
.map-name { font-family: var(--serif); font-size: 5.4px; fill: rgba(90,116,137,.45); font-style: italic; letter-spacing: .06em; }

.pin { position: absolute; transform: translate(-50%, -100%); z-index: 3; }
.pin__btn { position: relative; display: block; width: 34px; height: 34px; }
.pin__dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(45deg);
  background: var(--steel); border: 2px solid var(--cream);
  box-shadow: 0 4px 10px rgba(42,60,74,.35); transition: transform .35s var(--ease), background .3s;
  border-radius: 50% 50% 50% 0; width: 22px; height: 22px;
}
.pin__pulse { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 50%; transform: translate(-50%,-50%); background: rgba(90,116,137,.35); animation: pulse 2.6s var(--ease) infinite; }
.pin__label {
  position: absolute; left: 50%; top: -6px; transform: translate(-50%,-100%);
  background: var(--ink); color: var(--cream); font-size: .66rem; letter-spacing: .08em;
  padding: .3rem .6rem; border-radius: 0; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; text-transform: uppercase;
}
.pin__label::after { content:''; position:absolute; left:50%; bottom:-4px; transform:translateX(-50%); border:5px solid transparent; border-top-color: var(--ink); }
.pin:hover .pin__label, .pin.is-active .pin__label { opacity: 1; transform: translate(-50%,-115%); }
.pin:hover .pin__dot { transform: translate(-50%,-58%) scale(1.14); }
.pin.is-active .pin__dot { background: var(--gold); transform: translate(-50%,-58%) scale(1.18); }
.pin.is-active .pin__pulse { background: rgba(178,143,86,.4); }
@keyframes pulse { 0% { transform: translate(-50%,-50%) scale(.6); opacity: .7; } 100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; } }

.loc-list { display: grid; grid-auto-rows: 1fr; align-self: stretch; border-top: 1px solid var(--line); }
.loc-item {
  text-align: left; width: 100%; padding: 1rem .3rem 1rem .9rem; border-bottom: 1px solid var(--line);
  display: flex; gap: .9rem; align-items: center; cursor: pointer; background: transparent;
  box-shadow: inset 2px 0 0 transparent; transition: background .3s, box-shadow .3s;
}
.loc-item:hover { background: rgba(247,243,232,.6); }
.loc-item.is-active { background: rgba(247,243,232,.9); box-shadow: inset 2px 0 0 var(--gold); }
.loc-item__content { display: flex; flex-direction: column; gap: .1rem; flex: 1; }
.loc-item__num { font-family: var(--serif); font-size: 1.05rem; color: var(--steel); line-height: 1; flex: 0 0 auto; width: 1.1rem; }
.loc-item.is-active .loc-item__num { color: var(--gold); }
.loc-item__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; line-height: 1.15; }
.loc-item__addr { font-size: .86rem; color: var(--ink-70); }
.loc-item__note { font-size: .84rem; color: var(--ink-55); font-style: italic; }
.loc-item__maps { align-self: flex-start; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-top: .35rem; border-bottom: 1px solid rgba(90,116,137,.35); padding-bottom: .05rem; }
.loc-item__maps:hover { color: var(--gold); border-color: rgba(178,143,86,.5); }
.map-hint { position: absolute; left: 0; right: 0; bottom: .9rem; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(90,116,137,.7); text-align: center; pointer-events: none; }

/* ================================ ABOUT ================================ */
.about { padding-top: calc(var(--top-offset) + var(--page-top)); }
.about__layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.about__portrait { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-m); }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__body h1, .about__body h2 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); margin-bottom: 1.3rem; }
.about__body p { color: var(--ink-70); margin-bottom: 1.1rem; font-size: 1.06rem; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--steel); margin-top: 1.3rem; font-weight: 600; }

/* =============================== REVIEWS =============================== */
.reviews { padding-top: calc(var(--top-offset) + var(--page-top)); }
.reviews__stars { color: var(--gold); font-size: 1.5rem; letter-spacing: .22em; margin: 1rem 0; }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin: 2.5rem 0; }
.review-card { background: var(--beige); border-radius: var(--radius); padding: 1.9rem; text-align: left; }
.review-card__quote { font-family: var(--serif); font-size: 3.2rem; color: var(--blue); line-height: 1; height: 1.5rem; }
.review-card p { font-size: 1rem; color: var(--ink-70); margin: .6rem 0 1rem; font-style: italic; }
.review-card__name { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); font-weight: 600; }
.reviews__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ======================= GOOGLE REVIEWS ================================= */
.rv-stars {
  font-size: 1.75rem; letter-spacing: .14em; line-height: 1;
  background: linear-gradient(90deg, var(--gold) var(--pct, 100%), rgba(42,42,42,.16) var(--pct, 100%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rv-text { display: inline-flex; align-items: baseline; gap: .45rem; }
.rv-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.rv-score { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.rv-count { color: var(--ink-55); font-size: .85rem; }
.rv-link { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--ink); border: 1px solid rgba(42,42,42,.4); padding: .78rem 1.35rem; transition: background .3s, color .3s, border-color .3s; }
.rv-link:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* =============================== FOOTER ================================ */
.site-footer {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--cream); color: var(--ink-70); padding-top: clamp(3rem,6vw,5rem);
}
/* tropische foto (palm en lucht) + frosted crème-laag erover */
.site-footer::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: url('../assets/collections/brisa-dorada/05.webp') center 14% / cover no-repeat;
}
.site-footer::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(252,249,242,.8) 0%, rgba(252,249,242,.72) 55%, rgba(252,249,242,.86) 100%);
  -webkit-backdrop-filter: blur(6px) saturate(1.1); backdrop-filter: blur(6px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.footer-logo { height: 26px; width: auto; opacity: .95; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .95rem; max-width: 30ch; color: var(--ink-55); }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); margin-bottom: 1rem; font-weight: 600; }
.footer-col a { display: block; font-size: .95rem; color: var(--ink-70); padding: .28rem 0; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--ink); padding-left: 4px; }
.social-links { display: flex; flex-direction: column; }
.social-links a { display: inline-flex; align-items: center; gap: .55rem; }
.social-links svg { width: 16px; height: 16px; flex: 0 0 auto; opacity: .85; }
.footer-bottom { border-top: 1px solid rgba(42,42,42,.12); margin-top: 3rem; padding: 1.4rem var(--gutter); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--ink-55); max-width: var(--wrap); margin-inline: auto; }
.footer-made { font-style: italic; }

/* =============================== MODAL ================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(42,42,42,.55); backdrop-filter: blur(4px); padding: 1.2rem;
  opacity: 0; animation: fadeIn .3s var(--ease) forwards;
}
.modal {
  background: var(--cream); border-radius: 0; width: min(530px, 100%); max-height: 92vh; overflow: auto;
  padding: clamp(1.6rem, 4vw, 2.6rem); position: relative; box-shadow: var(--shadow-m);
  transform: translateY(14px); animation: rise .4s var(--ease) forwards;
}
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; display: grid; place-items: center; transition: background .3s; font-size: 1.2rem; }
.modal__close:hover { background: var(--beige); }
.modal h3 { font-size: 1.95rem; }
.modal #modalContent > p { color: var(--ink-70); font-size: .96rem; margin: .5rem 0 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); margin-bottom: .4rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 3px rgba(90,116,137,.14); }
.field textarea { resize: vertical; min-height: 84px; }
.field--product { background: var(--beige); border-radius: var(--radius); padding: .8rem 1rem; display: flex; align-items: center; gap: .8rem; }
.field--product .plabel { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); font-weight: 600; }
.field--product .pname { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.modal__actions { display: flex; gap: .8rem; margin-top: 1.4rem; }
.modal__actions .btn--solid { flex: 1; justify-content: center; }
.form-error { color: #a4443a; font-size: .86rem; margin-top: .4rem; }
.form-success { text-align: center; padding: 1rem 0; }
.form-success__hint { font-size: .9rem; color: var(--ink-55); }
.contact--photo .form-success p.form-success__hint { color: rgba(252,249,242,.78); }
.form-success h3 { margin-bottom: .6rem; }
.form-success p { color: var(--ink-70); font-size: .96rem; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes rise { to { transform: translateY(0); } }

/* ============================ MOBILE MENU ============================== */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: rgba(252,249,242,.74);
  -webkit-backdrop-filter: blur(22px) saturate(1.35); backdrop-filter: blur(22px) saturate(1.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 30px 70px -30px rgba(42,42,42,.45);
  border-top: 1px solid rgba(255,255,255,.5);
  transform: translateY(-102%); transition: transform .5s var(--ease); padding: 1.4rem var(--gutter) 3rem;
  display: flex; flex-direction: column; opacity: 0; pointer-events: none; overflow-y: auto;
}
body.nav-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu > a, .mm-toggle {
  display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500; padding: .6rem 0; border-bottom: 1px solid var(--line-2);
}
.mm-toggle span { font-size: 1.5rem; color: var(--steel); transition: transform .35s var(--ease); }
.mm-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.mm-sub { display: grid; grid-template-columns: 1fr; gap: 1.2rem; padding: 1rem 0 1.3rem; border-bottom: 1px solid rgba(42,42,42,.1); }
.mm-sub[hidden] { display: none; }
.mm-sub a { display: block; font-size: 1rem; padding: .3rem 0; }
.mobile-menu a.is-active, .mm-toggle.is-active { color: var(--steel); }

/* ============================ REVEAL ANIM ============================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== SHOP-KOP / MERKNOTE / OVER-ONS-CTA ================ */
.shop-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: .8rem 2rem; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.shop-head .h-section, .shop-head .h-sub { margin-bottom: 0; }
.shop-head p { color: var(--ink-70); margin-top: .7rem; }
.shop-more { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.cat-nav--top { margin-top: 0; margin-bottom: clamp(2rem, 4vw, 3rem); }



/* Liggende telefoon (laag scherm): anders valt de herotitel onder de header. */
@media (orientation: landscape) and (max-height: 540px) {
  .hero { min-height: 540px; }
  .hero__inner { padding-top: calc(var(--header-h) + 1rem); padding-bottom: clamp(2rem, 6vh, 3.5rem); }
  .coming-hero { padding-top: calc(var(--header-h) + 2rem); }
}

/* Zichtbare toetsenbordfocus in merkkleur. */
:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; }
.site-header.over-hero:not(.scrolled) :focus-visible,
.band :focus-visible, .contact--photo :focus-visible, .crumbs--over :focus-visible { outline-color: var(--cream); }

/* ===================== KRUIMELPAD (breadcrumbs) =========================
   Staat op elke pagina behalve home, altijd op dezelfde hoogte: direct onder
   de vaste header. Op pagina's die met een foto beginnen zweeft het licht
   over de foto, zodat de foto paginabreed blijft. */
#app { position: relative; display: flow-root; } /* flow-root: marges van kinderen lekken niet door, zodat het zwevende kruimelpad op 0 start */
body.has-crumbs { --top-offset: 0px; --page-top: clamp(1.2rem, 2.6vw, 2.2rem); }
.crumbs { padding-top: var(--header-h); }
.crumbs__inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: .1rem .55rem; min-height: 52px;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-70); font-weight: 500;
}
.crumbs a, .crumbs__here { display: inline-block; padding-block: .5rem; }
.crumbs a { color: var(--ink-70); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: color .3s, border-color .3s; }
.crumbs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.crumbs__here { color: var(--ink); }
.crumbs__sep { opacity: .45; }
.crumbs--over { position: absolute; left: 0; right: 0; top: 0; z-index: 6; pointer-events: none; }
.crumbs--over .crumbs__inner { color: rgba(252,249,242,.85); pointer-events: auto; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.crumbs--over a { color: rgba(252,249,242,.85); }
.crumbs--over a:hover { color: var(--cream); border-bottom-color: rgba(252,249,242,.7); }
.crumbs--over .crumbs__here { color: var(--cream); }

/* ============================== SITEMAP ================================= */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.8rem, 4vw, 3.5rem); margin-top: clamp(2rem, 4vw, 3.2rem); }
.sitemap-col h2 { font-size: 1.45rem; margin-bottom: .9rem; }
.sitemap-col ul { display: grid; gap: .5rem; }
.sitemap-col a { color: var(--ink-70); border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.sitemap-col a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.sitemap-col li.is-sub { padding-left: .9rem; font-size: .92rem; }
.sitemap-col li.is-sub::before { content: '—'; color: var(--ink-55); margin-right: .4rem; }

/* ===================== ACCENTEN / NIEUWE ONDERDELEN ===================== */
/* blauwe cursieve subtitel — spaarzaam gebruiken */
.accent { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--steel); font-size: clamp(1.2rem, 1.9vw, 1.5rem); line-height: 1.3; }
a.accent--link { border-bottom: 1px solid rgba(90,116,137,.35); transition: color .3s, border-color .3s; }
a.accent--link:hover { color: var(--ink); border-color: var(--ink); }

.usp__link { display: inline-block; margin-top: .7rem; padding-block: .4rem; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); border-bottom: 1px solid rgba(90,116,137,.35); padding-bottom: .05rem; transition: color .3s; }
.usp__link:hover { color: var(--ink); }

/* Bali Inspired: uitgelicht op de Brisa Dorada-pagina, producten eronder */
.bali-section { scroll-margin-top: calc(var(--header-h) + 1rem); }
/* tekst bovenaan uitgelijnd met de foto's, de twee producten eronder in de tekstkolom */
.bali-section .feat-row { align-items: start; }
.bali-section .feat-body { padding-top: 0; }
.bali-section .bali-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; margin-top: clamp(1.4rem, 2.6vw, 2.2rem); max-width: 460px; }
.bali-section .feat-cluster:hover .feat-cluster__main img { transform: none; }

/* 'Gezien op het eiland' — horizontale carrousel */
.slider-section .section-head .h-sub { margin-bottom: .55rem; }
.slider { position: relative; }
.slider__track {
  display: flex; gap: clamp(.7rem, 1.2vw, 1.1rem); overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-inline: var(--gutter); scrollbar-width: none; overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__item { position: relative; flex: 0 0 clamp(250px, 29vw, 440px); aspect-ratio: 1 / 1; overflow: hidden; scroll-snap-align: start; scroll-margin-inline: var(--gutter); background: var(--cream); }
.slider__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); user-select: none; }
.slider__item:hover img { transform: scale(1.04); }
.slider__tag {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%); white-space: nowrap;
  background: rgba(252,249,242,.95); color: var(--ink); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  padding: .7rem 1.1rem; opacity: 0; pointer-events: none; transition: opacity .35s, transform .35s var(--ease);
}
.slider__item:hover .slider__tag { opacity: 1; transform: translate(-50%, -50%); }
.slider__btn {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: clamp(44px, 5vw, 62px); height: clamp(44px, 5vw, 62px); border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  background: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.65);
  -webkit-backdrop-filter: blur(12px) saturate(1.3); backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 10px 30px -16px rgba(42,42,42,.35);
  transition: background .3s;
}
.slider__btn:hover { background: rgba(255,255,255,.6); }
.slider__btn svg { width: 20px; height: 20px; }
.slider__btn--prev { left: clamp(.5rem, 2vw, 1.8rem); }
.slider__btn--next { right: clamp(.5rem, 2vw, 1.8rem); }
@media (hover: none) { .slider__tag { opacity: 1; transform: none; left: .7rem; right: .7rem; top: auto; bottom: .7rem; white-space: normal; text-align: center; } }

/* Alle sieraden: rustige kop + compacte filter */
.jewelry__head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.jewelry__head p { color: var(--ink-70); margin-top: .8rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filter-row button {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--ink-70);
  padding: .6rem 1.05rem; background: rgba(255,255,255,.34); border: 1px solid rgba(42,42,42,.22);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: background .3s, color .3s, border-color .3s;
}
.filter-row button:hover { color: var(--ink); background: rgba(255,255,255,.62); border-color: rgba(42,42,42,.45); }
.filter-row button.is-active { color: var(--cream); background: rgba(42,42,42,.86); border-color: rgba(42,42,42,.86); }

/* Footer: Google Reviews onder het logo + social-iconen */
.footer-reviews { display: inline-flex; flex-direction: column; gap: .35rem; margin-top: .3rem; }
.footer-reviews .rv-stars { font-size: 1.2rem; background: linear-gradient(90deg, var(--gold) var(--pct, 100%), rgba(42,42,42,.18) var(--pct, 100%)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-reviews .rv-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); transition: color .3s; }
.footer-reviews:hover .rv-label { color: var(--ink); }
.footer-reviews .rv-score { font-family: var(--serif); font-size: 1rem; letter-spacing: 0; color: var(--ink); margin-left: .4rem; }
.footer-reviews .rv-count { color: var(--ink-55); }
.social-icons { display: flex; gap: .55rem; margin-top: .9rem; }
.footer-col .social-icons a { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: var(--ink); border: 1px solid rgba(42,42,42,.25); background: rgba(255,255,255,.34); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: background .3s, border-color .3s, color .3s; }
.footer-col .social-icons a:hover { padding-left: 0; background: var(--steel); border-color: var(--steel); color: var(--cream); }
.social-icons svg { width: 17px; height: 17px; }

/* Over ons: sfeerbeeld met onderschrift */

/* Contact: kleine titel boven het formulier */
.contact__form-title { font-size: clamp(1.45rem, 2.2vw, 1.8rem); margin-bottom: 1.1rem; }

/* ============================ RESPONSIVE =============================== */
@media (max-width: 1080px) {
  .grid-collections { grid-template-columns: repeat(2, 1fr); }
  .campaign { columns: 2; }
}
@media (max-width: 980px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .about__layout, .product__layout, .map-layout, .contact__layout { grid-template-columns: 1fr; }
  .product__gallery { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about__portrait { max-width: 480px; }
  .feat-row { grid-template-columns: 1fr; gap: 2rem; }
  .feat-row--flip .feat-cluster { order: 0; }
}
@media (max-width: 600px) { .hero__spot { display: none; } }
@media (max-width: 760px) {
  :root { --header-h: 84px; }
  .crumbs__inner { min-height: 46px; font-size: .68rem; letter-spacing: .12em; }
  .sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-logo { height: 36px; }
  .site-header.scrolled .brand-logo { height: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .usps { grid-template-columns: 1fr; gap: 2rem; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .campaign { columns: 2; column-gap: .8rem; }
  .strip__item { height: clamp(260px, 60vw, 380px); }
  /* ruimere tikdoelen en meer ruimte tussen de kaartspeldjes op touch */
  .filter-row button { padding: .8rem 1.1rem; }
  .footer-col a { padding: .5rem 0; }
  .cat-nav { gap: .3rem 1.6rem; }
  .cat-nav a { display: inline-block; padding-block: .45rem; }
  .loc-item__maps { padding-block: .45rem; }
  .map-stage { padding: .7rem; }
  .pin__btn { width: 30px; height: 30px; }
  .product__thumbs button { width: 68px; }
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; padding-inline: 1.5rem; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .grid-collections, .grid-collections--two { grid-template-columns: 1fr; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 1.5rem .8rem; }
  .card__title { font-size: 1.05rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .campaign { columns: 1; }
}

/* ---- aanvullende breakpoints ---- */
/* Tot 980px past het volledige menu niet naast het logo: dan de hamburger. */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 1180px) and (min-width: 981px) { .grid-products { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 980px) {
  .map-layout { grid-template-columns: 1fr; grid-template-areas: "intro" "map" "list"; grid-template-rows: auto; }
  .contact__layout { grid-template-columns: 1fr; }
  /* telefoon en tablet hebben een eigen, staande achtergrondfoto */
  .contact__bg img { object-position: 38% 45%; }
  /* contactgegevens op telefoon en tablet in hetzelfde glazen vlak als het formulier */
  .contact--photo .contact__info {
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.42);
    -webkit-backdrop-filter: blur(18px) saturate(1.25); backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 30px 70px -34px rgba(0,0,0,.55);
    padding: 1.1rem 1.2rem; gap: .9rem;
  }
  .contact__form { max-width: 520px; }
  .band { min-height: clamp(420px, 74vh, 600px); align-items: end; }
  .band__inner { padding-block: 3rem 2.4rem; }
  .band__img img { object-position: center 20% !important; }
  .band::after { background: linear-gradient(180deg, rgba(42,42,42,.18) 0%, rgba(42,42,42,.3) 40%, rgba(42,42,42,.72) 100%); }
}
@media (max-width: 760px) {
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .grid-collections--three { grid-template-columns: 1fr 1fr; }
  .slider__item { flex-basis: 76vw; }
}
@media (max-width: 460px) {
  .grid-collections--three { grid-template-columns: 1fr; }
  .contact__info li { grid-template-columns: 5.4rem 1fr; }
}


/* ============ RESPONSIVE-FIXES (13 sept) ==================================
   Uit de meetronde over alle pagina's op 320–1920px: miniaturen mochten niet
   afbreken, en een aantal links/knoppen was te klein om goed aan te tikken. */
.product__thumbs { flex-wrap: wrap; }
.back-link { display: inline-flex; align-items: center; padding-block: .4rem; }
.crumbs a, .crumbs__here { padding-block: .6rem; }
/* hamburger: zelfde streepjes, maar een volwaardig tikvlak van 44x44 */
.nav-burger { width: 44px; height: 44px; }
.nav-burger::after { content: none; }
.nav-burger span { left: 7px; width: 30px; }
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
body.nav-open .nav-burger span:nth-child(1) { top: 21px; }
body.nav-open .nav-burger span:nth-child(3) { top: 21px; }
@media (max-width: 760px) {
  .contact__info a { display: inline-block; padding-block: .35rem; }
  .contact__info li > span:first-child { font-size: .7rem; }
  .map-hint { font-size: .68rem; }
  .sitemap-col a { display: inline-block; padding-block: .35rem; }
  .usp__link { padding-block: .5rem; }
  .loc-item__name { font-size: 1.22rem; }
  .accent--link { display: inline-block; padding-block: .35rem; }
  .btn--ghost:not(.btn) { display: inline-block; padding-block: .4rem; }
}
