:root {
  --forest: #173f32;
  --forest-deep: #0d2b22;
  --forest-soft: #2e5e4d;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --wood: #b97242;
  --wood-light: #d5a170;
  --ink: #1f2823;
  --muted: #6b746e;
  --line: rgba(31, 40, 35, 0.14);
  --white: #fff;
  --shadow: 0 24px 65px rgba(22, 43, 34, 0.13);
  --serif: "Lora", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--wood-light);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.site-header.scrolled {
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 10px 35px rgba(13, 43, 34, 0.08);
  color: var(--forest-deep);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

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

.brand-logo {
  width: auto;
  height: 74px;
  filter: invert(1) grayscale(1) brightness(2.4);
  transition: filter 0.3s;
}

.site-header.scrolled .brand-logo {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-phone) {
  position: relative;
  padding: 31px 0;
}

.main-nav > a:not(.nav-phone)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.scrolled .nav-phone {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.nav-phone:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-deep);
}

.scrolled .nav-phone:hover {
  background: var(--wood);
  border-color: var(--wood);
  color: var(--white);
}

.nav-phone svg,
.button svg,
.contact-number svg,
.mobile-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media img {
  object-fit: cover;
  object-position: 52% center;
  animation: heroZoom 14s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 24, 18, 0.85) 0%, rgba(7, 24, 18, 0.5) 44%, rgba(7, 24, 18, 0.1) 80%),
    linear-gradient(0deg, rgba(7, 24, 18, 0.45) 0%, transparent 35%);
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--forest-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #f2d0ad;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(58px, 7.5vw, 108px);
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--wood-light);
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

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

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

.button-primary:hover {
  background: #c88150;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-deep);
}

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

.button-dark:hover {
  background: var(--wood);
}

.button-outline {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.button-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(610px, 48vw);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(13, 43, 34, 0.9);
  backdrop-filter: blur(8px);
}

.hero-facts div {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts strong {
  color: var(--wood-light);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: calc((100% - min(1180px, calc(100% - 48px))) / 2);
  width: 28px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--white);
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 21px); opacity: 0; }
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 9vw, 130px);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.04em;
}

.intro-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.intro-copy .lead-copy {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.25s;
}

.text-link:hover span {
  transform: translateX(5px);
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap > img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-image-wrap::before {
  position: absolute;
  z-index: -1;
  right: -30px;
  bottom: -30px;
  width: 65%;
  height: 70%;
  border: 1px solid rgba(185, 114, 66, 0.35);
  content: "";
}

.region-stamp {
  position: absolute;
  bottom: -42px;
  left: -55px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 45px rgba(13, 43, 34, 0.24);
}

.region-stamp svg {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  fill: none;
  stroke: rgba(213, 161, 112, 0.4);
  stroke-width: 1;
}

.region-stamp span {
  position: relative;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
}

.cabins {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.ornament {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ornament::before,
.ornament::after {
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.ornament::after {
  inset: 160px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cabin-card {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.16);
}

.cabin-photo {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.cabin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cabin-card:hover .cabin-photo img {
  transform: scale(1.035);
}

.cabin-count {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  background: rgba(13, 43, 34, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabin-content {
  padding: 38px 42px 42px;
}

.cabin-kicker {
  margin-bottom: 5px;
  color: var(--wood);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cabin-content h3 {
  margin-bottom: 25px;
  color: var(--forest-deep);
  font-size: 34px;
}

.cabin-specs {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.cabin-specs li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding-right: 11px;
  border-right: 1px solid var(--line);
}

.cabin-specs li + li {
  padding-left: 14px;
}

.cabin-specs li:last-child {
  border: 0;
}

.spec-icon {
  display: inline-flex;
  min-width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 114, 66, 0.4);
  border-radius: 50%;
  color: var(--wood);
  font-family: var(--serif);
  font-size: 13px;
}

.spec-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cabin-specs li > span:last-child {
  display: grid;
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.cabin-specs strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amenities {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
}

.amenity {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 18px;
  padding: 5px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.amenity:first-child {
  padding-left: 0;
  border-left: 0;
}

.amenity svg {
  width: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: var(--wood-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.amenity span {
  display: grid;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.5;
}

.amenity strong {
  color: var(--white);
  font-size: 14px;
}

.gallery-section {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  background: var(--forest);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, opacity 0.3s;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 29, 22, 0.72), transparent 45%);
  content: "";
  opacity: 0.8;
  transition: opacity 0.3s;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  bottom: 19px;
  left: 21px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

.gallery-extra {
  display: none;
}

.gallery.expanded .gallery-extra {
  display: block;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.location {
  display: grid;
  min-height: 820px;
  background: var(--forest);
  color: var(--white);
  grid-template-columns: 1fr 1fr;
}

.location-photo {
  min-height: 680px;
  overflow: hidden;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.location:hover .location-photo img {
  transform: scale(1.025);
}

.location-content {
  align-self: center;
  max-width: 680px;
  padding: 100px clamp(48px, 8vw, 130px);
}

.location-content > p:not(.eyebrow, .location-note) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.nearby-list {
  margin: 45px 0 28px;
  padding: 0;
  list-style: none;
}

.nearby-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.nearby-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.nearby-list > li > span {
  color: var(--wood-light);
  font-family: var(--serif);
  font-size: 12px;
}

.nearby-list div {
  display: grid;
}

.nearby-list strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.nearby-list small {
  color: rgba(255, 255, 255, 0.52);
}

.location-note {
  color: var(--wood-light);
  font-size: 12px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background: var(--wood);
  content: "";
  transition: transform 0.25s;
}

.accordion summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 650px;
  margin: -5px 50px 26px 0;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background: var(--forest-deep);
  color: var(--white);
  text-align: center;
}

.contact-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-pattern::before,
.contact-pattern::after {
  position: absolute;
  inset: 100px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.contact-pattern::after {
  inset: 220px;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin-bottom: 35px;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.2;
  transition: color 0.25s;
}

.contact-number:hover {
  color: var(--wood-light);
}

.contact-number svg {
  width: 38px;
  height: 38px;
}

.contact-email {
  margin: 28px 0 8px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-email a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-small {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.site-footer {
  padding: 65px 0 25px;
  background: #081e18;
  color: rgba(255, 255, 255, 0.65);
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 45px;
  padding-bottom: 55px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-logo {
  height: 100px;
  filter: invert(1) grayscale(1) brightness(2.4);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  justify-items: end;
  font-size: 12px;
}

.footer-contact a:first-child {
  color: var(--wood-light);
  font-size: 16px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(4, 17, 13, 0.95);
  color: var(--white);
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox figure {
  display: flex;
  max-width: min(80vw, 1350px);
  max-height: 84vh;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.lightbox figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--serif);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 25px;
  font-size: 42px;
  font-weight: 200;
}

.lightbox-nav {
  top: 50%;
  padding: 15px 25px;
  font-family: Arial, sans-serif;
  font-size: 54px;
  transform: translateY(-50%);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-count {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-phone) { font-size: 12px; }
  .hero-facts { width: 55vw; }
  .cabin-content { padding: 34px 28px 36px; }
  .cabin-specs { grid-template-columns: 1fr; gap: 12px; }
  .cabin-specs li,
  .cabin-specs li + li { padding: 0 0 12px; border: 0; border-bottom: 1px solid var(--line); }
  .cabin-specs li:last-child { border-bottom: 0; }
  .amenities { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
  .amenity:nth-child(3) { padding-left: 0; border-left: 0; }
  .location-content { padding-inline: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-nav { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 860px) {
  .section { padding: 95px 0; }
  .container { width: min(100% - 34px, 700px); }
  .site-header { color: var(--white); }
  .nav-wrap { min-height: 72px; }
  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }
  .nav-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform 0.25s, opacity 0.25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    background: var(--forest-deep);
    color: var(--white);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a:not(.nav-phone) { padding: 10px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
  .main-nav > a:not(.nav-phone)::after { display: none; }
  .main-nav .nav-phone { margin-top: 20px; border-color: rgba(255, 255, 255, 0.5); background: transparent; }
  .scrolled .main-nav .nav-phone { color: var(--white); }
  .hero { min-height: 720px; max-height: 900px; }
  .hero-content { padding-top: 20px; }
  .hero-facts { width: 100%; }
  .hero-facts div { min-height: 88px; padding: 16px 20px; }
  .hero-facts strong { font-size: 20px; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 75px; }
  .intro-copy { max-width: 620px; }
  .intro-image-wrap { width: calc(100% - 40px); margin-left: 40px; }
  .intro-image-wrap > img { min-height: 430px; }
  .region-stamp { left: -40px; width: 125px; height: 125px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 520px; }
  .cabin-grid { grid-template-columns: 1fr; }
  .cabin-photo { height: 360px; }
  .cabin-specs { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .cabin-specs li,
  .cabin-specs li + li { padding: 0 12px; border: 0; border-right: 1px solid var(--line); }
  .cabin-specs li:first-child { padding-left: 0; }
  .cabin-specs li:last-child { border-right: 0; }
  .gallery { grid-auto-rows: 230px; grid-template-columns: repeat(2, 1fr); }
  .gallery.expanded .gallery-extra:last-child { grid-column: span 2; }
  .location { min-height: 0; grid-template-columns: 1fr; }
  .location-photo { min-height: 480px; }
  .location-content { max-width: 700px; margin-inline: auto; padding: 90px max(24px, calc((100vw - 700px) / 2)); }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { max-width: 520px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact { justify-items: start; }
  .footer-nav { order: initial; grid-column: auto; justify-content: flex-start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 72px; font-size: 15px; }
  .container { width: calc(100% - 32px); }
  .section { padding: 78px 0; }
  .brand-logo { height: 62px; }
  .brand-footer .brand-logo { height: 92px; }
  .hero { align-items: flex-start; min-height: 740px; height: 100svh; }
  .hero-media img { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7, 24, 18, 0.84), rgba(7, 24, 18, 0.28)), linear-gradient(0deg, rgba(7, 24, 18, 0.65), transparent 50%); }
  .hero-content { padding-top: 150px; }
  .eyebrow { margin-bottom: 14px; font-size: 9px; }
  h1 { margin-bottom: 20px; font-size: clamp(48px, 15vw, 68px); }
  .hero-lead { max-width: 490px; margin-bottom: 26px; font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 50px; padding: 12px 15px; font-size: 11px; }
  .hero-facts { bottom: 72px; }
  .hero-facts div { min-height: 82px; padding: 14px 11px; }
  .hero-facts strong { font-size: 17px; }
  .hero-facts span { font-size: 8px; }
  h2 { font-size: clamp(37px, 11vw, 50px); }
  .intro-grid { gap: 60px; }
  .intro-copy .lead-copy { font-size: 17px; }
  .intro-image-wrap { width: calc(100% - 20px); margin-left: 20px; }
  .intro-image-wrap > img { min-height: 360px; }
  .intro-image-wrap::before { right: -12px; bottom: -12px; }
  .region-stamp { bottom: -34px; left: -20px; width: 105px; height: 105px; }
  .region-stamp span { font-size: 12px; }
  .section-heading { margin-bottom: 35px; }
  .cabin-photo { height: 245px; }
  .cabin-content { padding: 28px 22px 30px; }
  .cabin-content h3 { font-size: 29px; }
  .cabin-specs { grid-template-columns: 1fr; gap: 9px; }
  .cabin-specs li,
  .cabin-specs li + li { padding: 0 0 9px; border: 0; border-bottom: 1px solid var(--line); }
  .cabin-specs li:last-child { border-bottom: 0; }
  .amenities { grid-template-columns: 1fr; margin-top: 50px; gap: 0; }
  .amenity,
  .amenity:nth-child(3) { min-height: 85px; padding: 12px 0; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .amenity:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .gallery { grid-auto-rows: 190px; gap: 7px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-item span { bottom: 12px; left: 13px; font-size: 13px; }
  .location-photo { min-height: 360px; }
  .location-content { padding: 76px 16px; }
  .location-content > p:not(.eyebrow, .location-note) { font-size: 15px; }
  .nearby-list { margin-top: 30px; }
  .nearby-list strong { font-size: 15px; }
  .nearby-list small { font-size: 11px; }
  .accordion summary { padding: 23px 42px 23px 0; font-size: 17px; }
  .accordion details p { margin-right: 30px; }
  .contact { padding: 85px 0; }
  .contact h2 br { display: none; }
  .contact-number { gap: 10px; font-size: 32px; }
  .contact-number svg { width: 24px; height: 24px; }
  .contact-email { font-size: 13px; }
  .contact-small { max-width: 280px; margin-inline: auto; }
  .site-footer { padding-top: 50px; }
  .footer-main { gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-call {
    position: fixed;
    z-index: 1200;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--wood);
    color: var(--white);
    box-shadow: 0 12px 34px rgba(13, 43, 34, 0.35);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
  }
  .mobile-call svg { width: 23px; height: 23px; }
  .mobile-call span { display: grid; }
  .mobile-call small { font-size: 8px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
  .lightbox figure { max-width: 92vw; }
  .lightbox-nav { top: auto; bottom: 28px; padding: 10px 22px; font-size: 42px; }
  .lightbox-prev { left: 28px; }
  .lightbox-next { right: 28px; }
  .lightbox-count { right: 50%; bottom: 47px; transform: translateX(50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
