:root {
  --bg: #11100f;
  --surface: #181716;
  --surface-soft: #22201e;
  --ink: #f6f0e8;
  --muted: #b9aa99;
  --line: rgba(246, 240, 232, 0.1);
  --accent: #d9a56d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(217, 165, 109, 0.16), transparent 26%),
    #0d0c0b;
  font-family: "Manrope", system-ui, sans-serif;
}

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

.page {
  width: min(1180px, calc(100% - 26px));
  margin: 0 auto;
  padding: 24px 0 40px;
  display: grid;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 18px;
}

.hero-copy,
.booking,
.notes {
  padding: 20px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, p, ul, figcaption { margin: 0; }

h1, h2 {
  font-family: "Libre Baskerville", serif;
}

h1 {
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.92;
}

.lede,
.booking p,
.notes li {
  color: var(--muted);
  line-height: 1.85;
}

.lede { margin-top: 16px; max-width: 38ch; }

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(246, 240, 232, 0.2);
}

.hero-frame {
  overflow: hidden;
  border-radius: 24px;
}

.hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.photo {
  overflow: hidden;
  padding: 10px;
  background: var(--surface-soft);
}

.photo img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.photo figcaption {
  padding: 12px 6px 4px;
  color: var(--muted);
}

.photo.tall { grid-column: span 4; }
.photo.tall img { height: 520px; }
.photo.wide { grid-column: span 8; }
.photo.wide img { height: 360px; }
.gallery .photo:not(.tall):not(.wide) { grid-column: span 4; }

.bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.booking h2 {
  margin: 10px 0 14px;
  font-size: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #171412;
}

.notes ul {
  padding-left: 18px;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero,
  .bottom {
    grid-template-columns: 1fr;
  }

  .photo.tall,
  .photo.wide,
  .gallery .photo:not(.tall):not(.wide) {
    grid-column: span 12;
  }

  .photo.tall img,
  .photo.wide img,
  .gallery .photo img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 16px, 1180px);
    padding: 16px 0 28px;
  }

  .panel {
    border-radius: 24px;
  }

  .hero-copy,
  .booking,
  .notes {
    padding: 18px;
  }
}
