/* ============================================================
   CASA MARIO · casa-mario.it
   Design: Scandi-Toscan Editorial
   2026 — Premium vacation rental
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --dark:        #1C1411;
  --terra:       #C5683C;
  --terra-light: #D4845C;
  --terra-dark:  #A04F2A;
  --blue:        #7B9DC4;
  --beige:       #E8DDD0;
  --beige-dark:  #D4C4B0;
  --white:       #FFFFFF;
  --muted:       #8A7A6E;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --nav-h:       88px;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   48px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── Grain Film Overlay ─────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%,100%{ transform:translate(0,0) }
  10%    { transform:translate(-4%,-8%) }
  20%    { transform:translate(-12%, 4%) }
  30%    { transform:translate( 6%,-20%) }
  40%    { transform:translate(-4%, 20%) }
  50%    { transform:translate(-12%, 8%) }
  60%    { transform:translate( 12%, 0%) }
  70%    { transform:translate( 0%, 12%) }
  80%    { transform:translate( 2%, 28%) }
  90%    { transform:translate(-8%, 8%) }
}

/* ── Custom Cursor ──────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .cursor__dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-out), width 0.3s, height 0.3s;
  }

  .cursor__ring {
    position: absolute;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  }

  .cursor.is-hovering .cursor__ring {
    width: 56px; height: 56px;
    opacity: 0.7;
  }
}

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow--light { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
  /* Always readable: subtle gradient behind nav items */
  background: linear-gradient(to bottom, rgba(28,20,17,0.35) 0%, transparent 100%);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(28,20,17,0.08);
}

.nav.scrolled .nav__link { color: var(--dark) !important; }
.nav.scrolled .lang-switcher__btn { color: var(--dark) !important; }

.nav__logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.25));
  transition: opacity 0.2s;
}
.nav__logo:hover img { opacity: 0.8; }

.nav__menu {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover::after { width: 100%; }

.nav.on-hero .nav__link { color: rgba(255,255,255,0.85); }
.nav.on-hero .nav__link::after { background: rgba(255,255,255,0.7); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher */
.lang-switcher { position: relative; }

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.lang-switcher__btn:hover { background: rgba(197, 104, 60, 0.08); }
.nav.on-hero .lang-switcher__btn { color: rgba(255,255,255,0.85); }
.nav.on-hero .lang-switcher__btn:hover { background: rgba(255,255,255,0.12); }

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(28,20,17,0.12);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-switcher__dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.lang-switcher__dropdown button:hover { background: var(--beige); }

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s var(--ease-out), box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(197,104,60,0.35);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.on-hero .nav__hamburger span { background: rgba(255,255,255,0.9); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,20,17,0.5) 0%, transparent 20%),
    linear-gradient(to top, rgba(28,20,17,0.8) 0%, rgba(28,20,17,0.4) 35%, transparent 65%),
    linear-gradient(to right, rgba(28,20,17,0.55) 0%, rgba(28,20,17,0.1) 55%, transparent 80%);
}

.hero__content {
  position: absolute;
  bottom: clamp(80px, 12vh, 160px);
  left: clamp(24px, 6vw, 100px);
  max-width: 720px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.hero__headline em {
  font-style: italic;
  font-weight: 300;
}

.hero__headline strong {
  font-style: normal;
  font-weight: 600;
  color: var(--terra-light);
}

.hero__line {
  display: block;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.hero__meta {
  position: absolute;
  bottom: clamp(28px, 5vh, 48px);
  right: clamp(24px, 6vw, 60px);
}

.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hero__rating-score {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.hero__rating-stars {
  font-size: 0.8rem;
  color: var(--terra-light);
  letter-spacing: 0.1em;
}

.hero__rating-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee ────────────────────────────────────────────────── */
.marquee {
  background: var(--dark);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
}

.marquee__item {
  font-size: clamp(0.7rem, 1.4vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 40px;
}

.marquee__item em {
  color: var(--terra-light);
  font-style: normal;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }

/* ── Ratings Bar ────────────────────────────────────────────── */
.ratings-bar {
  background: var(--beige);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 8vw, 120px);
}

.ratings-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
}

.ratings-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ratings-bar__score {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.ratings-bar__score--stars {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--terra);
  letter-spacing: 0.08em;
}

.ratings-bar__sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ratings-bar__divider {
  width: 1px;
  height: 80px;
  background: var(--beige-dark);
}

/* ── Bento Section ──────────────────────────────────────────── */
.bento-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.bento-section__header {
  margin-bottom: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Bento grid — editorial asymmetric layout */
.bento-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 440px 300px;
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--beige-dark);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.bento-item:hover img { transform: scale(1.04); }

.bento-item--hero {
  grid-column: 1;
  grid-row: 1;
}

.bento-item--b {
  grid-column: 2;
  grid-row: 1 / 3;
}

.bento-item--c {
  grid-column: 1;
  grid-row: 2;
  /* Split into 2 sub-items via own grid */
}

/* Actually make c and d side by side in row 2 */
.bento-grid {
  grid-template-columns: 3fr 1.2fr 1.2fr;
  grid-template-rows: 440px 300px;
}

.bento-item--hero { grid-column: 1 / 2; grid-row: 1; }
.bento-item--b    { grid-column: 2 / 4; grid-row: 1; }
.bento-item--c    { grid-column: 1 / 2; grid-row: 2; }
.bento-item--d    { grid-column: 2 / 3; grid-row: 2; }
.bento-item--e    { grid-column: 3 / 4; grid-row: 2; }

.bento-item__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Amenities strip */
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 52px);
  padding-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--beige-dark);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
}

.amenity svg { color: var(--terra); flex-shrink: 0; }

/* ── Story Section ──────────────────────────────────────────── */
.story-section {
  position: relative;
  background: var(--terra);
  color: var(--white);
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}

.story-section__bg-word {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 28vw, 24rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.story-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.story-section__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--white);
  max-width: 9ch;
  word-break: normal;
  overflow-wrap: normal;
}

.story-section__body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 520px;
}

.story-section__body em {
  font-style: italic;
  color: rgba(255,255,255,1);
  font-family: var(--font-serif);
  font-size: 1.05em;
}

.story-section__signature {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.story-section__photo {
  position: relative;
}

.story-section__photo img {
  width: 100%;
  height: clamp(420px, 55vw, 640px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  filter: brightness(0.95) contrast(1.02);
}

.story-section__photo-caption {
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ── Experience Section ─────────────────────────────────────── */
.experience-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.experience-section__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige);
  display: flex;
  flex-direction: column;
}

.exp-card--color { background: var(--blue); }
.exp-card--dark  { background: var(--dark); }

.exp-card__num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}

.exp-card__img {
  height: 260px;
  overflow: hidden;
  background: var(--beige-dark);
  flex-shrink: 0;
}

.exp-card__img img,
.exp-card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.exp-card__img--video {
  position: relative;
  overflow: hidden;
}

.exp-card:hover .exp-card__img img { transform: scale(1.06); }

.exp-card--color .exp-card__img {
  background: rgba(123,157,196,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-card--dark .exp-card__img {
  background: rgba(255,255,255,0.05);
}

.exp-card__body {
  padding: 24px 24px 28px;
  flex: 1;
}

.exp-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--dark);
}

.exp-card--color .exp-card__body h3,
.exp-card--dark  .exp-card__body h3 { color: var(--white); }

.exp-card__body p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
}

.exp-card--color .exp-card__body p { color: rgba(255,255,255,0.75); }
.exp-card--dark  .exp-card__body p { color: rgba(250,247,242,0.6); }

/* ── Reviews Section ────────────────────────────────────────── */
.reviews-section {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}

.reviews-section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.reviews-section .section-title { color: var(--white); }
.reviews-section .eyebrow { color: var(--terra-light); justify-content: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.review-card:hover {
  border-color: rgba(197,104,60,0.3);
  background: rgba(197,104,60,0.06);
}

.review-card--featured {
  grid-column: 1;
  background: var(--terra);
  border-color: transparent;
}

.review-card__stars {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
}

.review-card--featured .review-card__stars { color: rgba(255,255,255,0.9); }

.review-card__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  flex: 1;
}

.review-card--featured .review-card__text {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

.review-card--featured cite { color: rgba(255,255,255,0.75); }

.review-card__platform {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── Services Section ───────────────────────────────────────── */
.services-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
  max-width: 1400px;
  margin: 0 auto;
}

.services-section__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,20,17,0.08);
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

/* ── Booking Section ────────────────────────────────────────── */
.booking-section {
  background: var(--beige);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}

.booking-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.booking-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.booking-section__sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.booking-section__widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(28,20,17,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

#beds24Frame {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.booking-section__platforms {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.platform-link {
  color: var(--terra);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.platform-link:hover { color: var(--terra-dark); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  border-top: 2px solid var(--terra);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 80px) clamp(32px, 4vw, 48px);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.footer__logo {
  height: clamp(48px, 7vw, 72px);
  width: auto;
}

.footer__location {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-family: var(--font-body);
}

.footer__nav {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}

.footer__nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.72;
  transition: opacity 0.2s;
}
.footer__nav a:hover { opacity: 1; }

/* Two-column split: contact | map */
.footer__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  text-align: left;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

.footer__email {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--terra); }

.footer__address {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(28,20,17,0.5);
  font-style: normal;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer__social-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.3;
}

.footer__social-links { display: flex; gap: 12px; }

.footer__social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--dark);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.footer__social-links a:hover { opacity: 1; }

/* Google Maps iframe — styled to match site palette */
.footer__map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 4px 24px rgba(28,20,17,0.10);
  border: 1px solid rgba(197,104,60,0.15);
}

/* Warm terra overlay — sits on top of map, doesn't block clicks */
.footer__map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(197, 104, 60, 0.07);
  pointer-events: none;
  z-index: 1;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Desaturate + warm up to match cream/terra palette */
  filter: sepia(0.45) saturate(0.6) brightness(1.08) contrast(0.88);
}

.footer__divider {
  height: 1px;
  background: rgba(28,20,17,0.1);
  margin: 0 0 clamp(20px, 3vw, 28px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__legal {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  color: rgba(28,20,17,0.3);
}

/* ── GSAP Initial States ────────────────────────────────────── */
[data-gsap="line"] > * {
  display: block;
  transform: translateY(110%);
}

[data-gsap="eyebrow"],
[data-gsap="meta"],
[data-gsap="scroll"] {
  opacity: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: 1fr 1fr; }
  .review-card--featured { grid-column: 1 / 3; }
  .story-section__layout { grid-template-columns: 1fr; }
  .story-section__photo { display: block; }
  .story-section__bg-word { font-size: clamp(8rem, 22vw, 16rem); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }

  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    padding: 32px 24px;
    gap: 24px;
    z-index: 99;
  }

  .nav__menu.is-open .nav__link {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--dark) !important;
  }

  .hero__headline { font-size: clamp(3rem, 14vw, 5rem); }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-item--hero { grid-column: 1 / 3; height: 280px; }
  .bento-item--b    { grid-column: 1; height: 220px; }
  .bento-item--c    { grid-column: 2; height: 220px; }
  .bento-item--d    { grid-column: 1; height: 200px; }
  .bento-item--e    { grid-column: 2; height: 200px; }

  .experience-grid  { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .review-card--featured { grid-column: 1; }

  .ratings-bar__inner { gap: 28px; }
  .ratings-bar__divider { height: 40px; }

  .footer__nav ul { gap: 10px 20px; }
  .footer__split  { grid-template-columns: 1fr; }
  .footer__map    { height: 200px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .amenities { gap: 16px; }
  /* Keep rating as trust signal on mobile, just compact it */
  .hero__rating { gap: 8px; padding: 6px 10px; }
  .hero__rating-score { font-size: 0.95rem; }
  .hero__rating-stars { font-size: 0.7rem; }
  .hero__rating-label { font-size: 0.62rem; }
}

/* ── Accessibility ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scroll-driven reveal classes ───────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}


/* ══════════════════════════════════════════════════════════════════
   CONVERSION POLISH — hero price, trust strip, sticky mobile CTA
   ══════════════════════════════════════════════════════════════════ */

/* Hero: vanaf-prijs naast de rating */
.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-left: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
}
.hero__price-from  { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.75; }
.hero__price-amount{ font-size: 1.05rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.hero__price-unit  { font-size: 0.7rem; opacity: 0.75; }

/* Trust strip — zit direct boven booking widget */
.trust-strip {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 20px;
  max-width: 820px;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(197, 104, 60, 0.06);
  border: 1px solid rgba(197, 104, 60, 0.18);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.3;
}
.trust-strip svg {
  flex-shrink: 0;
  color: var(--terra);
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sticky mobile CTA — alleen <= 900px en niet wanneer booking section in view */
.sticky-book {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--terra, #C5683C);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(28, 20, 17, 0.25), 0 2px 6px rgba(197, 104, 60, 0.3);
  text-decoration: none;
  font-family: var(--font-body);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.sticky-book.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-book__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.sticky-book__from {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
}
.sticky-book__amount {
  font-size: 1.1rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.sticky-book__unit {
  font-size: 0.7rem;
  opacity: 0.85;
}
.sticky-book__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 100px;
}

@media (max-width: 900px) {
  .sticky-book { display: flex; }
  /* Reserve bottom space so content isn't hidden under the sticky CTA */
  .booking-section { padding-bottom: 80px; }
}

/* Trust strip on mobile: single column */
@media (max-width: 600px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* Hero price: drop below rating on tight screens */
@media (max-width: 520px) {
  .hero__price { margin-left: 0; margin-top: 8px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════════ */

.faq-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px);
  max-width: 960px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 20, 17, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(197, 104, 60, 0.25);
  transform: translateY(-1px);
}
.faq-item[open] {
  background: #fff;
  border-color: rgba(197, 104, 60, 0.35);
  box-shadow: 0 4px 14px rgba(28, 20, 17, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--terra);
  border: 1px solid rgba(197, 104, 60, 0.3);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(28, 20, 17, 0.75);
}

@media (max-width: 640px) {
  .faq-item summary { font-size: 0.92rem; padding: 16px 18px; }
  .faq-item p { font-size: 0.86rem; padding: 0 18px 18px; }
}


/* ══════════════════════════════════════════════════════════════════
   WHY BOOK DIRECT — comparison table
   ══════════════════════════════════════════════════════════════════ */

.why-direct {
  max-width: 880px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
}

.why-direct__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.why-direct__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin: 12px 0 0;
  letter-spacing: -0.01em;
}

.why-direct__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 20, 17, 0.08);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-body);
}

.why-direct__table th,
.why-direct__table td {
  padding: 14px 18px;
  font-size: 0.92rem;
  text-align: left;
  border-bottom: 1px solid rgba(28, 20, 17, 0.06);
}
.why-direct__table tr:last-child th,
.why-direct__table tr:last-child td { border-bottom: 0; }

.why-direct__table thead th {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(28, 20, 17, 0.55);
  background: rgba(28, 20, 17, 0.03);
}

.why-direct__table tbody td {
  color: rgba(28, 20, 17, 0.7);
}

.why-direct__col-direct {
  background: rgba(197, 104, 60, 0.06);
  border-left: 1px solid rgba(197, 104, 60, 0.15);
  border-right: 1px solid rgba(197, 104, 60, 0.15);
  position: relative;
}
.why-direct__table thead .why-direct__col-direct {
  color: var(--terra);
  font-weight: 600;
  background: rgba(197, 104, 60, 0.1);
}
.why-direct__table tbody .why-direct__col-direct {
  color: var(--dark);
}
.why-direct__table tbody .why-direct__col-direct strong {
  color: var(--terra);
  font-weight: 600;
}

.why-direct__badge {
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 4px;
  background: var(--terra);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}
.why-direct__col-direct span:not(.why-direct__badge) {
  display: block;
  margin-top: 2px;
}

.why-direct__total td {
  background: rgba(197, 104, 60, 0.08);
  font-size: 1.05rem;
}
.why-direct__total .why-direct__col-direct strong {
  font-size: 1.15rem;
}

@media (max-width: 600px) {
  .why-direct__table th,
  .why-direct__table td {
    padding: 11px 12px;
    font-size: 0.82rem;
  }
}
