/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Work+Sans:wght@300;400;500&display=swap');

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

:root {
  --bg:     #f7f1e6;
  --bg-alt: #efe7d6;
  --ink:    #2a2520;
  --muted:  #6d6358;
  --rule:   #d9cfba;
  --accent: #a14a2a;
  --card:   #fbf7ef;
  --serif:  "EB Garamond", Georgia, serif;
  --sans:   "Work Sans", -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink);
}

.nav__links a:hover { color: var(--accent); }

.nav__cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Section label (01 — Galerie) ──────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-label__num { color: var(--accent); }

.section-label__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 560px;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,37,32,.25) 0%, rgba(42,37,32,.08) 55%, rgba(42,37,32,0) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,241,230,.7);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 86px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #faf1e6;
  max-width: 640px;
  margin: 0;
}

.hero__title em { color: #e8a07a; font-style: italic; }

.hero__subtitle {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: rgba(250,241,230,.82);
  margin-top: 28px;
  max-width: 460px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 44px;
}

.hero-stat__value {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: #faf1e6;
}

.hero-stat__label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,241,230,.65);
  margin-top: 6px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 44px;
}

.btn {
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn--accent { background: var(--accent); color: #fff; }

.btn--ghost {
  background: rgba(250,241,230,.15);
  color: #faf1e6;
  border: 1px solid rgba(250,241,230,.35);
}

.hero__quote {
  position: absolute;
  bottom: 32px;
  right: 64px;
  background: var(--card);
  padding: 14px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(42,37,32,.18);
  max-width: 320px;
}

.hero__quote cite {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section { padding: 88px 64px; }
.section--alt { background: var(--bg-alt); }
.section--gallery { padding: 72px 64px; }

/* ── Gallery ───────────────────────────────────────────────────────────────── */
.gallery__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0;
  margin-top: 24px;
  margin-bottom: 36px;
}

.gallery__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  margin: 0;
}

.gallery__title em { font-style: italic; }

.gallery__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gallery__filter {
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  transition: all .15s;
  font-family: var(--sans);
}

.gallery__filter.active, .gallery__filter:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery__item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4 / 3;
}

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

.gallery__item:hover img { transform: scale(1.05); }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: rgba(42,37,32,.55);
  font-family: var(--serif);
  font-size: 13px;
  color: #faf1e6;
  opacity: 0;
  transition: opacity .2s;
}

.gallery__item:hover .gallery__caption { opacity: 1; }

/* ── Lightbox ──────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(42,37,32,.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
}

.lightbox__btn {
  position: absolute;
  background: rgba(250,241,230,.15);
  border: 1px solid rgba(250,241,230,.3);
  color: #faf1e6;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
}

.lightbox__prev { left: 32px; }
.lightbox__next { right: 32px; }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: rgba(250,241,230,.7);
  font-size: 28px;
  cursor: pointer;
}

.lightbox__caption {
  position: absolute;
  bottom: 32px;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(250,241,230,.8);
  font-style: italic;
}

/* ── Details grid ──────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  margin-top: 32px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  margin: 0;
}

.section__title em { font-style: italic; }

.section__lead {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 28px;
}

/* ── Fact table ────────────────────────────────────────────────────────────── */
.facts {
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}

.facts__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.facts__key {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}

.facts__val {
  font-family: var(--serif);
  font-size: 17px;
}

/* ── Amenities grid ────────────────────────────────────────────────────────── */
.amenities-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.amenity {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.amenity svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.amenity__title { font-family: var(--serif); font-size: 18px; }
.amenity__sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── Pricing ───────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.price-card {
  background: var(--card);
  padding: 32px;
  border: 1px solid var(--rule);
}

.price-card__label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__value {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.1;
  margin-top: 12px;
  color: var(--accent);
}

.price-card__sub {
  font-family: var(--serif);
  font-size: 18px;
  margin-top: 8px;
}

.price-card__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.pricing-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

/* ── Calendar section ──────────────────────────────────────────────────────── */
.calendar-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
  margin-top: 32px;
}

.calendar-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.cal-stat__key {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cal-stat__val {
  font-family: var(--serif);
  font-size: 28px;
  margin-top: 4px;
}

.calendar-embed {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
  border: 1px solid var(--rule);
  padding: 24px 0 20px;
}

.calendar-embed iframe {
  display: block;
  margin-top: -120px;
}

.calendar-embed__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: #fff;
  z-index: 2;
}

/* ── Surroundings ──────────────────────────────────────────────────────────── */
.surroundings-grid {
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}

.poi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.poi-card {
  background: var(--card);
  padding: 20px 22px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 116px;
}

.poi-card__text { min-width: 0; }
.poi-card__title { font-family: var(--serif); font-size: 18px; }
.poi-card__desc  { font-size: 12px; color: var(--muted); margin-top: 6px; }

.poi-card__img {
  flex: 0 0 auto;
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
}

/* ── Contact ───────────────────────────────────────────────────────────────── */
.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-row svg { color: var(--accent); flex-shrink: 0; }

.contact-row a, .contact-row span {
  font-family: var(--serif);
  font-size: 19px;
  text-decoration: none;
  color: var(--ink);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  padding: 36px 64px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: .1em;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.footer__links {
  display: flex;
  gap: 28px;
  opacity: .7;
  text-transform: uppercase;
}

.footer__links a { text-decoration: none; color: inherit; }
.footer__links a:hover { opacity: 1; }

.footer__copy { opacity: .7; }

/* ── Legal pages ───────────────────────────────────────────────────────────── */
.legal {
  padding: 72px 64px 96px;
  max-width: 860px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  margin: 0 0 56px;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 40px 0 12px;
}

.legal p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}

.legal ul {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
  padding-left: 24px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; justify-content: flex-start; gap: 12px; position: relative; }
  .nav__logo { margin-right: auto; }
  .nav__cta { padding: 8px 14px; }
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 8px 20px 20px;
  }

  .nav__links.is-open { display: flex; }

  .nav__links a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--rule);
  }

  .nav__links a:last-child { border-bottom: none; }

  .hero__content { padding: 0 20px; }
  .hero__title { font-size: 44px; }
  .hero__subtitle { font-size: 16px; }
  .hero__stats { gap: 20px; margin-top: 24px; }
  .hero__buttons { margin-top: 24px; }
  .hero__quote { display: none; }

  .section { padding: 48px 20px; }
  .section--alt { padding: 48px 20px; }
  .section--gallery { padding: 48px 20px; }

  .gallery__header { flex-direction: column; gap: 16px; }
  .gallery__title { font-size: 32px; }
  .gallery__filters { justify-content: flex-start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .section__title { font-size: 32px; }
  .amenities { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .calendar-head { grid-template-columns: 1fr; gap: 32px; }
  .calendar-stats { flex-wrap: wrap; }

  .surroundings-grid { grid-template-columns: 1fr; gap: 24px; }
  .poi-grid { grid-template-columns: 1fr; }

  .footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }

  .legal { padding: 48px 20px 64px; }
  .legal h1 { font-size: 44px; }
}
