:root {
  --ink: #23241f;
  --muted: #69675e;
  --paper: #f7f1e7;
  --surface: #fffaf1;
  --soft: #ebe1d2;
  --line: #d8cab7;
  --green: #304332;
  --green-2: #526b4c;
  --clay: #9b714e;
  --gold: #d8bd82;
  --shadow: 0 22px 70px rgba(31, 34, 26, .13);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); line-height: 1.6; }
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, video { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); }
section, article, aside, div, nav, header, footer, main { min-width: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 241, 231, .92);
  border-bottom: 1px solid rgba(216, 202, 183, .74);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
  will-change: transform;
}

.site-header.is-hidden { transform: translateY(-100%); }

.nav-wrap {
  width: min(var(--max), calc(100% - 34px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 176px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.main-nav a {
  color: #3b3a33;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--green);
}

.main-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  letter-spacing: .02em;
}

.main-nav .nav-cta:hover {
  background: #1d2c20;
  color: #fff;
  border-color: #1d2c20;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 250, 241, .92);
  place-items: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  font-weight: 760;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { background: #1d2c20; border-color: #1d2c20; transform: translateY(-1px); }
.button.secondary { background: rgba(255, 250, 241, .94); border-color: rgba(255, 250, 241, .94); color: var(--green); }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.button.light { background: transparent; color: var(--green); border-color: var(--green); }
.button.inverted { background: #fffaf1; color: var(--green); border-color: #fffaf1; margin-top: 12px; }
.text-link { color: var(--green); border-bottom: 1px solid currentColor; padding-bottom: 2px; font-weight: 700; }

.container {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
}

.hero {
  min-height: 86svh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: #172017;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 28, 19, .72), rgba(20, 28, 19, .32) 52%, rgba(20, 28, 19, .14)),
    linear-gradient(0deg, rgba(20, 28, 19, .36), rgba(20, 28, 19, .02) 42%);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02) brightness(.94);
}

.hero-content {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 860;
}

.hero .eyebrow { color: #ead4a8; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
  font-weight: 400;
}

h2 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 400;
}

h3 { font-size: 1.08rem; font-weight: 800; }

.lead {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-actions,
.actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.actions.centered { justify-content: center; }

.stats {
  width: min(var(--max), calc(100% - 34px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 104px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.26rem; color: var(--green); }
.stat span { display: block; margin-top: 4px; color: var(--muted); }

.section { padding: 96px 0; }
.section.soft { background: var(--soft); }
.page-lead { max-width: 750px; margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

.intro-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .74fr);
  gap: 54px;
  align-items: center;
  margin-top: 42px;
}

.logo-panel {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(255, 250, 241, .72);
  border: 1px solid var(--line);
}

.logo-panel img {
  width: min(430px, 92%);
  opacity: .92;
}

.feature-list,
.fact-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.feature-list li,
.fact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
}

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

.service-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-card h3 { color: var(--green); }
.service-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.service-card li { padding: 8px 0; color: var(--muted); border-bottom: 1px solid rgba(216, 202, 183, .62); }
.service-card li:last-child { border-bottom: 0; }

.story-section { padding-top: 32px; }

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  gap: 62px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.story-row.reverse { grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr); }
.story-row.reverse .story-media { order: 2; }

.story-media {
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 1px 0 var(--line);
}

.story-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.story-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.05rem;
}

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

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(31, 34, 26, .08);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #131611;
  filter: saturate(.94) contrast(1.02) brightness(.98);
}

.video-card div { padding: 18px; }
.video-card h3 { color: var(--green); }
.video-card p { margin-top: 6px; font-size: .94rem; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.review-grid blockquote {
  margin: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.review-grid p {
  color: #3f3c35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.review-grid cite {
  margin-top: 24px;
  color: var(--clay);
  font-style: normal;
  font-weight: 800;
}

.gallery-section { margin-top: 70px; }
.gallery-section:first-child { margin-top: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gallery-item {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--soft);
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
  filter: saturate(.94) contrast(1.02) brightness(.99);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.04);
}

.reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: 42px;
  align-items: start;
  margin-top: 44px;
}

.form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 760;
  font-size: .94rem;
}

input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbbca7;
  border-radius: 2px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { min-height: 126px; resize: vertical; }
.status { min-height: 24px; color: var(--clay); font-weight: 760; }

.direct-card,
.contact-item {
  padding: 30px;
  background: var(--green);
  color: #fff;
}

.direct-card p,
.contact-item small {
  color: rgba(255,255,255,.76);
}

.direct-card a,
.contact-item strong { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0;
}

.contact-item span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 860;
}

.contact-item strong { display: block; font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-item small { display: block; margin-top: 8px; }

.site-footer {
  padding: 72px 0 46px;
  background: #171d16;
  color: #fff;
}

.footer-mark {
  display: flex;
  justify-content: center;
  padding-bottom: 44px;
}

.footer-mark img {
  width: min(360px, calc(100% - 48px));
  filter: invert(1);
  opacity: .9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 32px;
}

.footer-grid p,
.footer-grid a { color: rgba(255,255,255,.78); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 70px 54px;
  background: rgba(18, 23, 18, .92);
}

.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1120px, 100%); max-height: 82svh; object-fit: contain; box-shadow: 0 26px 90px rgba(0,0,0,.4); }
.lightbox button {
  position: absolute;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.lightbox-close { top: 18px; right: 22px; width: 46px; height: 46px; font-size: 28px; }
.lightbox-prev,
.lightbox-next { top: 50%; width: 50px; height: 62px; transform: translateY(-50%); font-size: 34px; }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-caption { position: absolute; left: 24px; right: 24px; bottom: 18px; color: rgba(255,255,255,.82); text-align: center; }

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-toggle { display: grid; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 14px; text-align: center; border-bottom: 1px solid var(--green); }

  .stats,
  .review-grid,
  .video-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-block,
  .story-row,
  .story-row.reverse,
  .reservation-panel {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .nav-wrap,
  .container,
  .hero-content,
  .stats { width: min(100% - 24px, var(--max)); }

  .brand img { width: 152px; }
  .hero { min-height: 78svh; }
  .hero-content { padding: 124px 0 54px; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3.4rem); }

  .stats,
  .review-grid,
  .video-grid,
  .feature-list,
  .field-grid,
  .footer-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-row { gap: 28px; padding: 48px 0; }
  .form { padding: 24px; }
  .lightbox { padding: 72px 16px 64px; }
  .lightbox-prev,
  .lightbox-next { top: auto; bottom: 12px; transform: none; }
}

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