:root {
  --paper: #f6f1ea;
  --ink: #15130f;
  --muted: #6f675f;
  --line: #d7cbbd;
  --clay: #9a6041;
  --charcoal: #26231f;
  --cream: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(246, 241, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: clamp(32px, 6vw, 86px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 112px);
}

h2 {
  font-size: clamp(36px, 5vw, 76px);
}

.lead {
  max-width: 570px;
  margin: 28px 0;
  color: var(--charcoal);
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.35;
}

.actions,
.link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  cursor: pointer;
}

.button:hover,
button:hover,
.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.dark:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.hero-media {
  margin: 0;
  height: min(76vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--cream);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 24%;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.access-panel,
.booking,
.links,
.contact,
.private-area {
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(24px, 6vw, 86px);
  align-items: end;
}

.access-panel p,
.section-head p,
.booking-grid p,
.links p,
.contact p,
.usage li {
  color: var(--muted);
  line-height: 1.6;
}

.code-form {
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
}

label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.code-row {
  display: flex;
  gap: 8px;
}

input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0 14px;
  font: inherit;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.private-area {
  display: none;
  background: #24211d;
  color: var(--paper);
}

.private-area.unlocked {
  display: block;
}

.private-area .eyebrow,
.private-area p,
.private-area .usage li {
  color: #d8cabe;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 480px;
}

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

.gallery figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #181612;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.usage {
  max-width: 760px;
  margin-top: 28px;
  border-top: 1px solid rgba(246, 241, 234, 0.28);
  padding-top: 22px;
}

.usage h3,
.booking-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.usage ul {
  margin: 0;
  padding-left: 18px;
}

.booking {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 5vw, 78px);
}

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

.booking-grid article {
  min-height: 220px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.booking-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--clay);
}

.links {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  background: var(--cream);
}

.link-copy {
  max-width: 720px;
}

.contact {
  min-height: 420px;
}

.contact p {
  max-width: 620px;
  margin: 22px 0 28px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .access-panel,
  .booking,
  .links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 430px;
    height: 62vh;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .gallery,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .gallery figure {
    min-height: 520px;
  }

  .code-row,
  footer {
    flex-direction: column;
  }

  input {
    min-height: 44px;
  }
}
