:root {
  --bg: #f3eee6;
  --paper: #fff8ef;
  --ink: #201a15;
  --muted: #6f6257;
  --line: #d9c8b5;
  --bronze: #9b7651;
  --olive: #6f7458;
  --dark: #2b241f;
  --shadow: 0 22px 60px rgba(44, 34, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--bronze), #d3b68a);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 248, 239, 0.34);
  border-radius: 999px;
  background: rgba(32, 26, 21, 0.54);
  color: #fff8ef;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand span {
  font-size: 17px;
}

.brand small {
  color: #dbc7ae;
  font-size: 10px;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 248, 239, 0.78);
  font-size: 13px;
}

.header-cta,
.primary,
.secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.header-cta,
.primary {
  padding: 0 20px;
  background: var(--bronze);
  color: #fff8ef;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.secondary {
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 239, 0.48);
  color: #fff8ef;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 12, 8, 0.72), rgba(17, 12, 8, 0.24) 52%, rgba(17, 12, 8, 0.1)),
    linear-gradient(0deg, rgba(17, 12, 8, 0.32), transparent 48%);
}

.hero-copy {
  width: min(760px, calc(100% - 40px));
  padding: 29svh 0 0 7vw;
  color: #fff8ef;
}

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

.hero .eyebrow {
  color: #dbc7ae;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 78px);
}

h2 {
  font-size: clamp(32px, 4.4vw, 56px);
}

h3 {
  font-size: 28px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 248, 239, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 239, 0.22);
  color: #fff8ef;
  background: rgba(32, 26, 21, 0.5);
  backdrop-filter: blur(18px);
}

.hero-facts span {
  padding: 18px;
  font-size: 12px;
  color: rgba(255, 248, 239, 0.75);
}

.hero-facts strong {
  display: block;
  color: #fff8ef;
  font-size: 18px;
}

.section {
  padding: 110px min(7vw, 86px);
}

.section-copy {
  max-width: 540px;
}

.section-copy.narrow {
  max-width: 820px;
}

.section-copy.center {
  margin-inline: auto;
  text-align: center;
}

.section-copy p:not(.eyebrow),
.contact-copy p,
.feature-copy p,
.room-grid p,
.metric-grid p {
  color: var(--muted);
}

.intro {
  display: grid;
  gap: 42px;
}

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

.metric-grid article,
.room-grid article,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.68);
  box-shadow: var(--shadow);
}

.metric-grid article {
  padding: 26px;
}

.metric-grid span {
  display: block;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: min(7vw, 82px);
}

.split.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.image-panel,
.feature-room,
.stacked-images img,
.gallery-strip img,
.room-grid img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: min(64vw, 570px);
  object-fit: cover;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 min(7vw, 86px) 80px;
}

.gallery-strip img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.feature-room {
  position: relative;
  margin-top: 54px;
  min-height: 580px;
}

.feature-room img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.feature-copy {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(430px, calc(100% - 68px));
  padding: 26px;
  border: 1px solid rgba(255, 248, 239, 0.34);
  border-radius: 18px;
  background: rgba(32, 26, 21, 0.58);
  color: #fff8ef;
  backdrop-filter: blur(18px);
}

.feature-copy p {
  color: rgba(255, 248, 239, 0.82);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.room-grid article {
  overflow: hidden;
}

.room-grid img {
  width: 100%;
  height: 220px;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  box-shadow: none;
}

.room-grid h3 {
  padding: 18px 18px 0;
  font-size: 22px;
}

.room-grid p {
  margin: 8px 18px 20px;
  font-size: 14px;
}

.material-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 54px;
  background: var(--dark);
  color: #fff8ef;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.material-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.06);
}

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

.stacked-images img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  padding: 110px min(7vw, 86px);
  background:
    radial-gradient(circle at 15% 0%, rgba(155, 118, 81, 0.16), transparent 34%),
    var(--bg);
}

.contact-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
  color: var(--muted);
}

.contact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bronze);
}

.lead-card {
  padding: 28px;
}

.lead-card h3 {
  margin-bottom: 20px;
}

label {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check button {
  border: 0;
  background: transparent;
  color: var(--bronze);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

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

.privacy-dialog {
  width: min(620px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(32, 26, 21, 0.52);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.footer {
  padding: 34px min(7vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin: 4px 0;
}

[data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-copy {
    padding: 26svh 20px 0;
  }

  .hero-facts,
  .metric-grid,
  .split,
  .split.reverse,
  .material-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    position: static;
    width: calc(100% - 40px);
    margin: 70px auto 26px;
  }

  .gallery-strip,
  .room-grid,
  .stacked-images {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 76px 22px;
  }

  .gallery-strip {
    padding-inline: 22px;
  }

  .room-grid img,
  .gallery-strip img,
  .stacked-images img {
    height: 280px;
  }
}
