:root {
  --ink: #17211f;
  --muted: #5d6863;
  --line: #d8ddd5;
  --paper: #f6f4ee;
  --white: #ffffff;
  --green: #214a3c;
  --green-dark: #143228;
  --clay: #a9553c;
  --sky: #b9d7dc;
  --shadow: 0 24px 70px rgba(20, 50, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 244, 238, 0.92);
  box-shadow: 0 12px 30px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 54px;
}

.hero-media {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://a0.muscache.com/im/pictures/miso/Hosting-657282484689273972/original/c378c288-62e5-4fb7-9d53-e889faec10b4.jpeg");
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 31, 27, 0.78), rgba(20, 31, 27, 0.26) 58%, rgba(20, 31, 27, 0.08)),
    linear-gradient(0deg, rgba(20, 31, 27, 0.54), rgba(20, 31, 27, 0.04) 45%);
}

.hero-content {
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  padding: 13px 20px;
}

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

.button.airbnb {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

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

.quick-facts div {
  padding: 26px clamp(16px, 3vw, 40px);
  background: var(--white);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 30px;
}

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

.feature-panel {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-panel p,
.split-section p,
.guide-list p,
.booking-copy p {
  color: var(--muted);
}

.gallery {
  padding-top: clamp(64px, 9vw, 120px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gallery-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  gap: 10px;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
  background: var(--line);
}

.gallery-preview img:first-child {
  grid-row: span 2;
  min-height: 450px;
  border-radius: 8px 0 0 8px;
}

.gallery-preview img:nth-child(3) {
  border-radius: 0 8px 0 0;
}

.gallery-preview img:nth-child(4) {
  border-radius: 0 0 8px 0;
}

.photo-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 33, 31, 0.18);
  font-weight: 900;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
  background: var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 50, 40, 0.11);
}

.gallery-grid img:nth-child(9n + 1) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 432px;
}

.gallery-grid img:nth-child(7n + 4) {
  grid-column: span 2;
}

.amenities {
  background: var(--green-dark);
  color: var(--white);
}

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

.amenities h2 {
  color: var(--white);
}

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

.amenity-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.rate-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rate-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

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

.rate-table span {
  color: var(--muted);
  font-weight: 800;
}

.guide {
  padding-top: 0;
}

.guide-list {
  display: grid;
  gap: 14px;
}

.guide-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.guide-list span {
  color: var(--clay);
  font-weight: 900;
}

.guide-list h3,
.guide-list p {
  grid-column: 2;
}

.photo-page {
  background: var(--white);
}

.photo-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.back-link {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.photo-cta {
  color: var(--green-dark);
}

.photo-main {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.photo-title {
  margin-bottom: 26px;
}

.photo-title h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.photo-room-nav {
  position: sticky;
  top: 73px;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 18px;
  margin-bottom: 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.photo-room-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.room-photo-sections {
  display: grid;
  gap: 58px;
}

.room-photo-section {
  scroll-margin-top: 145px;
}

.room-photo-heading {
  margin-bottom: 18px;
}

.room-photo-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.room-photo-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.airbnb-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 10px;
}

.photo-card {
  margin: 0;
}

.photo-card a {
  display: block;
  min-height: 230px;
  overflow: hidden;
  background: var(--line);
  border-radius: 8px;
}

.photo-card:nth-child(10n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card:nth-child(10n + 1) a {
  min-height: 468px;
}

.photo-card:nth-child(10n + 4),
.photo-card:nth-child(10n + 7) {
  grid-column: span 2;
}

.photo-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.airbnb-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.photo-card a:hover img {
  filter: brightness(0.92);
  transform: scale(1.02);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--white);
}

.booking-link-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.booking-link-panel .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--green-dark);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

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

  .nav-links {
    display: none;
  }

  .quick-facts,
  .stay-grid,
  .amenity-grid,
  .split-section,
  .booking {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-preview,
  .airbnb-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-preview img:nth-child(3),
  .gallery-preview img:nth-child(4) {
    border-radius: 0;
  }

  .split-section > *,
  .booking > * {
    grid-column: 1 / -1;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 18px 36px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
  }

  .quick-facts,
  .stay-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-preview,
  .airbnb-photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview img,
  .gallery-preview img:first-child {
    min-height: 250px;
    border-radius: 8px;
  }

  .photo-room-nav {
    top: 67px;
  }

  .photo-card,
  .photo-card:nth-child(10n + 1),
  .photo-card:nth-child(10n + 4),
  .photo-card:nth-child(10n + 7) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-card a,
  .photo-card:nth-child(10n + 1) a {
    min-height: 260px;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(9n + 1),
  .gallery-grid img:nth-child(7n + 4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .rate-table div,
  .site-footer {
    display: grid;
  }
}
