:root {
  --ink: #f4f1ea;
  --muted: #a8a8a8;
  --paper: #0f0f0f;
  --soft: #181818;
  --mustard: #c89b3c;
  --gold-hover: #d9ae53;
  --terracotta: #5c3a21;
  --wood: #5c3a21;
  --charcoal: #181818;
  --cream: #e8dcc8;
  --black: #0f0f0f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mustard), var(--gold-hover), var(--wood));
  transform: scaleX(0);
  transform-origin: left;
}

.transition-wipe {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  background: var(--mustard);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
  transform: translateX(-115%);
  animation: wipe-sweep 1.15s cubic-bezier(0.76, 0, 0.24, 1) 0.25s forwards;
}

body.is-jumping .transition-wipe {
  animation: jump-wipe 0.48s cubic-bezier(0.76, 0, 0.24, 1);
}

.coffee-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--black);
  overflow: hidden;
  animation: coffee-intro-exit 1.05s cubic-bezier(0.76, 0, 0.24, 1) 3.15s forwards;
}

.coffee-intro.is-done {
  display: none;
}

.coffee-bg {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.9)),
    url("img/cafes.jpeg") center / cover;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.2);
  animation: coffee-bg-dive 3.4s ease forwards;
}

.coffee-scene {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  min-height: min(640px, 86svh);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  perspective: 1200px;
}

.coffee-photo {
  position: relative;
  isolation: isolate;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  justify-self: end;
  border-radius: 50%;
  transform: translateX(-28px) rotate(-8deg) scale(0.62);
  animation: coffee-cup-entrance 2.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.coffee-photo::before,
.coffee-photo::after {
  position: absolute;
  inset: -18px;
  z-index: 2;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 60, 0.48);
  transform: scale(0.76);
  opacity: 0;
  animation: ring-pop 2.4s ease 0.55s infinite;
}

.coffee-photo::after {
  inset: -42px;
  border-color: rgba(232, 220, 200, 0.42);
  animation-delay: 0.95s;
}

.coffee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid rgba(232, 220, 200, 0.14);
  border-radius: 50%;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  clip-path: circle(49% at 45% 54%);
}

.coffee-outline {
  position: absolute;
  inset: 9%;
  z-index: 3;
  border: 2px solid rgba(246, 241, 232, 0.86);
  border-radius: 48% 52% 45% 55% / 54% 44% 56% 46%;
  filter: drop-shadow(0 0 18px rgba(200, 155, 60, 0.62));
  transform: rotate(-8deg) scale(0.88);
  opacity: 0;
  animation: outline-draw 1.35s ease 0.8s forwards, outline-breathe 2.2s ease-in-out 2.1s infinite;
}

.steam {
  position: absolute;
  left: 42%;
  bottom: 58%;
  z-index: 4;
  width: 58px;
  height: 130px;
  border-left: 3px solid rgba(244, 241, 234, 0.74);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0;
  transform: translateY(40px) rotate(18deg);
  animation: steam-rise 2.6s ease-in-out 0.65s infinite;
}

.steam-two {
  left: 50%;
  height: 150px;
  border-left-color: rgba(200, 155, 60, 0.72);
  animation-delay: 0.95s;
}

.steam-three {
  left: 57%;
  height: 116px;
  border-left-color: rgba(232, 220, 200, 0.7);
  animation-delay: 1.25s;
}

.coffee-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coffee-burst span {
  position: absolute;
  left: 22%;
  top: 50%;
  width: 44vw;
  max-width: 580px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mustard), var(--gold-hover), transparent);
  opacity: 0;
  transform: rotate(-16deg) translateX(-70%);
  animation: coffee-streak 1.6s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
  --angle: -16deg;
}

.coffee-burst span:nth-child(2) {
  top: 42%;
  transform: rotate(10deg) translateX(-70%);
  animation-delay: 1.5s;
  --angle: 10deg;
}

.coffee-burst span:nth-child(3) {
  top: 61%;
  background: linear-gradient(90deg, transparent, var(--wood), var(--mustard), transparent);
  transform: rotate(-5deg) translateX(-70%);
  animation-delay: 1.7s;
  --angle: -5deg;
}

.coffee-copy {
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.coffee-copy span,
.coffee-copy strong,
.coffee-copy small {
  display: block;
  transform: translateY(115%) skewY(5deg);
  opacity: 0;
  animation: intro-word-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.coffee-copy span {
  margin-bottom: 12px;
  color: var(--mustard);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation-delay: 0.7s;
}

.coffee-copy strong {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  animation-delay: 1s;
}

.coffee-copy small {
  margin-top: 22px;
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  animation-delay: 1.28s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0));
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(15, 15, 15, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-cta {
  padding: 0 18px;
  background: var(--mustard);
  color: var(--black);
}

.button {
  padding: 0 24px;
}

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

.primary {
  background: var(--mustard);
  color: var(--black);
}

.primary:hover,
.nav-cta:hover {
  background: var(--gold-hover);
}

.ghost {
  border: 1px solid rgba(200, 155, 60, 0.44);
  color: var(--ink);
  background: rgba(24, 24, 24, 0.48);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 80px) 72px;
  overflow: hidden;
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background: var(--mustard);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  transform: translateX(-110%);
  animation: hero-reveal-wipe 1.15s cubic-bezier(0.76, 0, 0.24, 1) 3.2s both;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 8s ease forwards, hero-pan 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 0.96;
  font-weight: 700;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 12vw, 10.5rem);
  overflow: hidden;
}

h1 span {
  display: inline-block;
  transform: translateY(112%);
  animation: title-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

h1 span:nth-child(2) {
  animation-delay: 1.34s;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
}

.hero-content p:not(.eyebrow),
.experience-copy p,
.booking-copy p {
  max-width: 590px;
  color: rgba(244, 241, 234, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: 50px;
  width: min(290px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 8px;
  background: rgba(24, 24, 24, 0.62);
  backdrop-filter: blur(18px);
  z-index: 2;
  animation: card-float 5s ease-in-out 1.7s infinite;
}

.hero-card span,
.dish-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--mustard);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-card p {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  line-height: 1.5;
}

.section-band,
.menu-section,
.gallery,
.booking,
.menu-board {
  position: relative;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 80px);
  overflow: hidden;
}

.menu-section {
  background: var(--black);
}

.menu-section::after,
.ritual::after {
  position: absolute;
  right: -16vw;
  top: 8%;
  width: 42vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(200, 155, 60, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-ring 12s linear infinite;
}

.gallery {
  background: var(--soft);
}

.menu-board {
  background:
    linear-gradient(135deg, rgba(92, 58, 33, 0.32), transparent 42%),
    var(--soft);
}

.section-heading p,
.section-heading h2,
.intro-copy p,
.intro-copy h2 {
  color: var(--ink);
}

.intro-copy .eyebrow,
.section-heading .eyebrow {
  color: var(--mustard);
}

.section-band::before,
.menu-section::before,
.gallery::before,
.booking::before,
.menu-board::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: linear-gradient(var(--mustard), var(--gold-hover), var(--wood));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-band.section-lit::before,
.menu-section.section-lit::before,
.gallery.section-lit::before,
.booking.section-lit::before,
.menu-board.section-lit::before {
  transform: scaleY(1);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: end;
  background: var(--soft);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  min-height: 150px;
  padding: 24px;
  border-left: 2px solid var(--mustard);
  border: 1px solid rgba(200, 155, 60, 0.13);
  background: rgba(15, 15, 15, 0.78);
}

.stat strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mustard);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.stat span {
  color: var(--muted);
  line-height: 1.4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.menu-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.1), transparent 35%),
    rgba(24, 24, 24, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.showcase-plate {
  position: relative;
  isolation: isolate;
  width: min(460px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(var(--float-y, 0));
  transition: transform 0.35s ease-out;
}

.showcase-plate::before,
.showcase-plate::after {
  position: absolute;
  inset: 5%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(232, 220, 200, 0.18);
  animation: plate-spin 18s linear infinite;
}

.showcase-plate::after {
  inset: 13%;
  border-style: dashed;
  border-color: rgba(200, 155, 60, 0.34);
  animation-duration: 11s;
  animation-direction: reverse;
}

.plate-glow {
  position: absolute;
  inset: 14%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.32), transparent 64%);
  filter: blur(8px);
  animation: glow-pulse 3.5s ease-in-out infinite;
}

.showcase-plate img {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border: 10px solid rgba(232, 220, 200, 0.08);
  border-radius: 50%;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  animation: plate-float 5.5s ease-in-out infinite;
}

.showcase-copy h3 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-copy strong {
  display: block;
  margin-top: 22px;
  color: var(--mustard);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.showcase-list {
  display: grid;
  gap: 10px;
}

.menu-pick {
  position: relative;
  min-height: 72px;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.12);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(15, 15, 15, 0.76);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.menu-pick::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-pick span {
  position: relative;
  display: inline-block;
  width: 42px;
  color: var(--mustard);
}

.menu-pick:hover,
.menu-pick.active {
  border-color: rgba(200, 155, 60, 0.42);
  background: rgba(200, 155, 60, 0.08);
  transform: translateX(8px);
}

.menu-pick:hover::before,
.menu-pick.active::before {
  transform: translateX(0);
}

.specialty-marquee {
  position: relative;
  display: flex;
  gap: 28px;
  width: calc(100% + 160px);
  margin: 0 -80px 30px;
  overflow: hidden;
  border-block: 1px solid rgba(200, 155, 60, 0.16);
  color: rgba(244, 241, 234, 0.88);
}

.specialty-marquee div {
  display: flex;
  min-width: max-content;
  gap: 28px;
  padding: 14px 0;
  animation: marquee-slide 22s linear infinite;
}

.specialty-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  white-space: nowrap;
}

.specialty-marquee span::after {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--mustard);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.tab:hover,
.tab.active {
  color: var(--black);
  background: var(--mustard);
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1400px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(200, 155, 60, 0.15);
  background: var(--charcoal);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.dish-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 20%, rgba(244, 241, 234, 0.16), transparent 48%);
  transform: translateX(-120%);
  transition: transform 0.62s ease;
}

.dish-card.is-hidden {
  display: none;
}

.dish-card:hover {
  transform: translateY(-12px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: var(--shadow);
}

.dish-card:hover::after {
  transform: translateX(120%);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover img {
  transform: scale(1.07);
}

.dish-card div {
  padding: 22px;
  transform: translateZ(22px);
}

.dish-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.dish-card p {
  min-height: 74px;
  color: var(--muted);
  line-height: 1.5;
}

.dish-card strong {
  color: var(--mustard);
  font-size: 1.2rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.board-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgba(200, 155, 60, 0.12), transparent 42%),
    rgba(15, 15, 15, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  transition: transform 0.36s ease, border-color 0.36s ease;
}

.board-panel::before {
  position: absolute;
  inset: -40% -70% auto auto;
  width: 90%;
  height: 80%;
  content: "";
  background: radial-gradient(circle, rgba(200, 155, 60, 0.28), transparent 62%);
  transform: rotate(18deg);
  transition: transform 0.55s ease;
}

.board-panel:hover {
  border-color: rgba(200, 155, 60, 0.46);
  transform: translateY(-12px);
}

.board-panel:hover::before {
  transform: rotate(18deg) translate(-18%, 16%);
}

.board-panel > span {
  position: relative;
  display: block;
  margin-bottom: 24px;
  color: var(--mustard);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-panel ul {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-panel li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: end;
}

.board-panel li::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(200, 155, 60, 0.4), transparent);
  transform: translateY(-6px);
}

.board-panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
}

.board-panel em {
  color: var(--cream);
  font-style: normal;
  font-weight: 900;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  color: var(--ink);
  background: var(--charcoal);
}

.experience-image {
  overflow: hidden;
  border-radius: 8px;
  transform: translateY(var(--float-y, 0)) rotate(-1.4deg);
  transition: transform 0.55s ease;
}

.experience-image:hover {
  transform: translateY(calc(var(--float-y, 0px) - 8px)) rotate(0deg);
}

.experience-image img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.experience-image:hover img {
  transform: scale(1.06);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--mustard);
  font-weight: 900;
}

.ritual {
  background: var(--black);
}

.ritual-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ritual-grid::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.58), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ritual.section-lit .ritual-grid::before {
  transform: scaleX(1);
}

.ritual-step {
  position: relative;
  min-height: 250px;
  padding: 72px 24px 24px;
  border: 1px solid rgba(200, 155, 60, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(15, 15, 15, 0.92));
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.ritual-step::before {
  position: absolute;
  left: 24px;
  top: 27px;
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid var(--mustard);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 8px rgba(200, 155, 60, 0.08);
}

.ritual-step:hover {
  border-color: rgba(200, 155, 60, 0.42);
  transform: translateY(-10px);
}

.ritual-step span {
  color: var(--mustard);
  font-weight: 900;
}

.ritual-step h3 {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.ritual-step p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-track {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-track img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(var(--float-y, 0));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.gallery-track img:hover {
  filter: saturate(1.12) contrast(1.05);
  transform: translateY(calc(var(--float-y, 0px) - 12px)) scale(1.02);
}

.gallery-track img:nth-child(2) {
  margin-top: 54px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  color: var(--ink);
  background: var(--charcoal);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(200, 155, 60, 0.16);
  border-top: 3px solid var(--mustard);
  background: rgba(15, 15, 15, 0.62);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--black);
  background: var(--cream);
  font: inherit;
}

.booking-form button {
  grid-column: 1 / -1;
}

.reveal {
  opacity: 0;
  clip-path: inset(18% 0 18% 0);
  transform: translateY(52px) scale(0.98);
  transition: opacity 0.85s ease, clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.motion-line {
  position: absolute;
  width: 38vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.85), transparent);
  transform: rotate(-18deg) translateX(-120%);
  animation: slash-run 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.line-one {
  top: 22%;
  left: 8%;
}

.line-two {
  top: 48%;
  left: 48%;
  animation-delay: 0.85s;
}

.line-three {
  top: 72%;
  left: 20%;
  animation-delay: 1.5s;
}

.spice {
  position: absolute;
  width: 10px;
  height: 36px;
  border-radius: 999px;
  background: var(--mustard);
  box-shadow: 0 0 24px rgba(200, 155, 60, 0.48);
  opacity: 0.78;
  animation: spice-drift 7s ease-in-out infinite;
}

.spice-one {
  top: 28%;
  right: 18%;
}

.spice-two {
  top: 58%;
  left: 12%;
  height: 24px;
  background: var(--cream);
  animation-delay: 1.3s;
}

.spice-three {
  right: 42%;
  bottom: 18%;
  background: var(--terracotta);
  animation-delay: 2.1s;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes loader-text {
  to {
    transform: translateY(0);
  }
}

@keyframes loader-pulse {
  50% {
    letter-spacing: 0.05em;
    transform: translateY(0) scale(1.04);
  }
}

@keyframes coffee-intro-exit {
  to {
    visibility: hidden;
    transform: translateY(-100%) scale(1.05);
  }
}

@keyframes coffee-bg-dive {
  to {
    filter: blur(7px) saturate(1.35);
    transform: scale(1.04);
  }
}

@keyframes coffee-cup-entrance {
  0% {
    opacity: 0;
    transform: translateX(-120px) translateY(70px) rotate(-22deg) scale(0.42);
  }

  45% {
    opacity: 1;
    transform: translateX(-18px) translateY(-12px) rotate(5deg) scale(1.06);
  }

  72% {
    transform: translateX(-28px) translateY(0) rotate(-4deg) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(-28px) translateY(0) rotate(-8deg) scale(1);
  }
}

@keyframes ring-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  35% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes outline-draw {
  to {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}

@keyframes outline-breathe {
  50% {
    transform: rotate(-8deg) scale(1.04);
  }
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translateY(40px) translateX(0) rotate(18deg) scale(0.7);
  }

  28% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateY(-95px) translateX(34px) rotate(34deg) scale(1.25);
  }
}

@keyframes coffee-streak {
  0% {
    opacity: 0;
    transform: rotate(var(--angle, -16deg)) translateX(-70%) scaleX(0.2);
  }

  30%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(var(--angle, -16deg)) translateX(80%) scaleX(1);
  }
}

@keyframes intro-word-rise {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes hero-reveal-wipe {
  0% {
    transform: translateX(-110%);
  }

  48% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(112%);
  }
}

@keyframes plate-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes plate-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

@keyframes marquee-slide {
  to {
    transform: translateX(calc(-100% - 28px));
  }
}

@keyframes orbit-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wipe-sweep {
  0% {
    transform: translateX(-115%);
  }

  48% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(115%);
  }
}

@keyframes jump-wipe {
  0% {
    transform: translateX(-115%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(115%);
  }
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

@keyframes hero-pan {
  from {
    object-position: 50% 50%;
  }

  to {
    object-position: 58% 44%;
  }
}

@keyframes title-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes slash-run {
  0% {
    opacity: 0;
    transform: rotate(-18deg) translateX(-130%);
  }

  18%,
  58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(-18deg) translateX(160%);
  }
}

@keyframes spice-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  35% {
    transform: translate3d(36px, -42px, 0) rotate(96deg);
  }

  70% {
    transform: translate3d(-24px, 28px, 0) rotate(164deg);
  }
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .intro,
  .experience,
  .booking {
    grid-template-columns: 1fr;
  }

  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-plate {
    width: min(380px, 82vw);
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid,
  .intro-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .board-panel {
    min-height: auto;
  }

  .ritual-grid::before {
    left: 33px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .ritual.section-lit .ritual-grid::before {
    transform: scaleY(1);
  }

  .gallery-track {
    grid-template-columns: 1fr;
  }

  .gallery-track img,
  .gallery-track img:nth-child(2) {
    height: 360px;
    margin-top: 0;
  }

  .coffee-scene {
    grid-template-columns: 1fr;
    align-content: center;
    text-align: center;
  }

  .coffee-photo {
    width: min(360px, 80vw);
    justify-self: center;
  }

  .coffee-copy strong {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.72);
  }

  .menu-grid,
  .intro-stats,
  .booking-form,
  .showcase-list {
    grid-template-columns: 1fr;
  }

  .menu-showcase {
    padding: 18px;
  }

  .menu-pick {
    min-height: 58px;
  }

  .specialty-marquee {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .ritual-step {
    min-height: 210px;
  }

  .section-band,
  .menu-section,
  .gallery,
  .booking,
  .menu-board {
    padding-inline: 18px;
  }

  .coffee-scene {
    min-height: 82svh;
  }

  .coffee-copy strong {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .coffee-copy small {
    margin-top: 14px;
  }
}
