:root {
  --ink: #262422;
  --night: #171614;
  --stone: #d8cbb8;
  --sand: #b49b78;
  --clay: #9c5f45;
  --cream: #f5efe5;
  --mist: #e9edf0;
  --olive: #5f6554;
  --line: rgba(38, 36, 34, 0.16);
  --shadow: 0 28px 80px rgba(23, 22, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(12, 11, 10, 0.74), rgba(12, 11, 10, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(216, 203, 184, 0.34);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.nav-cta {
  opacity: 0.92;
}

.nav-links a:hover,
.nav-cta:hover {
  opacity: 1;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.inquiry-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 12px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 92px) 42px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.82) 0%, rgba(13, 11, 9, 0.42) 48%, rgba(13, 11, 9, 0.18) 100%),
    url("https://images.unsplash.com/photo-1774429307412-97cf503828ce?auto=format&fit=crop&fm=jpg&q=86&w=2400")
      center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  background: linear-gradient(to top, rgba(23, 22, 20, 0.72), rgba(23, 22, 20, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 8vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.hero h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  line-height: 0.92;
  font-weight: 400;
  max-width: 980px;
}

.hero-copy {
  max-width: 660px;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.primary-btn {
  color: var(--night);
  background: var(--stone);
  border-color: var(--stone);
}

.secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts span {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding: 12px 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro,
.experience,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 7vw, 110px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 92px);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.04;
  font-weight: 400;
}

.intro > p,
.property-copy p,
.view-inner p,
.contact-copy p {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: rgba(38, 36, 34, 0.76);
}

.property-band {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(28px, 5vw, 70px) clamp(20px, 6vw, 92px);
  background: var(--night);
  color: #fff;
}

.property-image {
  margin: 0;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.property-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.property-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(216, 203, 184, 0.24);
  padding-top: 18px;
}

.detail-list dt {
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
}

.stay {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 6vw, 92px);
  background: #f9f6ef;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.stay-grid article {
  min-height: 310px;
  padding: clamp(28px, 4vw, 48px);
  background: #f9f6ef;
}

.stay-grid span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

.stay-grid h3 {
  margin: 44px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.view {
  min-height: 74vh;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 92px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.82), rgba(23, 22, 20, 0.44)),
    url("assets/hotel-exterior.jpeg") center / cover fixed;
}

.view-inner {
  max-width: 760px;
}

.view-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.experience {
  background: var(--mist);
}

.experience-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.experience-list li {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: Georgia, "Times New Roman", serif;
}

.experience-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact {
  background: var(--cream);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf2;
  border: 1px solid var(--line);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 36, 34, 0.7);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 36, 34, 0.18);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-form button {
  width: 100%;
  margin-top: 6px;
  border-color: var(--night);
  color: #fff;
  background: var(--night);
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

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

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero {
    min-height: 92svh;
    padding-top: 110px;
  }

  .intro,
  .property-band,
  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .property-image,
  .property-image img {
    min-height: 420px;
  }

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

  .view {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand img {
    width: 104px;
    height: 48px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    display: grid;
  }
}
