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

:root {
  --cream:     #F9F6F0;
  --sand:      #EDE8DF;
  --stone:     #C8BFB0;
  --clay:      #8B7355;
  --terracotta:#B5562A;
  --olive:     #5F6F45;
  --sage:      #DCE2D0;
  --wine:      #7A2F2B;
  --gold:      #C59249;
  --ink:       #2A2520;
  --ink-soft:  #5A5249;
  --ink-muted: #9A9189;
  --white:     #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}

/* ── Typography ───────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
h1 { font-size: clamp(36px, 6vw, 60px); line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 20px; }

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

/* ── Layout ───────────────────────────────────── */
.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

/* ── Header & nav ─────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--sand);
  isolation: isolate;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(42,37,32,0.42) 0%, rgba(42,37,32,0.22) 44%, rgba(42,37,32,0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

header.header-transparent {
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

header.header-transparent::before {
  opacity: 1;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: auto;
  height: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  transition: filter 0.2s ease;
}

.logo-wordmark {
  display: none;
  white-space: nowrap;
}

header.header-transparent .logo {
  color: var(--white);
}

header.header-transparent .logo-wordmark {
  display: inline;
}

header.header-transparent .logo img {
  filter: invert(1) brightness(2);
}

header.nav-open {
  background-color: var(--cream);
  border-bottom-color: var(--sand);
}

header.nav-open::before {
  opacity: 0;
}

header.nav-open .logo {
  color: var(--ink);
}

header.nav-open .logo img {
  filter: none;
}

nav { display: flex; gap: 2rem; align-items: center; }

nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s ease;
  cursor: pointer;
}

nav a:hover,
nav a.active { color: var(--ink); }

.logo:focus-visible,
nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

header.header-transparent nav a {
  color: var(--white);
}

header.header-transparent nav a:hover,
header.header-transparent nav a.active {
  color: var(--white);
}

nav a.active {
  position: relative;
}
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
}

header.header-transparent nav a.active::after {
  background: rgba(255,255,255,0.85);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  color: var(--white);
  background: #9d4a24;
  transform: translateY(-1px);
}
/* Over the hero (transparent header): white button, dark text */
header.header-transparent nav a.nav-cta {
  background: var(--white);
  color: var(--ink);
}
header.header-transparent nav a.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s ease;
}

.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(6px); }

header.header-transparent .menu-toggle {
  color: var(--white);
}

header.nav-open .menu-toggle {
  color: var(--ink);
}

header.nav-open .menu-toggle span {
  background: transparent;
}

header.nav-open .menu-toggle span::before {
  transform: rotate(45deg);
}

header.nav-open .menu-toggle span::after {
  transform: rotate(-45deg);
}

/* ── Pages ────────────────────────────────────── */
.page { display: none; animation: fadeIn 0.35s ease; }
.page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HOME ─────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg img.active { opacity: 1; }

.hero-progress {
  display: flex;
  gap: 5px;
  width: 200px;
  margin-left: auto;
  margin-bottom: 1.5rem;
}

.hero-progress-bar {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
  cursor: pointer;
}

.hero-progress-bar .fill {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.8);
}

.hero-progress-bar.done .fill { width: 100%; }
.hero-progress-bar.active .fill { animation: progressFill 5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

@keyframes progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 37, 32, 0.75) 0%,
    rgba(42, 37, 32, 0.3) 40%,
    rgba(42, 37, 32, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
  width: 100%;
}

.hero-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.hero-stat span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

/* About section */
.about-section {
  max-width: 1000px;
  margin: 5rem auto 0;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  border-top: 1px solid var(--sand);
  padding-top: 4rem;
}

.about-section .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.about-section h2 { font-style: italic; margin: 0.75rem 0 1.5rem; }

.about-section p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* Highlights */
.highlights {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.highlight-item {
  position: relative;
  background: linear-gradient(145deg, var(--cream), rgba(255,255,255,0.46));
  padding: 2rem 1.75rem;
}

.highlight-icon {
  width: 32px; height: 32px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 15px;
}

.highlight-item h3 { font-size: 17px; margin-bottom: 0.5rem; }
.highlight-item p { font-size: 13px; color: var(--ink-muted); }

/* ── Omgeving section ────────────────────────── */
.omgeving-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  border-top: 1px solid var(--sand);
  padding-top: 4rem;
}

.omgeving-section .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.omgeving-section h2 { font-style: italic; margin: 0.75rem 0 1.5rem; }

.omgeving-section p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.omgeving-stat {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.omgeving-stat strong {
  color: var(--ink);
  font-weight: 500;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.link-btn:hover { opacity: 0.7; }

/* ── Photo teaser ────────────────────────────── */
.photo-teaser {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.photo-teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.photo-teaser-header .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.photo-teaser-header h2 {
  font-style: italic;
  margin-top: 0.5rem;
}

.photo-teaser-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
}

.photo-teaser-grid .teaser-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
}

.photo-teaser-grid .teaser-item:first-child {
  grid-row: span 2;
}

.photo-teaser-grid .teaser-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-teaser-grid .teaser-item:hover img { transform: scale(1.03); }

.show-all-photos {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(42, 37, 32, 0.22);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.show-all-photos:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

/* ── Locatie section ──────────────────────────── */
.locatie-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  border-top: 1px solid var(--sand);
  padding-top: 4rem;
}

.locatie-header {
  margin-bottom: 2rem;
}

.locatie-header .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.locatie-header h2 { font-style: italic; margin-top: 0.5rem; }

.distances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
}

.distance-item {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.95rem 0;
}

.distance-item .place {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
}

.distance-item .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(154, 145, 137, 0.55);
  transform: translateY(-0.3em);
  min-width: 1.5rem;
}

.distance-item .time {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .omgeving-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-teaser-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .photo-teaser-header .link-btn {
    margin-top: 0;
  }
  .photo-teaser-grid { grid-template-columns: 1fr 1fr; }
  .photo-teaser-grid .teaser-item:first-child { grid-row: span 1; grid-column: span 2; }
  .distances-grid { grid-template-columns: 1fr; column-gap: 0; }
}

@media (max-width: 480px) {
  .photo-teaser-grid { grid-template-columns: 1fr; }
  .photo-teaser-grid .teaser-item:first-child { grid-column: span 1; }
  .distances-grid { grid-template-columns: 1fr; }
}

/* ── FOTOS ────────────────────────────────────── */
.photos-page { padding: 7rem 2rem 5rem; max-width: 1000px; margin: 0 auto; }

.page-header { margin-bottom: 2.5rem; }
.page-header .eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.5rem;
}
.page-header h2 { font-style: italic; }

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

/* First photo spans 2 columns and 2 rows */
.masonry-grid .photo-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1;
}

.photo-item:first-child { aspect-ratio: unset; }

.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-item:hover img { transform: scale(1.03); }

.photo-category { margin-top: 3.5rem; }
.photo-category:first-of-type { margin-top: 0; }
.photo-category-head {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand);
}
.photo-category-head h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 26px; font-weight: 500; color: var(--ink);
}
.photo-category-head .count {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
}

.photo-caption {
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* ── FAVORIETEN ───────────────────────────────── */
.places-page { padding: 7rem 2rem 5rem; max-width: 1000px; margin: 0 auto; }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid var(--stone);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--clay); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.places-section { margin-bottom: 3rem; }

.places-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand);
}

.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1rem;
}

.place-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.place-card:hover {
  border-color: var(--stone);
  box-shadow: 0 4px 16px rgba(42,37,32,0.07);
}

.place-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 0.75rem;
}

.place-card h3 {
  font-size: 18px;
  line-height: 1.2;
  flex: 1;
}

.place-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--sand);
  color: var(--clay);
  white-space: nowrap;
  flex-shrink: 0;
}

.place-badge.badge-restaurant { background: rgba(122,47,43,0.10); color: var(--wine); }
.place-badge.badge-pizza { background: rgba(181,86,42,0.12); color: var(--terracotta); }
.place-badge.badge-bakkerij { background: rgba(197,146,73,0.18); color: #805A21; }
.place-badge.badge-wijn { background: rgba(95,111,69,0.15); color: var(--olive); }
.place-badge.badge-strand { background: rgba(90,119,128,0.13); color: #496A72; }
.place-badge.badge-verblijf { background: rgba(139,115,85,0.14); color: var(--clay); }

.place-distance {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.place-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.place-price {
  font-size: 13px;
  color: var(--clay);
  margin-bottom: 10px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--terracotta);
  transition: opacity 0.2s;
}

.maps-link:hover { opacity: 0.7; }

/* ── Lightbox ─────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 37, 32, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.photo-item { cursor: zoom-in; }

/* ── Footer ───────────────────────────────────── */
footer {
  border-top: 1px solid var(--sand);
  padding: 3.5rem 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(220,226,208,0.22), rgba(237,232,223,0.65));
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 320px;
  margin-bottom: 0.9rem;
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.footer-heading {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-cta p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 280px;
  margin-bottom: 1.15rem;
}

.footer-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-book:hover {
  background: #9d4a24;
  color: var(--white);
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: 1000px;
  margin: 2.75rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 720px) {
  body.nav-lock { overflow: hidden; }

  /* Mobile hero: clean photo on top, text below on cream (no heavy overlay) */
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 56vh;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero-overlay { display: none; }
  .hero-content {
    position: static;
    z-index: auto;
    background: var(--cream);
    padding: 2.25rem 1.5rem 2.75rem;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
  }
  .hero-progress {
    order: -1;
    width: 100%;
    max-width: 150px;
    margin: 0 0 1.5rem;
  }
  .hero-progress-bar { background: var(--sand); }
  .hero-progress-bar .fill { background: var(--clay); }
  .hero-text h1 {
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .hero-text p {
    color: var(--ink-soft);
    max-width: none;
    margin-bottom: 1.75rem;
  }
  .hero-stats { border-top-color: var(--sand); }
  .hero-stat label { color: var(--ink-muted); }
  .hero-stat span { color: var(--ink); }

  .about-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .masonry-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid .photo-item:first-child { grid-column: span 2; }
  .places-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0.85rem 1.25rem; }
  .logo {
    position: relative;
    z-index: 2;
    height: 44px;
  }
  .logo-wordmark,
  header.header-transparent .logo-wordmark {
    display: none;
  }
  .menu-toggle { display: inline-flex; }
  nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 100vh;
    padding: 6rem 2rem 3rem;
    background:
      radial-gradient(circle at 20% 18%, rgba(197,146,73,0.16), transparent 28rem),
      linear-gradient(180deg, rgba(249,246,240,0.98), rgba(237,232,223,0.98));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    visibility: hidden;
  }
  nav::before {
    content: 'Villa Mombaldone';
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 9vw, 42px);
    font-style: italic;
    color: var(--clay);
  }
  header.nav-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  nav a,
  header.header-transparent nav a,
  header.header-transparent nav a:hover,
  header.header-transparent nav a.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 56px;
    padding: 0 1.5rem;
    border-radius: var(--radius-md);
    font-size: 13px;
    letter-spacing: 0.16em;
    color: var(--ink-soft);
  }
  nav a:hover,
  nav a.active,
  header.header-transparent nav a:hover,
  header.header-transparent nav a.active {
    background: var(--sand);
    color: var(--ink);
  }
  nav a.active::after,
  header.header-transparent nav a.active::after {
    display: none;
  }
  nav a.nav-cta,
  header.header-transparent nav a.nav-cta {
    margin-top: 0.5rem;
    background: var(--terracotta);
    color: var(--white);
  }
  nav a.nav-cta:hover,
  header.header-transparent nav a.nav-cta:hover {
    background: #9d4a24;
    color: var(--white);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }
  .footer-brand-row { justify-content: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-links { align-items: center; }
  .footer-cta { display: flex; flex-direction: column; align-items: center; }
  .footer-cta p { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .masonry-grid { grid-template-columns: 1fr; }
  .masonry-grid .photo-item:first-child { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
}
