:root {
  --ink: #24211c;
  --muted: #716b61;
  --paper: #f7f1e7;
  --soft: #ede5d8;
  --pine: #203b34;
  --pine-2: #526b5f;
  --deep: #1c352f;
  --brass: #b3915a;
  --rose: #a56f63;
  --mist: #d9e1d8;
  --white: #fffaf2;
  --line: rgba(33, 31, 24, 0.16);
  --shadow: 0 24px 60px rgba(33, 31, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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, 5vw, 64px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.78;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  border: 1px solid currentColor;
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--pine);
}

.site-header:not(.is-scrolled):not(.is-open) .language-switch button.active {
  color: var(--ink);
  background: var(--white);
}

.reserve-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  cursor: pointer;
}

.reserve-link {
  min-width: 116px;
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .reserve-link,
.site-header.is-open .reserve-link {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.button {
  min-width: 154px;
  border-radius: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 250, 241, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% 38%;
}

.hero-shade {
  background: rgba(18, 22, 17, 0.46);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 6vw, 88px) clamp(56px, 10vh, 92px);
}

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

.hero .eyebrow {
  color: var(--mist);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: clamp(64px, 10vw, 132px);
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
}

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

.section-pad {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.reservation-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.6fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin: -38px clamp(20px, 6vw, 88px) 0;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.reservation-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.reservation-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.rate-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.rate-note strong,
.price-estimate strong {
  color: var(--ink);
  font-size: 14px;
}

.rate-note span,
.price-estimate span {
  color: var(--muted);
  font-size: 14px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.booking-form span {
  color: var(--muted);
  font-size: 13px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fffdfa;
  padding: 12px 13px;
}

.booking-form textarea {
  resize: vertical;
}

.price-estimate {
  display: grid;
  gap: 5px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(217, 225, 216, 0.38);
}

.price-estimate.has-price {
  border-color: rgba(179, 145, 90, 0.55);
  background: rgba(179, 145, 90, 0.14);
}

.form-wide {
  grid-column: 1 / -1;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.15fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

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

.metrics div {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.amenities {
  padding-top: 0;
}

.amenities .section-heading {
  max-width: 680px;
}

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

.amenity-list span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: var(--pine);
  color: var(--white);
}

.split-section .eyebrow {
  color: var(--sky);
}

.image-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: end;
}

.image-pair img,
.room-feature img,
.experience-grid img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.image-pair img:first-child {
  aspect-ratio: 4 / 3;
}

.image-pair img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(34px);
}

.split-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.stay {
  background: var(--soft);
}

.room-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.room-feature img {
  aspect-ratio: 4 / 3;
  object-position: 50% 50%;
}

.room-copy {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
}

.room-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.room-copy ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.room-copy li {
  display: flex;
  gap: 10px;
}

.room-copy li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  background: var(--brass);
}

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

.experience-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.experience-grid img {
  aspect-ratio: 5 / 4;
}

.experience-grid h3,
.experience-grid p {
  padding-inline: 22px;
}

.experience-grid h3 {
  margin-top: 22px;
  font-size: 28px;
}

.experience-grid p {
  margin: 10px 0 24px;
  color: var(--muted);
}

.gallery {
  background: #fbf8f1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(220px, 26vw);
  gap: 14px;
}

.gallery-grid img {
  height: 100%;
}

.gallery-grid .wide {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr);
  gap: clamp(30px, 6vw, 80px);
  color: var(--white);
  background: var(--deep);
}

.contact .eyebrow {
  color: var(--mist);
}

.contact-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 250, 241, 0.78);
}

.contact-list {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 8px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.26);
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    align-items: start;
    min-height: 100svh;
    align-content: start;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    padding-top: 18px;
    font-size: 20px;
  }

  .site-header.is-open .header-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .reservation-panel,
  .intro,
  .split-section,
  .room-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid img {
    aspect-ratio: 16 / 10;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(210px, 42vw);
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 46% 42%;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 42px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .section-pad {
    padding: 62px 16px;
  }

  .reservation-panel {
    margin: -28px 16px 0;
    padding: 20px;
  }

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

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .amenity-list span {
    min-height: auto;
  }

  .metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:last-child {
    transform: none;
  }

  .room-copy {
    padding: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid .wide {
    grid-row: auto;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    display: grid;
  }
}
