:root {
  --forest: #1c3329;
  --forest-dark: #12211a;
  --cream: #f5f1e8;
  --copper: #b5651d;
  --copper-light: #d98a4a;
  --ink: #241a12;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--forest-dark);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
}

body.is-loading {
  overflow: hidden;
}

/* ---------- Loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
}

.loader-bar {
  display: block;
  width: 140px;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(245, 241, 232, 0.18);
}

.loader-bar__fill {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--copper-light);
  animation: loader-sweep 1.1s ease-in-out infinite;
}

@keyframes loader-sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(340%); }
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.5rem, 4vw, 3rem);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
}

.site-header.header-hidden {
  transform: translateY(-130%);
  opacity: 0;
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.site-logo__word {
  font-weight: 500;
}

.site-logo__amp {
  color: var(--copper-light);
  font-style: italic;
}

.site-nav {
  display: flex;
  gap: 2.25rem;
}

.site-nav a {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  padding-bottom: 0.35rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 1080vh;
  height: 1080dvh;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(18, 33, 26, 0.2) 0%,
    rgba(18, 33, 26, 0) 35%,
    rgba(18, 33, 26, 0) 55%,
    rgba(18, 33, 26, 0.75) 100%
  );
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
  z-index: 4;
  padding: 0 1.5rem;
  text-align: center;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

body.is-loaded .hero-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-caption--top {
  bottom: auto;
  top: 9%;
}

.hero-caption__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper-light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.75), 0 6px 18px rgba(0, 0, 0, 0.6);
}

.hero-caption__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto 0.9rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 4px 14px rgba(0, 0, 0, 0.65), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-caption__body {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 46ch;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 3px 10px rgba(0, 0, 0, 0.6);
}

.meal-reveal {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}

.meal-photo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.5)) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  transition: opacity 0.2s ease;
}

.meal-tag {
  position: absolute;
  z-index: 0;
  left: 100%;
  bottom: 6%;
  margin-left: 1.5rem;
  width: max-content;
  max-width: 220px;
  text-align: left;
  color: #ffffff;
}

.meal-tag__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9), 0 6px 16px rgba(0, 0, 0, 0.8);
}

.meal-tag__name {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9), 0 8px 22px rgba(0, 0, 0, 0.8);
}

.meal-tag__desc {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9), 0 6px 16px rgba(0, 0, 0, 0.8);
}

.meal-nav-btn {
  position: absolute;
  top: 22%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 241, 232, 0.55);
  border-radius: 50%;
  background: rgba(18, 33, 26, 0.45);
  color: var(--cream);
  cursor: pointer;
  opacity: 0.9;
  pointer-events: none;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.meal-reveal.is-visible .meal-nav-btn {
  pointer-events: auto;
}

.meal-nav-btn:hover {
  background: var(--copper);
  opacity: 1;
}

.meal-nav-btn--prev {
  left: 0;
  transform: translate(-135%, -50%);
}

.meal-nav-btn--next {
  right: 0;
  transform: translate(135%, -50%);
}

.meal-nav-btn--prev:hover {
  transform: translate(-135%, -50%) scale(1.08);
}

.meal-nav-btn--next:hover {
  transform: translate(135%, -50%) scale(1.08);
}

@media (max-width: 900px) {
  .meal-tag {
    left: 50%;
    bottom: auto;
    top: 100%;
    margin-left: 0;
    margin-top: 1rem;
    max-width: 260px;
    text-align: center;
    transform: translateX(-50%);
  }

  .meal-nav-btn {
    top: 50%;
  }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Shared section text ---------- */

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.75rem 0 1.25rem;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 52ch;
}

/* Scroll-reveal: JS toggles .in-view on .reveal sections via IntersectionObserver */

.reveal .section-eyebrow,
.reveal .section-heading,
.reveal .section-body,
.reveal .cta-button,
.reveal .contact-link {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view .section-eyebrow { transition-delay: 0.05s; }
.reveal.in-view .section-heading { transition-delay: 0.16s; }
.reveal.in-view .section-body { transition-delay: 0.28s; }
.reveal.in-view .cta-button,
.reveal.in-view .contact-link { transition-delay: 0.4s; }

.reveal.in-view .section-eyebrow,
.reveal.in-view .section-heading,
.reveal.in-view .section-body,
.reveal.in-view .cta-button,
.reveal.in-view .contact-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Book Now ---------- */

.cta-section {
  background: var(--cream);
  color: var(--ink);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}

.cta-section .section-body {
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.05rem 2.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: var(--forest);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.cta-button:hover::before {
  transform: scaleX(1);
}

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

/* ---------- Our Story ---------- */

.story-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(1.5rem, 6vw, 6rem);
}

.story-section__mark {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14rem, 32vw, 26rem);
  line-height: 1;
  color: rgba(245, 241, 232, 0.05);
  pointer-events: none;
  user-select: none;
}

.story-deer {
  position: absolute;
  z-index: 1;
  right: 6%;
  bottom: 10%;
  width: clamp(160px, 16vw, 240px);
  aspect-ratio: 240 / 160;
  pointer-events: none;
}

.story-deer svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
}

.story-deer__body,
.story-deer__neck,
.story-deer__leg,
.story-deer__tail,
.story-deer__ear,
.story-deer__skull,
.story-deer__snout {
  stroke: rgba(245, 241, 232, 0.55);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-deer__antler {
  stroke: var(--copper-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-deer__head {
  transform-box: fill-box;
  transform-origin: 71% 65%;
  animation: deer-chew 1.8s ease-in-out infinite;
}

.story-deer__grass path {
  stroke: rgba(150, 176, 130, 0.55);
  stroke-width: 2;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: grass-sway 2.6s ease-in-out infinite;
}

.story-deer__grass path:nth-child(1) { animation-delay: 0s; }
.story-deer__grass path:nth-child(2) { animation-delay: 0.3s; }
.story-deer__grass path:nth-child(3) { animation-delay: 0.6s; }
.story-deer__grass path:nth-child(4) { animation-delay: 0.15s; }

@keyframes deer-chew {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(1px); }
}

@keyframes grass-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .story-deer__head,
  .story-deer__grass path {
    animation: none;
  }
}

.story-section__inner {
  position: relative;
  z-index: 1;
  max-width: 40vw;
}

.story-section .section-body {
  color: var(--cream);
}

.story-section .section-eyebrow {
  color: var(--copper-light);
}

/* ---------- Contact ---------- */

.contact-section {
  background: var(--cream);
  color: var(--ink);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6rem clamp(1.5rem, 6vw, 6rem);
}

.contact-section__inner {
  max-width: 36vw;
  text-align: right;
}

.contact-section .section-body {
  margin-left: auto;
}

.contact-link {
  display: inline-block;
  position: relative;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  text-decoration: none;
}

.contact-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--copper);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  display: flex;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.site-footer__tagline {
  font-size: 0.95rem;
  opacity: 0.7;
  letter-spacing: 0.03em;
}

.site-footer__nav {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.site-footer__nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.site-footer__nav a:hover {
  opacity: 1;
  color: var(--copper-light);
}

.site-footer__social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-footer__social a:hover {
  opacity: 1;
  color: var(--copper-light);
  transform: translateY(-2px);
}

.site-footer__rule {
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: rgba(245, 241, 232, 0.18);
  margin: 2rem 0 1rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .story-section__inner {
    max-width: 100%;
  }

  .story-section {
    padding: 5rem 1.5rem;
  }

  .contact-section {
    justify-content: center;
    padding: 5rem 1.5rem;
  }

  .contact-section__inner {
    max-width: 100%;
    text-align: center;
  }

  .contact-section .section-body {
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.25rem 1.25rem 1rem;
    background: linear-gradient(
      to bottom,
      rgba(10, 18, 14, 0.65) 0%,
      rgba(10, 18, 14, 0.35) 65%,
      rgba(10, 18, 14, 0) 100%
    );
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(245, 241, 232, 0.45);
    border-radius: 999px;
    transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    border-color: var(--copper-light);
  }
}
