:root {
  --ink: #191411;
  --coal: #0e0d0b;
  --paper: #fffdf8;
  --muted: #6d645d;
  --line: rgba(25, 20, 17, 0.14);
  --gold: #d99a25;
  --red: #b93328;
  --indigo: #25375f;
  --green: #436f47;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 12, 8, 0.18);
  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;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

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

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

section {
  scroll-margin-top: 124px;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(14, 13, 11, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: clamp(132px, 15vw, 190px);
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--gold);
  color: #17110c;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(217, 154, 37, 0.45);
  border-radius: var(--radius);
  background: rgba(14, 13, 11, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: clamp(28px, 4vw, 56px);
  padding: 124px clamp(18px, 7vw, 96px) 54px;
  overflow: hidden;
  color: #fff;
  view-timeline-name: --hero-cover;
  view-timeline-axis: block;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1200ms ease, transform 7200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 20%, rgba(217, 154, 37, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(11, 9, 7, 0.92) 0%, rgba(37, 55, 95, 0.62) 46%, rgba(11, 9, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 9, 7, 0.62), rgba(11, 9, 7, 0.1));
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 680px;
}

.anniversary-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto minmax(130px, auto) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
  color: var(--gold);
}

.anniversary-mark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 154, 37, 0.72), transparent);
  transform: translateY(-50%);
}

.anniversary-mark span {
  position: relative;
  z-index: 1;
  padding: 6px 0;
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  background: rgba(14, 13, 11, 0.64);
}

.anniversary-mark strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-top: 1px solid rgba(217, 154, 37, 0.72);
  border-bottom: 1px solid rgba(217, 154, 37, 0.72);
  background: rgba(14, 13, 11, 0.72);
  color: #fff;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.established {
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  max-width: 12ch;
}

.hero-content > p:not(.established) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-hours {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: min(240px, 26vw);
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(14, 13, 11, 0.66);
  backdrop-filter: blur(16px);
}

.hero-dots {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  margin-bottom: 150px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  overflow: hidden;
}

.hero-dots span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dots span.is-active::after {
  animation: dotFill 5.8s linear forwards;
}

.hero-hours span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-hours strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

@media (min-width: 981px) and (max-height: 860px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 36px;
    align-items: center;
  }

  .anniversary-mark {
    margin-bottom: 18px;
  }

  .established {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.9rem, 6.3vw, 5.7rem);
  }

  .hero-content > p:not(.established) {
    margin-top: 16px;
    font-size: clamp(0.98rem, 1.45vw, 1.1rem);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-hours {
    padding: 18px 18px 16px;
  }

  .hero-hours strong {
    font-size: 1.5rem;
  }

  .hero-dots {
    margin-bottom: 126px;
  }
}

.intro,
.image-ribbon,
.scroll-story,
.menu-section,
.story-section,
.reviews,
.legacy-strip,
.awards-section,
.charity-section,
.booking-widget-section {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.legacy-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
  color: #fff;
}

.legacy-strip article {
  min-height: 245px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(185, 51, 40, 0.14), transparent 52%),
    var(--coal);
}

.legacy-strip span,
.press-wall span,
.charity-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legacy-strip strong {
  display: block;
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.legacy-strip p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.intro h2,
.section-heading h2,
.story-copy h2,
.delivery-band h2,
.awards-copy h2,
.charity-grid h3 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.intro p,
.story-copy p,
.delivery-band p,
.awards-copy p,
.charity-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.image-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.78fr;
  gap: clamp(14px, 3vw, 32px);
  align-items: center;
  background: #f3f0e9;
  overflow: hidden;
}

.image-ribbon::before {
  content: "Kathmandu / Didsbury / Since 1986";
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  color: rgba(25, 20, 17, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 12rem);
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ribbon-card {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ribbon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 900ms ease;
}

.ribbon-card.is-visible img,
.dish-card.is-visible img,
.story-image.is-visible img {
  transform: scale(1);
}

.ribbon-card.tall {
  height: clamp(320px, 42vw, 620px);
}

.ribbon-card.wide {
  height: clamp(260px, 34vw, 480px);
}

.ribbon-card.offset {
  margin-top: clamp(60px, 9vw, 130px);
}

.scroll-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 0.78fr) minmax(340px, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  min-height: 160svh;
  background: var(--coal);
  color: #fff;
}

.scroll-story-copy,
.chapter-media {
  position: sticky;
  top: 112px;
}

.scroll-story-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.scroll-story-copy p:not(.established) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.chapter-list {
  display: grid;
  gap: clamp(80px, 18vh, 180px);
  padding-top: 16vh;
  padding-bottom: 38vh;
}

.chapter {
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.chapter span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.chapter h3 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.chapter p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.chapter-media {
  height: min(68vh, 720px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.chapter-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms ease, transform 1800ms ease;
}

.chapter-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.section-heading a,
.text-link {
  color: var(--red);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.dish-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(38, 27, 18, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(38, 27, 18, 0.16);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 900ms ease;
}

.dish-card.featured img {
  aspect-ratio: 16 / 10;
}

.dish-card div {
  padding: 24px;
}

.dish-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dish-card h3 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.dish-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.story-section,
.awards-section,
.charity-section {
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
}

.story-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.story-copy .text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 900ms ease;
}

.complete-menu,
.history-section {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 7vw, 96px);
}

.complete-menu {
  background: #fff;
  border-top: 1px solid var(--line);
}

.menu-tabs {
  position: sticky;
  top: 84px;
  z-index: 8;
  display: flex;
  gap: 8px;
  margin: -12px 0 28px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.menu-tabs a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-group {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: clip;
}

.menu-group summary {
  cursor: pointer;
  padding: 24px clamp(18px, 3vw, 34px);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  list-style: none;
}

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

.menu-group summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.menu-group[open] summary::after {
  content: "-";
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.menu-list article {
  min-height: 124px;
  padding: 20px;
  background: #fff;
}

.menu-list strong {
  display: block;
  padding-right: 110px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.menu-list span {
  float: right;
  max-width: 110px;
  color: var(--red);
  font-weight: 900;
  text-align: right;
}

.menu-list p {
  margin: 10px 0 0;
  clear: both;
  color: var(--muted);
  line-height: 1.56;
}

.menu-list.compact article {
  min-height: 100px;
}

.complete-menu [data-reveal],
.complete-menu [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.complete-menu .menu-group,
.complete-menu .menu-group.is-visible {
  animation: none !important;
  clip-path: none !important;
  opacity: 1;
  transform: none;
}

.history-section {
  background: #f3f0e9;
}

.values-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.values-grid article,
.team-grid article {
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(38, 27, 18, 0.08);
}

.values-grid h3,
.team-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.values-grid p,
.team-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.team-grid span {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  --numcards: 15;
  display: grid;
  gap: 0;
  margin-top: clamp(46px, 7vw, 86px);
  padding: 22px 0 34px;
  view-timeline-name: --timeline-stack;
}

.timeline article {
  position: sticky;
  top: 112px;
  min-height: 230px;
  display: grid;
  align-items: start;
  margin-top: -34px;
  transform-origin: 50% 16%;
  overflow: visible;
}

.timeline-paper {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
  padding-right: calc(min(28vw, 300px) + clamp(22px, 3vw, 34px));
  border: 1px solid rgba(78, 59, 42, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 223, 0.98)),
    #f9f1e4;
  color: var(--ink);
  box-shadow:
    0 26px 54px rgba(27, 18, 11, 0.14),
    0 8px 18px rgba(27, 18, 11, 0.08);
  overflow: hidden;
}

.timeline-paper::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.timeline-paper::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 22%),
    repeating-linear-gradient(
      0deg,
      rgba(100, 79, 60, 0.032) 0,
      rgba(100, 79, 60, 0.032) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: 0.9;
}

.timeline-scrap {
  --tape-left-width: 72px;
  --tape-right-width: 72px;
  --tape-left-rotate: -12deg;
  --tape-right-rotate: 15deg;
  --tape-left-color-top: rgba(255, 246, 200, 0.82);
  --tape-left-color-bottom: rgba(229, 204, 119, 0.42);
  --tape-right-color-top: rgba(246, 234, 188, 0.78);
  --tape-right-color-bottom: rgba(213, 183, 97, 0.38);
  --scrap-pad-top: 10px;
  --scrap-pad-side: 10px;
  --scrap-pad-bottom: 24px;
  --scrap-rotate: 6deg;
  --scrap-bg: #f8f2e8;
  --scrap-border-color: rgba(78, 59, 42, 0.14);
  --scrap-ratio: 4 / 5;
  position: absolute;
  top: clamp(24px, 5vw, 50px);
  right: clamp(18px, 3vw, 30px);
  z-index: 2;
  width: clamp(150px, 22vw, 260px);
  aspect-ratio: var(--scrap-ratio);
  margin: 0;
  padding: var(--scrap-pad-top) var(--scrap-pad-side) var(--scrap-pad-bottom);
  background: var(--scrap-bg);
  border: 1px solid var(--scrap-border-color);
  box-shadow:
    0 18px 30px rgba(30, 20, 12, 0.16),
    0 4px 10px rgba(30, 20, 12, 0.1);
  transform: rotate(var(--scrap-rotate));
}

.timeline-scrap::before,
.timeline-scrap::after {
  content: "";
  position: absolute;
  top: -10px;
  height: 24px;
  border: 1px solid rgba(171, 136, 61, 0.14);
  box-shadow: 0 4px 10px rgba(44, 31, 17, 0.08);
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.timeline-scrap::before {
  width: var(--tape-left-width);
  left: 14px;
  background: linear-gradient(180deg, var(--tape-left-color-top), var(--tape-left-color-bottom));
  transform: rotate(var(--tape-left-rotate));
}

.timeline-scrap::after {
  width: var(--tape-right-width);
  right: 10px;
  background: linear-gradient(180deg, var(--tape-right-color-top), var(--tape-right-color-bottom));
  transform: rotate(var(--tape-right-rotate));
}

.timeline-scrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.timeline article:nth-child(1) { --index: 1; }
.timeline article:nth-child(2) { --index: 2; }
.timeline article:nth-child(3) { --index: 3; }
.timeline article:nth-child(4) { --index: 4; }
.timeline article:nth-child(5) { --index: 5; }
.timeline article:nth-child(6) { --index: 6; }
.timeline article:nth-child(7) { --index: 7; }
.timeline article:nth-child(8) { --index: 8; }
.timeline article:nth-child(9) { --index: 9; }
.timeline article:nth-child(10) { --index: 10; }
.timeline article:nth-child(11) { --index: 11; }
.timeline article:nth-child(12) { --index: 12; }
.timeline article:nth-child(13) { --index: 13; }
.timeline article:nth-child(14) { --index: 14; }
.timeline article:nth-child(15) { --index: 15; }

.timeline article:nth-child(odd) {
  --tilt: -2.2deg;
  --drift-x: -18px;
}

.timeline article:nth-child(even) {
  --tilt: 2deg;
  --drift-x: 18px;
}

.timeline article:nth-child(3n) {
  --tilt: -1deg;
  --drift-x: 10px;
}

.timeline article:nth-child(4n) {
  --tilt: 3deg;
  --drift-x: -10px;
}

.timeline article:nth-child(5n) {
  --tilt: -3.4deg;
  --drift-x: 24px;
}

.timeline article:nth-child(odd) .timeline-scrap {
  right: clamp(18px, 3vw, 30px);
  --scrap-rotate: 5deg;
}

.timeline article:nth-child(even) .timeline-paper {
  padding-left: calc(min(28vw, 300px) + clamp(22px, 3vw, 34px));
  padding-right: clamp(26px, 4vw, 42px);
}

.timeline article:nth-child(even) .timeline-scrap {
  left: clamp(18px, 3vw, 30px);
  right: auto;
  --scrap-rotate: -6deg;
}

.timeline article:nth-child(even) .timeline-scrap::before {
  left: 10px;
  transform: rotate(-18deg);
}

.timeline article:nth-child(even) .timeline-scrap::after {
  right: 14px;
  transform: rotate(11deg);
}

.timeline article:nth-child(3n) .timeline-scrap {
  top: clamp(36px, 6vw, 68px);
}

.timeline article:nth-child(3n) .timeline-scrap {
  --tape-left-width: 56px;
  --tape-right-width: 84px;
  --tape-left-rotate: -18deg;
  --tape-right-rotate: 8deg;
  --tape-left-color-top: rgba(232, 216, 179, 0.78);
  --tape-left-color-bottom: rgba(189, 165, 104, 0.34);
}

.timeline article:nth-child(4n) .timeline-scrap {
  --tape-left-width: 82px;
  --tape-right-width: 60px;
  --tape-left-rotate: -6deg;
  --tape-right-rotate: 18deg;
  --tape-right-color-top: rgba(248, 231, 176, 0.8);
  --tape-right-color-bottom: rgba(221, 190, 101, 0.4);
}

.timeline article:nth-child(5n) .timeline-scrap {
  --tape-left-width: 66px;
  --tape-right-width: 92px;
  --tape-left-rotate: -22deg;
  --tape-right-rotate: 12deg;
  --tape-left-color-top: rgba(255, 240, 210, 0.76);
  --tape-left-color-bottom: rgba(223, 196, 135, 0.36);
  --tape-right-color-top: rgba(243, 228, 193, 0.74);
  --tape-right-color-bottom: rgba(206, 175, 115, 0.34);
}

.timeline article:nth-child(3n) .timeline-scrap img {
  aspect-ratio: auto;
}

.timeline article:nth-child(4n) .timeline-scrap {
  --scrap-pad-top: 12px;
  --scrap-pad-side: 12px;
  --scrap-pad-bottom: 14px;
  --scrap-bg: #f7f3ef;
  --scrap-ratio: 5 / 4;
}

.timeline article:nth-child(3n) .timeline-scrap {
  --scrap-ratio: 1 / 1;
}

.timeline article:nth-child(5n) .timeline-scrap {
  --scrap-pad-top: 8px;
  --scrap-pad-side: 8px;
  --scrap-pad-bottom: 30px;
  --scrap-bg: #f4eadc;
  --scrap-ratio: 3 / 4;
}

.timeline span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
}

.timeline h3 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  max-width: 13ch;
  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

.timeline p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(25, 20, 17, 0.76);
  font-family: "Shadows Into Light", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(1.06rem, 1.38vw, 1.26rem);
  line-height: 1.6;
}

.team-section {
  margin-top: clamp(54px, 8vw, 100px);
}

.team-section h2 {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.awards-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(37, 55, 95, 0.26), transparent 44%),
    var(--coal);
  color: #fff;
  overflow: hidden;
}

.awards-copy {
  position: sticky;
  top: 116px;
}

.awards-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.press-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.press-wall article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.press-wall strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  font-weight: 500;
  line-height: 1.1;
}

.press-wall p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.award-photo {
  grid-column: 1 / -1;
  margin: 0;
  max-height: 58vh;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.award-photo img {
  width: 100%;
  max-height: 58vh;
  object-fit: cover;
}

.charity-section {
  background: #f3f0e9;
}

.charity-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.charity-grid figure,
.charity-grid article {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(38, 27, 18, 0.08);
}

.charity-grid figure {
  display: grid;
  grid-template-rows: 1fr auto;
}

.charity-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.charity-grid figcaption,
.charity-grid article {
  padding: clamp(22px, 3vw, 32px);
}

.charity-grid article {
  display: flex;
  flex-direction: column;
}

.charity-grid figcaption {
  color: var(--muted);
  line-height: 1.6;
}

.charity-grid h3 {
  margin-top: 18px;
  max-width: 8.5ch;
  font-size: clamp(2rem, 3.1vw, 3.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

.charity-grid p {
  margin-top: 20px;
  font-size: 1rem;
}

.booking-widget-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(185, 51, 40, 0.08), transparent 42%),
    #fff;
}

.booking-widget-copy h2 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

.booking-widget-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.booking-widget-shell {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-widget-note {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.booking-widget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.booking-widget-actions .quandoo-widget-builder {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.booking-widget-section [data-reveal],
.booking-widget-section [data-reveal].is-visible,
.delivery-band[data-reveal],
.delivery-band[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.delivery-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 7vw, 96px);
  background: var(--gold);
  color: #17110c;
  position: relative;
  overflow: hidden;
}

.delivery-band::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -120%;
  width: 34vw;
  min-width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 17, 12, 0.22);
  border-radius: 50%;
  animation: slowTurn 18s linear infinite;
}

.delivery-band p {
  margin-top: 14px;
  color: rgba(23, 17, 12, 0.76);
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.delivery-band .button.primary {
  background: #fff;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 12px 36px rgba(38, 27, 18, 0.07);
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.14;
}

blockquote cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 34px;
  padding: 54px clamp(18px, 7vw, 96px);
  background: var(--coal);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-float] {
  --float-y: 0px;
  transform: translateY(var(--float-y));
  will-change: transform;
}

@keyframes dotFill {
  to {
    transform: scaleX(1);
  }
}

@keyframes slowTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollMeter {
  to {
    transform: scaleX(1);
  }
}

@keyframes viewReveal {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
    clip-path: inset(14% 0 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes imageUnmask {
  from {
    clip-path: inset(16% 12% 16% 12%);
    transform: scale(1.1);
  }
  to {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}

@keyframes headerCondense {
  from {
    padding-top: 18px;
    padding-bottom: 18px;
    background: rgba(14, 13, 11, 0);
  }
  to {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(14, 13, 11, 0.96);
  }
}

@keyframes coverImageDrift {
  from {
    transform: scale(1.08) translateY(0);
  }
  to {
    transform: scale(1.18) translateY(8vh);
  }
}

@keyframes paperScatter {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0) scale(1);
  }
  to {
    transform:
      rotate(var(--tilt, -2deg))
      translate3d(var(--drift-x, 0), calc(-10px * var(--index)), 0)
      scale(calc(1 - (0.018 * var(--index))));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    margin-top: 18px;
    padding: 12px 16px;
    border: 1px solid rgba(217, 154, 37, 0.22);
    border-radius: var(--radius);
    background: rgba(14, 13, 11, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  }

  .site-header.is-open .site-nav a {
    padding: 15px 2px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 1;
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 92svh;
    align-items: center;
    row-gap: 24px;
    padding-top: 120px;
  }

  .hero-content,
  .hero-hours,
  .hero-dots {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-hours {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    max-width: 280px;
  }

  .hero-dots {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
  }

  .intro,
  .story-section,
  .scroll-story,
  .values-grid,
  .team-grid,
  .legacy-strip,
  .awards-section,
  .press-wall,
  .charity-grid,
  .booking-widget-section,
  .delivery-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .dish-grid,
  .reviews,
  .menu-list {
    grid-template-columns: 1fr;
  }

  .image-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .scroll-story {
    min-height: auto;
  }

  .scroll-story-copy,
  .chapter-media,
  .awards-copy {
    position: relative;
    top: auto;
  }

  .chapter-list {
    gap: 34px;
    padding: 0;
  }

  .chapter-media {
    height: 440px;
    order: -1;
  }

  .ribbon-card.wide {
    grid-column: 1 / -1;
    order: -1;
  }

  .delivery-band {
    align-items: flex-start;
  }

  .booking-widget {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main,
  section,
  .site-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-content,
  .hero-content > p,
  .intro > *,
  .section-heading,
  .story-copy,
  .booking-widget-copy,
  .booking-widget,
  .delivery-band > *,
  blockquote {
    max-width: calc(100vw - 36px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 122px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 42px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 9, 7, 0.88), rgba(11, 9, 7, 0.26)),
      linear-gradient(90deg, rgba(11, 9, 7, 0.78), rgba(11, 9, 7, 0.28));
  }

  h1 {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    max-width: min(10.8ch, 100%);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-content {
    width: auto;
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .hero-actions {
    max-width: calc(100vw - 36px);
  }

  .established {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .anniversary-mark {
    grid-template-columns: auto minmax(112px, auto) auto;
    gap: 8px;
  }

  .anniversary-mark span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .anniversary-mark strong {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero-content > p:not(.established) {
    max-width: min(330px, calc(100vw - 36px));
    font-size: 0.96rem;
  }

  .intro h2,
  .section-heading h2,
  .story-copy h2,
  .delivery-band h2 {
    font-size: 2.15rem;
    overflow-wrap: break-word;
  }

  .booking-widget-copy h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .delivery-actions,
  .booking-widget .button,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    width: min(330px, calc(100vw - 36px));
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .intro,
  .legacy-strip,
  .image-ribbon,
  .scroll-story,
  .complete-menu,
  .history-section,
  .menu-section,
  .story-section,
  .awards-section,
  .charity-section,
  .booking-widget-section,
  .reviews {
    padding: 104px 18px 58px;
  }

  .legacy-strip {
    padding: 0;
  }

  .legacy-strip article {
    min-height: 190px;
  }

  .delivery-band,
  .site-footer {
    padding: 46px 18px;
  }

  .image-ribbon {
    gap: 12px;
  }

  .image-ribbon::before {
    font-size: 3.8rem;
    white-space: normal;
    width: 90vw;
  }

  .ribbon-card.tall,
  .ribbon-card.wide {
    height: auto;
  }

  .ribbon-card img {
    aspect-ratio: 4 / 5;
  }

  .ribbon-card.wide img {
    aspect-ratio: 16 / 10;
  }

  .chapter-media {
    height: 360px;
  }

  .menu-tabs {
    top: 72px;
    margin-left: -18px;
    margin-right: -18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .menu-list strong {
    padding-right: 0;
  }

  .menu-list span {
    float: none;
    display: block;
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .timeline article {
    position: relative;
    top: auto;
    min-height: auto;
    margin-top: 0;
    transform: none !important;
    padding: 0;
  }

  .timeline-paper {
    min-height: auto;
    padding-right: clamp(22px, 4vw, 32px);
  }

  .timeline article:nth-child(even) .timeline-paper {
    padding-left: clamp(22px, 4vw, 32px);
    padding-right: clamp(22px, 4vw, 32px);
  }

  .timeline-scrap,
  .timeline article:nth-child(even) .timeline-scrap,
  .timeline article:nth-child(odd) .timeline-scrap {
    position: relative;
    inset: auto;
    width: min(260px, 72vw);
    margin: 14px 0 0;
    --scrap-rotate: 0deg;
  }

  .timeline-scrap::before {
    left: 18px;
    transform: rotate(-10deg);
  }

  .timeline-scrap::after {
    right: 18px;
    transform: rotate(10deg);
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-progress {
      animation: scrollMeter linear both;
      animation-timeline: scroll(root);
    }

    .site-header {
      animation: headerCondense linear both;
      animation-timeline: scroll(root);
      animation-range: 0 72vh;
    }

    .hero-slide.is-active {
      animation: coverImageDrift linear both;
      animation-timeline: --hero-cover;
      animation-range: exit 0% exit 100%;
    }

    .ribbon-card,
    .dish-card,
    .story-image,
    .menu-group,
    .chapter {
      animation: viewReveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 38%;
    }

    .ribbon-card img,
    .story-image img,
    .dish-card img {
      animation: imageUnmask linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 46%;
    }

    .timeline article {
      animation: paperScatter linear forwards;
      animation-timeline: --timeline-stack;
      animation-range: exit-crossing 0% exit-crossing 90%;
    }
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}
