/* Orange Otter — brand: #1f3a32 deep green, #c1683a burnt orange.
   Tints/shades derived from those two only, plus cream and near-black. */

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pacifico";
  src: url("../fonts/pacifico-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #1f3a32;
  --green-deep: #152a24;
  --green-tint: #2e5044;
  --orange: #c1683a;
  --orange-bright: #d97f4e;
  --cream: #f6efe6;
  --cream-dim: #e8dfd2;
  --ink: #1b1b18;
  --head-h: 3.5rem;
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: var(--head-h);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--green);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

img { max-width: 100%; }

a { color: var(--orange-bright); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}
.btn--primary {
  background: var(--orange);
  color: var(--ink);
}
.btn--primary:hover { background: var(--orange-bright); }
.btn--small { padding: 0.45rem 1.1rem; font-size: 0.95rem; }
.btn--hero {
  font-size: 1.2rem;
  padding: 1.05rem 2.5rem;
  box-shadow: 0 6px 24px rgba(21, 42, 36, 0.45);
}

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

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
  background: rgba(31, 58, 50, 0.88);
  backdrop-filter: blur(6px);
}
.site-head__brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-right: auto;
}
.site-head__nav { display: none; gap: 1.25rem; }
.site-head__nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-head__nav a:hover { color: var(--orange-bright); }

@media (min-width: 768px) {
  .site-head { padding: 0 1.5rem; }
  .site-head__nav { display: flex; }
}

/* ---------- The fly-through journey ---------- */

.journey {
  position: relative;
  height: 100vh;
  height: 100svh;
}

/* With JS running, the journey gains scroll length for the scrub.
   About one screen of intro plus four clip segments. */
body.js .journey.is-scrub {
  height: 380vh;
  height: 380svh;
}

.journey__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--green-deep);
}

.journey__hero,
.journey__vid,
.journey__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey__hero img,
.journey__vid,
.journey__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey__hero { z-index: 3; }
.journey__vid, .journey__poster { opacity: 0; }
.journey__poster { z-index: 1; }
.journey__vid { z-index: 2; }

.journey__scrim {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    to top,
    rgba(21, 42, 36, 0.82) 0%,
    rgba(21, 42, 36, 0.3) 30%,
    rgba(21, 42, 36, 0) 55%
  );
  pointer-events: none;
}

.journey__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.25rem 4.5rem;
}
.journey__copy--start {
  padding-bottom: 16vh;
  text-align: center;
}
.journey__copy--end {
  opacity: 0;
  visibility: hidden;
}

.journey__title {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  margin-bottom: 0.25em;
  text-shadow: 0 2px 18px rgba(21, 42, 36, 0.6);
}
.journey__title--end { font-size: clamp(1.9rem, 5.5vw, 3.4rem); }
.journey__sub {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  max-width: 32em;
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 12px rgba(21, 42, 36, 0.7);
}

.scroll-cue {
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0;
}

/* Reduced motion: static hero, no videos, simple page. */
@media (prefers-reduced-motion: reduce) {
  body.js .journey.is-scrub {
    height: 100vh;
    height: 100svh;
  }
  .journey__vid, .journey__poster { display: none; }
  .journey__copy--end { display: none; }
}

/* ---------- Content panels ---------- */

.panel {
  position: relative;
  z-index: 3;
  padding: 4.5rem 1.25rem;
}
.panel__inner { max-width: 70rem; margin: 0 auto; }
.panel h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }

.panel--cream { background: var(--cream); color: var(--ink); }
.panel--cream a { color: var(--orange); }
.panel a.btn--primary { color: var(--ink); }
.panel--green { background: var(--green); color: var(--cream); }
.panel--deep { background: var(--green-deep); color: var(--cream); }

/* Quote */

.quote {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1rem 0;
}
.quote blockquote {
  font-family: "Pacifico", "Playfair Display", Georgia, cursive;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  line-height: 1.5;
  color: var(--green);
  margin: 0 0 1.25rem;
}
.quote cite {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Menu */

.menu__cols {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .menu__cols { grid-template-columns: 1fr 1fr; }
}
.menu__col {
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.menu__col--day {
  background: #fffdf9;
  border: 1px solid var(--cream-dim);
}
.menu__col--night {
  background: var(--green);
  color: var(--cream);
}
.menu__col h3 { font-size: 1.4rem; }
.menu__col--day h3 { color: var(--orange); }
.menu__col--night h3 { color: var(--orange-bright); }
.menu__from {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(128, 118, 100, 0.35);
}
.menu__list li:last-child { border-bottom: 0; }
.menu__price { white-space: nowrap; font-weight: 600; }
.menu__note { max-width: 46em; }
.menu__small { font-size: 0.9rem; opacity: 0.85; margin: 0.75rem 0 0; }
.menu__takeaway {
  margin-top: 2.5rem;
  text-align: center;
}
.menu__downloads-intro {
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}
.menu__thumbs {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
}
.menu__thumbs a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.menu__thumbs img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(27, 27, 24, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.menu__thumbs a:hover img,
.menu__thumbs a:focus-visible img {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 27, 24, 0.26);
}
.menu__thumbs span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .menu__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Hours */

.hours {
  margin: 0 0 1rem;
  max-width: 34rem;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--green-tint);
}
.hours__row dt { font-weight: 600; }
.hours__row dd { margin: 0; }
.hours__note { color: var(--cream-dim); }

/* Find us */

.findus__address {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0;
}
.findus__map {
  background: var(--green-tint);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  max-width: 34rem;
}
.findus__map p { margin-top: 0; }

/* Book / contact */

.contact {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact { grid-template-columns: 1fr 1fr; max-width: 44rem; }
}
.contact__item {
  display: block;
  background: var(--green);
  border: 1px solid var(--green-tint);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--cream);
}
a.contact__item:hover { border-color: var(--orange-bright); }
.contact__label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.2rem;
}
.contact__value { font-size: 1.1rem; font-weight: 600; }
.contact__item--pending .contact__value { font-weight: 400; color: var(--cream-dim); }

.book__note { max-width: 40em; }

.book__form { max-width: 44rem; }
.book__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .book__grid { grid-template-columns: 1fr 1fr; }
  .book__wide { grid-column: 1 / -1; }
}
.book__form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.book__form input,
.book__form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--green-tint);
  background: var(--cream);
  color: var(--ink);
}

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

.site-foot {
  position: relative;
  z-index: 3;
  background: var(--green-deep);
  border-top: 1px solid var(--green-tint);
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
}
.site-foot__brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
  color: var(--orange-bright);
}
.site-foot__nap { margin: 0 0 0.75rem; }
.site-foot__social { display: flex; justify-content: center; gap: 1.25rem; }
.site-foot__social a { color: var(--cream); }
.site-foot__legal {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
