@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@view-transition {
  navigation: auto;
}

:root {
  color-scheme: light;
  --cream: oklch(0.95 0.015 85);
  --paper: oklch(0.99 0.008 90);
  --ink: oklch(0.22 0.02 55);
  --ink-soft: oklch(0.32 0.02 55);
  --muted: oklch(0.48 0.02 55);
  --forest: oklch(0.32 0.04 155);
  --forest-deep: oklch(0.24 0.03 155);
  --wood: oklch(0.48 0.07 50);
  --terracotta: oklch(0.55 0.14 35);
  --terracotta-dark: oklch(0.47 0.13 35);
  --line: oklch(0.88 0.025 75);
  --white: #ffffff;
  --shadow: 0 24px 60px oklch(0.22 0.02 55 / 0.08);
  --radius: 1.15rem;
  --header-h: 4.35rem;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  hanging-punctuation: first last;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: oklch(0.55 0.14 35 / 0.22);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

a {
  color: var(--terracotta-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--terracotta);
}

h1,
h2,
h3,
.logo-name {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  margin: 0 0 0.7rem;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1140px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.95 0.015 85 / 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid oklch(0.88 0.025 75 / 0.8);
  view-transition-name: header;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px oklch(0.22 0.02 55 / 0.06);
}

.header-inner {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  view-transition-name: logo;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  object-fit: contain;
  background: #1a2e22;
}

p.error-code {
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  font-weight: 520;
  line-height: 0.9;
  color: var(--forest);
  margin: 0 0 0.35rem;
  letter-spacing: -0.04em;
}

.logo-name {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  display: block;
}

.logo-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 11px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 560;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary,
.site-nav .btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover,
.site-nav .btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: oklch(1 0 0 / 0.42);
}

.btn-ghost:hover {
  background: oklch(1 0 0 / 0.12);
  color: var(--white);
}

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

.btn-forest:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.24 0.03 155 / 0.12) 0%, oklch(0.22 0.03 155 / 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2.25rem));
  margin: 0 auto 5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--wood);
}

.hero .eyebrow,
.section-forest .eyebrow {
  color: #f0d9c6;
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
}

.hero p {
  max-width: 36rem;
  font-size: 1.16rem;
  color: oklch(0.97 0.01 90 / 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.page-hero {
  padding: 4.2rem 0 2.2rem;
  background:
    radial-gradient(circle at 88% 8%, oklch(0.55 0.14 35 / 0.07), transparent 32%),
    var(--cream);
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.page-hero p.error-code {
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  font-weight: 520;
  line-height: 0.9;
  color: var(--forest);
  margin: 0 0 0.35rem;
  letter-spacing: -0.04em;
}

.notice {
  background: oklch(0.93 0.03 70);
  border-bottom: 1px solid oklch(0.86 0.04 70);
  color: var(--ink);
  font-size: 0.94rem;
}

.notice .wrap {
  padding: 0.8rem 0;
  display: flex;
  gap: 0.75rem 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.notice strong {
  color: var(--terracotta-dark);
  white-space: nowrap;
}

.section {
  padding: 5.25rem 0;
}

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

.section-forest {
  background: var(--forest-deep);
  color: #efe7db;
}

.section-forest h2,
.section-forest h3 {
  color: var(--white);
}

.lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.grid-3,
.grid-2,
.stats,
.gallery {
  display: grid;
  gap: 1.35rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  margin: 2.75rem 0 0;
}

.stat {
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 520;
  color: var(--forest);
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  margin: 2.4rem 0 0;
  padding: 0.35rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.amenities li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--forest-deep);
  background: none;
}

.amenities li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  transform: translateY(-0.12em);
}

.grid-2 > img,
.grid-2 > picture,
.inset-photo {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grid-2 > img,
.grid-2 > picture img,
.inset-photo img,
img.inset-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.inset-photo {
  margin-top: 1rem;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid oklch(0.88 0.025 75 / 0.6);
}

.card:hover {
  color: inherit;
}

.card picture {
  display: block;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

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

.card-body {
  padding: 1.3rem 1.35rem 1.5rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.hours th {
  font-weight: 600;
  width: 42%;
}

.hours-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.8rem;
}

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

.gallery-many {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2.stretch {
  align-items: stretch;
}

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

.eyebrow a:hover {
  color: var(--terracotta);
}

figure {
  margin: 0;
}

.gallery picture,
.zoom,
.zoom picture {
  display: block;
  width: 100%;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 16px;
}

.zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
}

.zoom:focus-visible {
  outline-offset: 4px;
}

.lightbox {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(1120px, calc(100vw - 2rem));
}

.lightbox::backdrop {
  background: oklch(0.18 0.02 155 / 0.82);
  backdrop-filter: blur(12px);
}

.lightbox-frame {
  position: relative;
  display: block;
}

.lightbox img {
  display: block;
  max-width: min(1120px, calc(100vw - 2rem));
  max-height: calc(100vh - 2.5rem);
  width: auto;
  height: auto;
  border-radius: 14px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.video-frame iframe,
.video-play,
.video-play picture,
.video-play img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-play {
  padding: 0;
  background: none;
  cursor: pointer;
  color: var(--white);
}

.video-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 4.2rem;
  height: 4.2rem;
  margin: -2.1rem 0 0 -2.1rem;
  border-radius: 999px;
  background: oklch(0.55 0.14 35 / 0.94);
  box-shadow: 0 10px 30px oklch(0.18 0.02 155 / 0.35);
  transition: transform 0.25s var(--ease);
}

.video-play-mark::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.3rem;
  border-style: solid;
  border-width: 0.8rem 0 0.8rem 1.25rem;
  border-color: transparent transparent transparent #fff;
}

.video-play:hover .video-play-mark,
.video-play:focus-visible .video-play-mark {
  transform: scale(1.06);
}

.video-label {
  position: absolute;
  left: 1.15rem;
  bottom: 1.05rem;
  z-index: 1;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px oklch(0.18 0.02 155 / 0.7);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 1.35rem;
}

.video-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.lead + .video-frame,
.lead + .video-grid {
  margin-top: 1.75rem;
}

.video-frame-forest {
  margin-top: 2.4rem;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: oklch(0.99 0.008 90 / 0.94);
  color: var(--forest-deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px oklch(0.18 0.02 155 / 0.28);
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--forest-deep);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--wood);
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.2rem 2.3rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--forest);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}

.contact-card,
.embed-frame {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--terracotta);
}

.map iframe,
.booking-embed iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
  min-height: 360px;
}

.map iframe {
  height: 28rem;
  background: #e8efe6;
}

.booking-embed iframe {
  min-height: 1050px;
  background: var(--paper);
}

#previo-booking-engine {
  min-height: 640px;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: var(--forest-deep);
  color: #d9cfc2;
  padding: 3.4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: #f3ebe1;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 1.25rem 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .grid-3,
  .grid-2,
  .stats,
  .gallery,
  .gallery-many,
  .video-grid,
  .video-grid-2,
  .amenities,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    margin-bottom: 2.6rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .booking-embed iframe {
    min-height: 80vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  @view-transition {
    navigation: none;
  }

  .card img,
  .btn,
  .video-play-mark,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: none;
  }
}
