:root {
  --teal: #3f6b54;
  --teal-deep: #2a4a39;
  --mustard: #c44536;
  --mustard-soft: #e8a39a;
  --cream: #f2ebe3;
  --paper: #f6f0e8;
  --ink: #141816;
  --ink-soft: #5c6560;
  --navy: #141816;
  --line: rgba(20, 24, 22, 0.12);
  --white: #f6f0e8;
  --radius: 2px;
  --nav-h: 84px;
  --font-serif: "Shippori Mincho", "Times New Roman", serif;
  --font-sans: "Figtree", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--mustard);
  color: var(--navy);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: var(--mustard-soft);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 14ch;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-intro {
  margin-top: 1.4rem;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

.wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wordmark em {
  font-style: italic;
  font-weight: 500;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3.5rem);
  height: var(--nav-h);
  color: var(--cream);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.nav.scrolled {
  background: rgba(20, 24, 22, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wordmark .apos {
  font-style: normal;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.88rem;
  font-weight: 400;
}

.nav-menu a {
  position: relative;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--mustard);
  transition: width 0.25s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--mustard);
  color: var(--navy);
  padding: 0.65rem 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle span:first-child { top: 0.9rem; }
.nav-toggle span:last-child { top: 1.4rem; }

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 1.15rem;
  transform: rotate(40deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 1.15rem;
  transform: rotate(-40deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: ken 22s ease-out forwards;
}

@keyframes ken {
  to { transform: scale(1); }
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 22, 0.42) 0%, rgba(20, 24, 22, 0.14) 34%, rgba(20, 24, 22, 0.86) 100%),
    linear-gradient(90deg, rgba(20, 24, 22, 0.5), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.2rem, 4vw, 3.5rem) 6.5rem;
  max-width: 48rem;
}

.hero .eyebrow {
  color: var(--mustard-soft);
}

.hero-name {
  display: block;
  font-size: clamp(4.6rem, 14vw, 10rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.hero-place {
  display: block;
  margin-top: 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  font-weight: 500;
  max-width: 18ch;
}

.hero-lead {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-weight: 300;
  font-size: 1.08rem;
  color: rgba(246, 239, 227, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-coral {
  background: var(--mustard);
  color: var(--navy);
}

.btn-coral:hover {
  background: var(--mustard-soft);
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}

.btn-navy:hover {
  background: #1a1410;
}

.btn-ghost {
  border: 1px solid rgba(246, 239, 227, 0.45);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(246, 239, 227, 0.1);
}

.btn-teal {
  background: var(--teal);
  color: var(--cream);
}

.btn-teal:hover {
  background: var(--teal-deep);
}

.btn-line {
  border: 1px solid var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 28rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 239, 227, 0.2);
}

.hero-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero-meta dd {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-meta dd span {
  font-size: 0.95rem;
  opacity: 0.6;
}

.hero-scroll {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3.5rem);
  bottom: 2.4rem;
  z-index: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
  opacity: 0.8;
}

/* Marquee */
.strip {
  background: var(--teal);
  color: var(--cream);
  overflow: hidden;
  padding: 0.95rem 0;
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.strip-track i {
  width: 5px;
  height: 5px;
  background: var(--mustard);
  border-radius: 50%;
  display: block;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Story */
.story {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3.5rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-photo img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
}

.story-photo figcaption {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.story-copy p + p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.story-points {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.story-points li {
  display: grid;
  gap: 0.2rem;
}

.story-points strong {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.story-points span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Experiences */
.experiences {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.experiences-inner {
  padding: 0 clamp(1.2rem, 4vw, 3.5rem);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.exp-card {
  padding: 1.8rem 1.4rem 2rem;
  border: 1px solid rgba(246, 239, 227, 0.12);
  min-height: 100%;
}

.exp-card svg {
  width: 42px;
  height: 42px;
  color: var(--mustard);
  margin-bottom: 1.4rem;
}

.exp-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.exp-card p {
  color: rgba(246, 239, 227, 0.72);
  font-weight: 300;
  font-size: 0.98rem;
}

/* Dining */
.dining {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3.5rem);
}

.course-list {
  display: grid;
  gap: 0;
}

.course {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.course:last-of-type {
  border-bottom: 1px solid var(--line);
}

.course-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--teal);
}

.course h3 {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.course p {
  color: var(--ink-soft);
  max-width: 40rem;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.4rem;
}

.chips li {
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Gallery */
.gallery {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.2rem, 4vw, 3.5rem) 0;
}

.gallery-head {
  margin-bottom: 2.5rem;
}

.gallery-head h2 {
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 0.55rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  padding: 0;
  background: #3a2f28;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0.4rem 0 1.2rem;
}

.service-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  font-weight: 500;
  letter-spacing: 0.03em;
}

.service-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.g-item:hover img {
  transform: scale(1.05);
}

.g-item span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.g-large {
  grid-row: span 2;
  grid-auto-rows: auto;
}

.g-wide {
  grid-column: span 2;
}

/* Hours */
.hours {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3.5rem);
  background:
    linear-gradient(180deg, var(--navy) 0 4.5rem, var(--paper) 4.5rem);
}

.hours-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.hours-copy h2 {
  margin-bottom: 1rem;
}

.hours-copy > p {
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.hours-list li.is-today {
  color: var(--teal);
  font-weight: 500;
}

.times-panel {
  background: #fff;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(16, 25, 24, 0.06);
}

.times-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.times-head h3 {
  font-size: 1.7rem;
}

.day-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.day-switch button {
  min-width: 2.4rem;
  height: 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.day-switch button.is-active {
  background: var(--teal);
  color: var(--cream);
}

.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
  align-items: end;
  height: 220px;
  padding-top: 1.5rem;
}

.bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 0.4rem;
}

.bar i {
  display: block;
  width: 100%;
  background: var(--teal);
  min-height: 4px;
  transition: height 0.45s ease;
}

.bar.is-peak i {
  background: var(--mustard);
}

.bar span {
  font-size: 0.58rem;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.04em;
}

.chart-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Visit */
.visit {
  padding: 0 clamp(1.2rem, 4vw, 3.5rem) clamp(4.5rem, 10vw, 8rem);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.visit-copy h2 {
  margin-bottom: 1.2rem;
}

.visit-copy address {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.phone {
  display: inline-block;
  margin: 1rem 0 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  border-bottom: 1px solid var(--mustard);
}

.visit-note {
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.map-wrap {
  min-height: 420px;
  background: #ddd4c8;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.practical {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.practical li {
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}

.practical h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.practical p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 3.5rem clamp(1.2rem, 4vw, 3.5rem) 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(246, 239, 227, 0.15);
}

.footer-tag {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 16ch;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  font-size: 0.88rem;
  opacity: 0.85;
}

.social {
  display: flex;
  gap: 1.2rem;
}

.social a:hover {
  color: var(--mustard-soft);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 16, 15, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1;
}

/* Reveal */
.js .reveal {
  transform: translateY(18px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.js .reveal.in {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .story-grid,
  .hours-grid,
  .visit-grid,
  .exp-grid,
  .practical {
    grid-template-columns: 1fr 1fr;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .g-large,
  .g-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g-large {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-menu.open {
    transform: none;
  }

  .nav-cta {
    margin-top: 0.6rem;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .story-grid,
  .hours-grid,
  .visit-grid,
  .exp-grid,
  .practical,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .g-large {
    grid-row: span 1;
    min-height: 280px;
  }

  .course {
    grid-template-columns: 3rem 1fr;
  }

  .chart {
    grid-template-columns: repeat(6, 1fr);
    height: 180px;
  }

  .footer-top,
  .footer-quote {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }
}
