:root {
  --ink: #16231f;
  --muted: #5b675f;
  --paper: #f7f4ee;
  --panel: #fffdf8;
  --line: #d9cfbd;
  --gold: #a88452;
  --sea: #345f63;
  --dark: #101917;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgb(0 0 0 / .48), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(255 255 255 / .6);
  border-radius: 50%;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgb(0 0 0 / .76), rgb(0 0 0 / .18) 58%, rgb(0 0 0 / .28)),
    linear-gradient(to right, rgb(0 0 0 / .44), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 150px clamp(20px, 6vw, 76px) 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 128px);
  font-weight: 500;
  line-height: .9;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 680px;
  color: rgb(255 255 255 / .88);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-actions,
.filters,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #fff;
}

.button.secondary {
  border-color: rgb(255 255 255 / .5);
  color: #fff;
  background: rgb(255 255 255 / .08);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.metrics div {
  padding: 28px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 38px);
}

.metrics span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 76px);
}

.split,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 90px);
}

.copy-stack {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  padding: 42px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 700;
}

.feature-grid p,
.section-head p,
.small-note {
  color: var(--muted);
  line-height: 1.6;
}

.image-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.filters {
  margin: 30px 0;
}

.filter {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.filter.active {
  border-color: var(--sea);
  background: var(--sea);
  color: #fff;
}

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

.property-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.property-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.reference {
  font-size: 26px;
  font-weight: 700;
}

.badge {
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--sea);
  font-size: 12px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.price {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 24px;
  font-weight: 700;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.dark .copy-stack,
.dark .check-list {
  color: rgb(255 255 255 / .78);
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.booking {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 7vw, 80px);
  background: var(--panel);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: auto 1fr;
}

.consent input {
  width: auto;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  color: var(--sea);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 6vw, 76px);
  color: rgb(255 255 255 / .76);
  background: #0b1110;
}

.footer strong {
  color: #fff;
}

.footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .metrics,
  .feature-grid,
  .inventory,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .section-head,
  .image-band,
  .booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 86vh;
  }

  .metrics,
  .feature-grid,
  .inventory,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .footer div:last-child {
    text-align: left;
  }
}
