:root {
  --ink: #17231c;
  --forest: #234536;
  --sage: #dbe4dc;
  --rust: #b85635;
  --sun: #f2c879;
  --paper: #f7f5ef;
  --white: #fffefb;
  --line: #d7d8cf;
  --muted: #657069;
  --shadow: 0 18px 55px rgba(23, 35, 28, 0.14);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
img { max-width: 100%; }
h1, h2, h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}
h2 { max-width: 720px; font-size: 2.8rem; }
a { color: inherit; }
svg { flex: 0 0 auto; stroke-width: 1.7; }

/* Hero */
.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  color: var(--white);
  background-position: center 57%;
  background-size: cover;
}
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 27, 19, 0.84), rgba(11, 27, 19, 0.46) 48%, rgba(11, 27, 19, 0.06) 78%),
    linear-gradient(0deg, rgba(11, 27, 19, 0.58), transparent 45%);
}
.nav, .hero-content {
  width: min(1180px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}
.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-family: "Newsreader", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}
.brand small {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--sun); }
.nav-links .nav-action {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  color: var(--white);
}
.hero-content { margin-top: auto; margin-bottom: auto; padding: 5rem 0 7rem; }
.eyebrow, .kicker {
  margin: 0 0 0.8rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero .eyebrow { color: var(--sun); }
.hero h1 { max-width: 760px; color: var(--white); font-size: 5rem; }
.subtitle {
  max-width: 590px;
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--rust); }
.button-primary:hover { background: #9d4328; }
.button-quiet { border-color: rgba(255, 255, 255, 0.6); color: var(--white); background: rgba(13, 32, 22, 0.14); }
.hero-note {
  position: absolute;
  right: max(32px, calc((100% - 1180px) / 2));
  bottom: 2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}
.hero-note svg { width: 16px; }

/* Facts */
.facts {
  width: min(1040px, calc(100% - 64px));
  min-height: 118px;
  margin: -38px auto 0;
  padding: 1.5rem 2.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.fact {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0 1.2rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}
.fact:last-child { border-right: 0; }
.fact svg { width: 25px; height: 25px; color: var(--rust); }
.fact strong { display: block; color: var(--ink); font-size: 0.98rem; }

/* Core sections */
.section { width: min(1120px, calc(100% - 64px)); margin: 0 auto; padding: 7rem 0; }
.section.alt, .gallery-section, .section.cta {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100% - 1120px) / 2));
  padding-left: max(32px, calc((100% - 1120px) / 2));
}
.section.alt { background: var(--white); border-block: 1px solid var(--line); }
.section.alt > * { max-width: 1120px; margin-right: auto; margin-left: auto; }
.section-heading { margin-bottom: 3rem; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.heading-row p:last-child { max-width: 340px; margin: 0 0 0.4rem; color: var(--muted); font-size: 0.95rem; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 6rem;
}
.text > p:first-child { margin-top: 0; color: var(--ink); font-size: 1.08rem; }
.text p { color: var(--muted); }
.checklist { margin: 2rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.checklist li { position: relative; margin-bottom: 0.65rem; padding-left: 1.7rem; color: var(--ink); font-size: 0.9rem; }
.checklist li::before { position: absolute; left: 0; content: "✓"; color: var(--rust); font-weight: 600; }
.feature-photo { position: relative; margin: 0; }
.feature-photo::before { position: absolute; z-index: -1; top: -22px; right: -22px; width: 44%; height: 38%; content: ""; background: var(--sage); }
.photo { width: 100%; height: 520px; display: block; object-fit: cover; border-radius: 2px; }
.feature-photo figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: min(320px, 72%);
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--forest);
  font-size: 0.78rem;
}

/* Rooms and amenities */
.rooms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.room-card { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.room-card .photo, .placeholder-photo.small { width: 100%; height: 250px; margin-bottom: 1.2rem; }
.room-card .photo { transition: transform 350ms ease; }
.room-card:hover .photo { transform: translateY(-4px); }
.placeholder-photo {
  min-height: 250px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), repeating-linear-gradient(45deg, var(--sage) 0 1px, transparent 1px 12px);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}
.room-card h3 { margin-bottom: 0.25rem; font-size: 1.35rem; }
.room-card p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.amenities { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity {
  min-height: 145px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.5);
  font-size: 0.88rem;
}
.amenity svg { width: 27px; height: 27px; color: var(--rust); }

/* Gallery */
.gallery-section { color: var(--white); background: var(--forest); }
.gallery-section h2 { color: var(--white); }
.gallery-section .kicker { color: var(--sun); }
.gallery-heading-actions { max-width: 350px; }
.gallery-heading-actions p { margin: 0 0 1rem; color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }
.gallery-controls { display: flex; justify-content: flex-end; gap: 0.55rem; }
.gallery-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}
.gallery-control:hover, .gallery-control:focus-visible { color: var(--forest); background: var(--white); }
.gallery-control svg { width: 18px; height: 18px; }
.gallery.full {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 38vw, 470px);
  gap: 0.9rem;
  padding: 0 0 1.25rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--sun) rgba(255, 255, 255, 0.15);
  scrollbar-width: thin;
}
.gallery.full::-webkit-scrollbar { height: 7px; }
.gallery.full::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.15); }
.gallery.full::-webkit-scrollbar-thumb { background: var(--sun); }
.gallery-item { height: 430px; min-width: 0; display: block; overflow: hidden; scroll-snap-align: start; background: #152b21; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms ease, opacity 500ms ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { opacity: 0.82; transform: scale(1.025); }

/* Information and surroundings */
.info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.info-card { padding: 1.7rem 1.7rem 0 0; }
.info-card + .info-card { padding-left: 1.7rem; border-left: 1px solid var(--line); }
.info-card h3 { margin-bottom: 0.7rem; color: var(--forest); font-size: 1.16rem; }
.info-card p { margin: 0; color: var(--muted); font-size: 0.84rem; }
.lage-text { max-width: 780px; color: var(--muted); font-size: 1.05rem; }
.section > .gallery:not(.full) { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 0.8rem; margin-top: 3rem; }
.section > .gallery:not(.full) img { width: 100%; height: 310px; display: block; object-fit: cover; }
.section > .gallery:not(.full) img:nth-child(2) { margin-top: 2rem; }
.area-cards { margin-top: 5rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.area-card {
  min-height: 280px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.area-card > svg { width: 28px; height: 28px; margin-bottom: 2.2rem; color: var(--rust); }
.area-card h3 { margin-bottom: 0.65rem; font-size: 1.35rem; }
.area-card p { margin: 0 0 1.2rem; color: var(--muted); font-size: 0.88rem; }
.area-card a { width: fit-content; margin-top: auto; color: var(--forest); font-size: 0.8rem; font-weight: 600; text-decoration-color: var(--rust); text-underline-offset: 0.3rem; }

/* Host, CTA and footer */
.host-card { max-width: 820px; display: grid; grid-template-columns: 80px 1fr; align-items: start; gap: 2rem; }
.host-avatar { width: 80px; height: 80px; display: grid; place-items: center; color: var(--white); background: var(--rust); border-radius: 50%; font-family: "Newsreader", serif; font-size: 1.8rem; }
.host-card h3 { font-size: 1.5rem; }
.host-card p { margin: 0.6rem 0 0; color: var(--muted); }
.section.cta { padding-right: max(32px, calc((100% - 860px) / 2)); padding-left: max(32px, calc((100% - 860px) / 2)); text-align: center; color: var(--white); background: var(--ink); }
.cta h2 { margin: 0 auto; color: var(--white); }
.cta p:not(.kicker) { margin: 1.2rem auto 2rem; color: rgba(255, 255, 255, 0.68); }
.cta .kicker { color: var(--sun); }
footer { padding: 2.5rem 32px; text-align: center; color: var(--muted); background: var(--paper); font-size: 0.78rem; }
footer p { margin: 0; }
footer strong { color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { opacity: 0; animation: reveal 650ms ease forwards; }
  .hero-content h1 { animation-delay: 100ms; }
  .hero-content .subtitle { animation-delay: 180ms; }
  .hero-content .hero-actions { animation-delay: 260ms; }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 900px) {
  .nav, .hero-content { width: calc(100% - 40px); }
  .nav-links a:not(.nav-action) { display: none; }
  .hero h1 { max-width: 620px; font-size: 4rem; }
  .facts { width: calc(100% - 40px); grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n + 2) { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
  .fact:nth-child(n + 3) { padding-top: 1rem; }
  .section { width: calc(100% - 40px); padding: 5.5rem 0; }
  .section.alt, .gallery-section, .section.cta { width: 100%; padding-right: 20px; padding-left: 20px; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .amenities, .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-card:nth-child(3) { padding-left: 0; border-left: 0; }
  .info-card:nth-child(n + 3) { margin-top: 2rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  h2 { font-size: 2.15rem; }
  .hero { min-height: 760px; background-position: 48% center; }
  .nav { min-height: 76px; gap: 0.7rem; }
  .brand { font-size: 1rem; }
  .nav-links { gap: 0; }
  .nav-links .nav-action { padding: 0.55rem 0.75rem; font-size: 0.78rem; }
  .hero-content { padding: 5rem 0 8rem; }
  .hero h1 { font-size: 3.15rem; }
  .subtitle { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-note { right: 20px; left: 20px; justify-content: center; text-align: center; }
  .facts { width: calc(100% - 24px); margin-top: -30px; padding: 1.2rem 0.6rem; }
  .fact { justify-content: flex-start; gap: 0.55rem; padding-right: 0.7rem; padding-left: 0.7rem; font-size: 0.67rem; }
  .fact svg { width: 20px; height: 20px; }
  .fact strong { font-size: 0.82rem; }
  .section-heading { margin-bottom: 2rem; }
  .heading-row { align-items: start; flex-direction: column; gap: 1rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .feature-photo::before { top: -12px; right: -12px; }
  .photo { height: 430px; }
  .rooms { grid-template-columns: 1fr; gap: 2rem; }
  .room-card .photo, .placeholder-photo.small { height: 270px; }
  .amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity { min-height: 128px; padding: 1.1rem; gap: 1.2rem; overflow-wrap: anywhere; }
  .gallery-heading-actions { max-width: none; }
  .gallery-controls { justify-content: flex-start; }
  .gallery.full { grid-auto-columns: 84vw; }
  .gallery-item { height: 390px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card, .info-card + .info-card, .info-card:nth-child(3), .info-card:nth-child(n + 3) { margin: 0; padding: 1.5rem 0; border: 0; border-bottom: 1px solid var(--line); }
  .section > .gallery:not(.full) { grid-template-columns: 1fr 1fr; }
  .section > .gallery:not(.full) img { height: 230px; }
  .section > .gallery:not(.full) img:first-child { grid-column: 1 / 3; }
  .section > .gallery:not(.full) img:nth-child(2) { margin-top: 0; }
  .area-cards { margin-top: 3rem; grid-template-columns: 1fr; }
  .area-card { min-height: 250px; padding: 1.5rem; }
  .host-card { grid-template-columns: 60px 1fr; gap: 1rem; }
  .host-avatar { width: 60px; height: 60px; }
}

@media (max-width: 380px) {
  .brand small { display: none; }
  .hero h1 { font-size: 2.7rem; }
}