:root {
  --ink: #13231f;
  --forest: #17372f;
  --green: #285748;
  --gold: #b98b48;
  --terracotta: #a7563f;
  --sky: #dfeaf0;
  --paper: #fffdf8;
  --muted: #65716d;
  --line: rgba(19, 35, 31, .14);
  --shadow: 0 24px 70px rgba(19, 35, 31, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.nav-open .site-header {
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 10px 40px rgba(19, 35, 31, .12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 26px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: .74;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.site-nav button {
  min-height: 42px;
  padding: 11px 13px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav button:hover {
  background: rgba(255, 255, 255, .16);
}

.is-scrolled .site-nav a:hover,
.is-scrolled .site-nav button:hover {
  background: rgba(23, 55, 47, .08);
}

.nav-book {
  background: var(--gold) !important;
  color: #17140f !important;
  font-weight: 800 !important;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 60px;
  overflow: hidden;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 20, .82), rgba(12, 24, 20, .42) 54%, rgba(12, 24, 20, .18)),
    linear-gradient(0deg, rgba(12, 24, 20, .7), transparent 45%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 132px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: 0;
}

.lead {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: clamp(19px, 2.4vw, 30px);
  color: rgba(255, 255, 255, .88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #17140f;
  background: var(--gold);
}

.button.secondary {
  color: inherit;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, .08);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 44px;
}

.quick-facts span,
.review-stats article,
.feature-grid article,
.room-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
}

.quick-facts span {
  padding: 16px;
  color: var(--ink);
}

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

.quick-facts strong {
  font-size: 20px;
}

.quick-facts em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--forest);
  color: white;
}

.booking-strip a {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}

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

.intro,
.reviews,
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  font-size: 17px;
}

.intro-copy p {
  margin: 0 0 18px;
  color: #34433f;
  font-size: 19px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
}

.feature-grid article {
  padding: 24px;
  background: #fff;
}

.feature-grid p,
.room-card p,
.section-heading p,
.cafe-copy p,
.location-copy p {
  color: var(--muted);
}

.icon {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--terracotta);
  font-weight: 900;
}

.visual-section,
.cafe,
.location {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img:first-child {
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  position: absolute;
  width: 46%;
  right: 5%;
  bottom: 0;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
  color: #34433f;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.room-card {
  overflow: hidden;
  background: #fff;
}

.room-card img {
  height: 420px;
  object-fit: cover;
}

.room-card div {
  padding: 22px;
}

.cafe {
  background: var(--sky);
}

.wide-photo img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--forest);
  cursor: zoom-in;
}

.gallery-grid img {
  height: 360px;
  object-fit: cover;
  transition: transform .28s ease, opacity .28s ease;
}

.gallery-grid button:hover img {
  opacity: .82;
  transform: scale(1.04);
}

.reviews {
  background: var(--forest);
  color: white;
}

.reviews h2 {
  color: white;
}

.review-stats {
  display: grid;
  gap: 14px;
}

.review-stats article {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  color: var(--ink);
  background: white;
}

.review-stats strong {
  font-family: Georgia, serif;
  color: var(--terracotta);
  font-size: 44px;
  line-height: 1;
}

.location iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location .button.secondary {
  color: var(--forest);
  background: transparent;
}

.contact {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background: #f5f3ea;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-grid a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
}

.contact-grid span {
  color: var(--muted);
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px) 96px;
  color: rgba(255, 255, 255, .82);
  background: #111b18;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
}

.mobile-cta a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
  color: white;
  background: var(--forest);
  text-decoration: none;
  font-weight: 800;
}

.mobile-cta a:nth-child(2) {
  color: #17140f;
  background: var(--gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 13, 11, .9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  border-radius: 8px;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: white;
  background: transparent;
  font-size: 28px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a,
  .site-nav button {
    border-radius: 6px;
    text-align: left;
  }

  .hero {
    min-height: 92svh;
    padding: 106px 18px 34px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 24, 20, .44), rgba(12, 24, 20, .86)),
      linear-gradient(90deg, rgba(12, 24, 20, .42), rgba(12, 24, 20, .18));
  }

  .quick-facts,
  .booking-strip,
  .intro,
  .feature-grid,
  .visual-section,
  .room-grid,
  .cafe,
  .gallery-grid,
  .reviews,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .image-stack img:last-child {
    position: static;
    width: 72%;
    margin: -42px 0 0 auto;
  }

  .room-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    min-height: 180px;
  }

  .room-card img {
    height: 100%;
  }

  .gallery-grid img {
    height: 260px;
  }

  .review-stats article {
    grid-template-columns: 76px 1fr;
  }

  .contact-grid a {
    display: grid;
  }

  .mobile-cta {
    display: grid;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 24px;
  }

  .quick-facts span {
    padding: 12px 8px;
  }

  .quick-facts strong {
    font-size: 16px;
  }

  .quick-facts em {
    font-size: 11px;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 19px;
  }

  .hero {
    padding-bottom: 108px;
  }

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

  .section {
    padding: 58px 18px;
  }

  .feature-grid {
    padding: 0 18px 58px;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card img {
    height: 280px;
  }

  .location iframe {
    min-height: 340px;
  }
}
