:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --paper: #fffdf9;
  --ink: #1d2521;
  --muted: #65716b;
  --line: #d8d0c3;
  --accent: #2f6756;
  --accent-dark: #1f4c3f;
  --warm: #c39a68;
  --soft: #e8eee9;
  --shadow: 0 20px 60px rgba(47, 54, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid rgba(216, 208, 195, 0.78);
  backdrop-filter: blur(18px);
}

.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;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover {
  background: var(--soft);
  color: var(--accent-dark);
}

nav a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: calc(100vh - 75px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #ddd4c7;
}

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

.hero-copy {
  align-self: center;
  padding: clamp(32px, 6vw, 80px);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.lead {
  max-width: 640px;
  color: #39433d;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.quick-facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.copy-stack {
  color: #39433d;
  font-size: 19px;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.gallery-section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 56px);
  background: #e8e1d7;
  border-block: 1px solid var(--line);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1480px;
  margin: 0 auto 30px;
}

.gallery-heading h2,
.gallery-heading p {
  margin-bottom: 0;
}

.gallery-heading > p {
  color: var(--muted);
  font-weight: 700;
}

.gallery-groups {
  display: grid;
  gap: clamp(46px, 7vw, 88px);
  max-width: 1480px;
  margin: 0 auto;
}

.gallery-group {
  border: 0;
}

.gallery-cover {
  position: relative;
  display: grid;
  min-height: clamp(260px, 38vw, 520px);
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  list-style: none;
}

.gallery-cover::-webkit-details-marker {
  display: none;
}

.gallery-cover > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 38vw, 520px);
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-cover:hover > img {
  transform: scale(1.015);
}

.gallery-cover-content {
  grid-area: 1 / 1;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: end;
  align-items: end;
  gap: 4px 18px;
  padding: clamp(22px, 4vw, 46px);
  background: linear-gradient(to top, rgba(20, 29, 25, 0.82), rgba(20, 29, 25, 0.02) 68%);
  color: #fff;
}

.gallery-cover-content strong {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
}

.gallery-cover-content > span:not(.gallery-toggle) {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.gallery-toggle {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
}

.when-open {
  display: none;
}

.gallery-group[open] .gallery-cover {
  min-height: 0;
  border-radius: 8px;
  background: var(--accent-dark);
  box-shadow: none;
}

.gallery-group[open] .gallery-cover > img {
  display: none;
}

.gallery-group[open] .gallery-cover-content {
  grid-area: auto;
  padding: 22px 24px;
  background: transparent;
}

.gallery-group[open] .gallery-cover-content strong {
  font-size: clamp(24px, 3vw, 34px);
}

.gallery-group[open] .when-closed {
  display: none;
}

.gallery-group[open] .when-open {
  display: inline;
}

.gallery-group[open] .gallery {
  margin-top: 16px;
}

.gallery-cover:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1480px;
  margin: 0 auto;
}

.gallery-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin-left: 0;
}

.gallery button {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: #ddd4c7;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(47, 54, 48, 0.12);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.gallery button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(12, 17, 15, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-frame {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 64px 24px 24px;
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  height: 100%;
  margin: 0;
  min-width: 0;
  min-height: 0;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  width: 50px;
  height: 66px;
  justify-self: center;
  border-radius: 8px;
  font-size: 42px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.info-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.amenities {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

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

.amenities-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(47, 54, 48, 0.08);
}

.amenities-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.amenities-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.amenities-grid p {
  margin: 0;
  color: var(--muted);
}

.faq {
  max-width: 960px;
}

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

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

summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 800;
}

details p {
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: var(--accent-dark);
  color: #fff;
}

.contact-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.contact-band .eyebrow {
  color: #d7c3a5;
}

address {
  display: grid;
  gap: 9px;
  align-content: center;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

address strong {
  font-size: 22px;
}

address span {
  color: rgba(255, 255, 255, 0.78);
}

address a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #17211c;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer div {
  max-width: 820px;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }

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

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    padding-inline: 4px;
    white-space: nowrap;
  }

  .brand strong,
  .brand small {
    white-space: normal;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-copy {
    padding: 30px 18px 44px;
  }

  h1 {
    font-size: 42px;
  }

  .lead,
  .copy-stack,
  .contact-band p {
    font-size: 17px;
  }

  .quick-facts,
  .info-grid,
  .gallery,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 10px;
  }

  .gallery-cover-content,
  .gallery-group[open] .gallery-cover-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .gallery-toggle {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .lightbox-frame {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    padding: 68px 4px 16px;
  }

  .lightbox-nav {
    width: 40px;
    height: 56px;
    font-size: 34px;
  }

  .site-footer {
    display: block;
  }
}
