/* ============================================================
   Casa Santo Stefano — digital folder
   Modern editorial style
   ============================================================ */

:root {
  --cream:      #f5efe6;
  --cream-deep: #ede4d3;
  --paper:      #faf6ee;
  --ink:        #2a2520;
  --ink-soft:   #5a5147;
  --ink-mute:   #8a8073;
  --terra:      #a8552d;
  --terra-dark: #7a3d20;
  --olive:      #6b6a3c;
  --gold:       #b08a4a;
  --line:       #e2d6bf;
  --line-soft:  #ece3d0;

  --shadow-sm: 0 1px 2px rgba(42, 37, 32, 0.04);
  --shadow-md: 0 2px 8px rgba(42, 37, 32, 0.06), 0 12px 32px rgba(42, 37, 32, 0.07);
  --shadow-lg: 0 4px 16px rgba(42, 37, 32, 0.08), 0 24px 60px rgba(42, 37, 32, 0.12);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1180px;
  --reading:   800px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--terra-dark); }
a:hover { color: var(--terra); }

::selection { background: var(--terra); color: var(--paper); }

.display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

/* ============================================================
   Top bar — sticky, fills on scroll
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
              border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-decoration: none;
  opacity: 0.92;
  transition: color 0.35s var(--ease);
}
.topbar .brand em { font-style: italic; color: #e8c896; }

.topbar.scrolled {
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 12px;
  padding-bottom: 12px;
}
.topbar.scrolled .brand { color: var(--ink); }
.topbar.scrolled .brand em { color: var(--terra); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: rgba(250, 246, 238, 0.18);
  border: 1px solid rgba(250, 246, 238, 0.35);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.topbar.scrolled .lang-toggle {
  background: var(--paper);
  border-color: var(--line);
}
.lang-toggle button {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.topbar.scrolled .lang-toggle button { color: var(--ink-soft); }
.lang-toggle button.active {
  background: var(--terra);
  color: var(--paper) !important;
}

/* ============================================================
   Hero — full bleed, cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-image: linear-gradient(180deg, rgba(42, 37, 32, 0.05) 0%, rgba(42, 37, 32, 0.55) 70%, rgba(42, 37, 32, 0.75) 100%),
    url("../photos/hero-uitzicht.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  padding: 120px clamp(24px, 5vw, 64px) 80px;
  overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(46px, 10vw, 104px);
  line-height: 0.98;
  margin-bottom: 22px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: #e8c896; font-weight: 400; }
.hero p.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.3vw, 26px);
  font-style: italic;
  opacity: 0.94;
  max-width: 540px;
}
.hero .hero-meta {
  position: absolute;
  bottom: 36px;
  right: clamp(24px, 5vw, 64px);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 640px) { .hero .hero-meta { display: none; } }

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2.6s var(--ease) infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   Facts strip — just under hero
   ============================================================ */
.facts {
  background: var(--ink);
  color: var(--cream);
  padding: 28px clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  max-width: 100%;
}
@media (min-width: 720px) {
  .facts { grid-template-columns: repeat(4, 1fr); padding: 36px clamp(24px, 5vw, 56px); }
}
.fact { display: flex; flex-direction: column; gap: 6px; }
a.fact-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease);
}
a.fact-link:hover { transform: translateY(-2px); }
a.fact-link:hover .fact-num span { color: #f0d5a0; }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.fact-num span {
  font-size: 0.45em;
  margin-left: 4px;
  color: #e8c896;
  font-style: italic;
  font-weight: 400;
}
.fact-label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.6);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* ============================================================
   Welcome — editorial intro
   ============================================================ */
.welcome {
  padding: clamp(80px, 12vw, 140px) 24px clamp(40px, 6vw, 60px);
  text-align: center;
  max-width: var(--reading);
  margin: 0 auto;
}
.welcome .ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 28px;
}
.welcome h2 {
  font-size: clamp(38px, 5vw, 56px);
  margin-bottom: 28px;
}
.welcome p {
  color: var(--ink-soft);
  font-size: 17.5px;
  margin-bottom: 16px;
  font-weight: 300;
}
.welcome .signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--terra);
  margin-top: 36px;
  letter-spacing: 0.01em;
}
.welcome-tip {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  text-align: left;
}
.welcome-tip .tip-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ============================================================
   Quick nav — refined chips
   ============================================================ */
.nav-grid {
  padding: 0 clamp(20px, 4vw, 40px) clamp(60px, 10vw, 100px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 640px)  { .nav-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .nav-grid { grid-template-columns: repeat(8, 1fr); } }

.nav-grid {
  /* re-set inherited paddings */
  padding-top: 0;
}
.nav-grid a {
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 18px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 140px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-grid a::after {
  content: '→';
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-size: 14px;
  color: var(--terra);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-grid a:hover {
  background: var(--ink);
  color: var(--cream);
}
.nav-grid a:hover .num,
.nav-grid a:hover .label { color: var(--cream); }
.nav-grid a:hover::after { opacity: 1; transform: translateX(0); color: #e8c896; }

.nav-grid .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--terra);
  font-weight: 500;
  font-style: italic;
}
.nav-grid .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: auto;
}

/* ============================================================
   Sections — editorial reading width
   ============================================================ */
section.content {
  padding: clamp(60px, 10vw, 110px) clamp(24px, 5vw, 40px) clamp(20px, 4vw, 40px);
  max-width: var(--reading);
  margin: 0 auto;
  scroll-margin-top: 80px;
}
section.content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
  padding-top: 24px;
}
section.content h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 1px;
  background: var(--terra);
}
section.content h2 .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 14px;
}
section.content .lead {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.4;
  font-weight: 400;
}
section.content p {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 300;
}
section.content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
section.content ul { list-style: none; margin-bottom: 16px; }
section.content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 300;
}
section.content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
}

/* Section photos — full-bleed feel within reading column */
.section-photo {
  width: 100%;
  margin: 24px 0 32px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.6s var(--ease);
}
.section-photo:hover img { transform: scale(1.03); }

/* ============================================================
   Cards & rows
   ============================================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.card.terra {
  background: linear-gradient(135deg, #f4e6d8 0%, #ecd9c2 100%);
  border-color: rgba(168, 85, 45, 0.25);
}
.card .card-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 10px;
}
.card .card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--ink);
  line-height: 1.4;
}
.card a {
  color: var(--terra-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 45, 0.35);
  transition: border-color 0.2s var(--ease);
}
.card a:hover { border-bottom-color: var(--terra); }

.row { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 520px) { .row.two { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SOS
   ============================================================ */
.sos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
@media (min-width: 640px) { .sos-grid { grid-template-columns: repeat(4, 1fr); } }

.sos-grid .sos-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--terra);
  padding: 16px 18px;
  border-radius: 6px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sos-grid .sos-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sos-grid .sos-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.sos-grid .sos-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   Restaurants
   ============================================================ */
.restos-group { margin-bottom: 32px; }
.restos-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 4px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
}
.restos-group-label::before {
  content: '';
  flex: 0 0 22px;
  height: 1px;
  background: var(--terra);
}
.restos-group-label .restos-group-dist {
  margin-left: auto;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.restos {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) { .restos { grid-template-columns: 1fr 1fr; column-gap: 32px; } }

.restos .resto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 14px;
  transition: padding 0.25s var(--ease);
}
.restos .resto:hover { padding-left: 6px; }
.restos .resto .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
}
.restos .resto .place {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.restos .resto .dist {
  font-size: 11px;
  color: var(--terra);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.resto .kids {
  display: inline-block;
  background: var(--olive);
  color: var(--paper);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.12em;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 600;
}

/* ============================================================
   Village table
   ============================================================ */
.village-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  font-size: 15px;
}
.village-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: baseline;
}
.village-table tbody tr:last-child td { border-bottom: none; }
.village-table tbody tr {
  transition: background 0.2s var(--ease);
}
.village-table tbody tr:hover { background: rgba(168, 85, 45, 0.04); }

.village-table .col-what {
  width: 42%;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  padding-right: 18px;
}
.village-table .col-detail {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
}
.village-table .village-hint {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-style: italic;
  margin-left: 6px;
  font-family: 'Cormorant Garamond', serif;
}
@media (max-width: 540px) {
  .village-table { font-size: 14px; }
  .village-table tbody td { padding: 12px 4px; }
  .village-table .col-what { font-size: 9.5px; letter-spacing: 0.18em; width: 44%; padding-right: 10px; }
  .village-table .col-detail { font-size: 16px; }
  .village-table .village-hint { font-size: 11.5px; }
}

/* ============================================================
   Restaurant table
   ============================================================ */
.resto-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 15px;
}
.resto-table thead th {
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  padding: 8px 8px 10px;
  border-bottom: 1px solid var(--line);
}
.resto-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.resto-table tbody tr:last-child td { border-bottom: none; }
.resto-table tbody tr {
  transition: background 0.2s var(--ease);
}
.resto-table tbody tr:hover { background: rgba(168, 85, 45, 0.04); }

.resto-table .col-tip {
  width: 36px;
  text-align: center;
  color: var(--terra);
  font-size: 16px;
  font-weight: 600;
}
.resto-table thead .col-tip { width: 36px; }
.resto-table tbody tr.is-tip { background: rgba(168, 85, 45, 0.05); }
.resto-table tbody tr.is-tip:hover { background: rgba(168, 85, 45, 0.10); }

.resto-table .col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.25;
}
.resto-table .col-place {
  color: var(--ink-soft);
  font-size: 13.5px;
}
.resto-table .col-time {
  font-size: 11.5px;
  color: var(--terra);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.resto-table .kids {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 8px;
  vertical-align: 2px;
}
.resto-table .michelin {
  display: inline-block;
  color: var(--gold);
  margin-left: 6px;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.resto-hint {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-left: 4px;
}
.resto-flag {
  display: inline-block;
  background: var(--terra);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: 2px;
}

@media (max-width: 540px) {
  .resto-table { font-size: 14px; }
  .resto-table thead th { font-size: 9.5px; letter-spacing: 0.18em; padding: 6px 4px 8px; }
  .resto-table tbody td { padding: 12px 4px; }
  .resto-table .col-name { font-size: 17px; }
  .resto-table .col-place { font-size: 12.5px; }
  .resto-table .col-time { font-size: 10.5px; letter-spacing: 0.08em; }
  .resto-table .col-tip { width: 24px; font-size: 14px; }
}

/* ============================================================
   Checklist
   ============================================================ */
.checklist {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 14px;
}
.checklist li {
  list-style: none;
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 300;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  color: var(--terra);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-block {
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: var(--paper);
  padding: clamp(60px, 10vw, 100px) 24px;
  text-align: center;
  margin-top: clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.contact-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(232, 200, 150, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 46px);
  margin-bottom: 14px;
  position: relative;
}
.contact-block p {
  margin-bottom: 32px;
  opacity: 0.95;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 8px;
  position: relative;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }

.contact-card {
  background: rgba(250, 246, 238, 0.07);
  border: 1px solid rgba(250, 246, 238, 0.2);
  border-radius: 12px;
  padding: 26px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.contact-card-label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f1d3a8;
  margin-bottom: 4px;
}
.contact-card-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(250, 246, 238, 0.78);
  margin-bottom: 16px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.contact-buttons a {
  background: var(--paper);
  color: var(--terra-dark);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.contact-block .signature {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  opacity: 0.95;
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 24px 48px;
  text-align: center;
}
footer .footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
footer .footer-mark em { color: #e8c896; font-style: italic; }
footer .footer-sub {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  font-weight: 500;
}

/* ============================================================
   Back to top
   ============================================================ */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease);
  z-index: 40;
}
.to-top svg { width: 18px; height: 18px; }
.to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover { background: var(--terra); }

/* ============================================================
   Language visibility (NL / EN / DE / IT)
   ============================================================ */
body.lang-nl .en, body.lang-nl .de, body.lang-nl .it { display: none; }
body.lang-en .nl, body.lang-en .de, body.lang-en .it { display: none; }
body.lang-de .nl, body.lang-de .en, body.lang-de .it { display: none; }
body.lang-it .nl, body.lang-it .en, body.lang-it .de { display: none; }

/* ============================================================
   Banner photo with pull quote
   ============================================================ */
.banner-photo {
  width: 100%;
  height: 68vh;
  min-height: 380px;
  max-height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.banner-photo.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 37, 32, 0.05) 0%, rgba(42, 37, 32, 0.55) 100%);
}
.banner-photo .caption {
  position: absolute;
  bottom: clamp(28px, 5vw, 56px);
  left: 0; right: 0;
  padding: 0 24px;
  text-align: center;
  color: var(--paper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 400;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}
.banner-photo.huis-drone      { background-image: url("../photos/huis-drone.jpg"); }
.banner-photo.pool-uitzicht   { background-image: url("../photos/pool-uitzicht.jpg"); }
.banner-photo.uitzicht-terras { background-image: url("../photos/uitzicht-terras.jpg"); }

/* ============================================================
   Quote photo — contained, fully visible
   ============================================================ */
.quote-photo {
  max-width: 1000px;
  margin: clamp(50px, 8vw, 90px) auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}
.quote-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.quote-photo figcaption {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--ink-soft);
  line-height: 1.35;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Place grid — "Further afield"
   ============================================================ */
.place-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0 20px;
}
@media (min-width: 600px) { .place-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.place {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 22px 22px 20px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.place:hover {
  transform: translateY(-2px);
  border-color: var(--terra);
  box-shadow: var(--shadow-md);
}
.place h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 8px;
  letter-spacing: -0.005em;
}
.place p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 300;
}
.place-dist {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}

/* ============================================================
   Notes
   ============================================================ */
.note {
  background: #f9eed8;
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 18px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Markets
   ============================================================ */
.markt-grid {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 12px 22px;
  font-size: 14.5px;
  margin: 18px 0 14px;
  align-items: start;
}
.markt-grid > div { padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.markt-grid > div:nth-last-child(-n+2) { border-bottom: none; }
.markt-grid .day {
  color: var(--terra);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 11px;
}

/* ============================================================
   Reviews — dual-platform layout
   ============================================================ */
.reviews {
  background: var(--paper);
  padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line-soft);
}
.rv-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.rv-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 40px;
}

.rv-summary {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rv-summary-score {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.rv-summary-score .rv-score {
  font-size: clamp(64px, 9vw, 88px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rv-summary-score .rv-max {
  font-size: 26px;
  font-style: italic;
  color: var(--ink-mute);
}
.rv-summary-stars {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 20px;
}
.rv-summary-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.rv-summary-cta {
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--terra-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 45, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease);
}
.rv-summary-cta:hover { border-bottom-color: var(--terra); }

.rv-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 800px) { .rv-quotes { grid-template-columns: repeat(2, 1fr); } }

.rv-quote {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 28px 28px 24px;
  position: relative;
}
.rv-quote-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.rv-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
  quotes: none;
}
.rv-quote blockquote::before { content: '"'; color: var(--terra); margin-right: 1px; }
.rv-quote blockquote::after  { content: '"'; color: var(--terra); margin-left: 1px; }
.rv-quote figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.rv-quote-name { color: var(--ink); }
.rv-quote-source {
  background: var(--ink);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.12em;
  font-size: 9.5px;
}
.rv-quote-date { font-weight: 400; letter-spacing: 0.15em; }

/* ============================================================
   Scroll reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Address card link styling
   ============================================================ */
.address-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
