/* Main styles */

:root {
  /* Warm neutrals */
  --cream: #F2EBDF;
  --cream-soft: #EDE3D2;
  --cream-deep: #E2D3B8;
  --paper: #F8F2E6;
  --espresso: #2A1F1A;
  --espresso-soft: #3A2C24;
  --bark: #5C4533;
  --ink: #1B1411;

  /* Single accent — desaturated gold */
  --gold: #C9A573;
  --gold-warm: #B8915C;
  --gold-soft: #DABF94;

  /* Tertiary muted sage */
  --sage: #A8B09A;

  /* type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* easing */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, .0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Subtle grain overlay across entire page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* Warm radial breathing — sits behind everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 165, 115, .07) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(201, 165, 115, .05) 0%, transparent 50%),
    radial-gradient(circle at 45% 90%, rgba(42, 31, 26, .04) 0%, transparent 40%);
  animation: breathe 14s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }

  50% {
    transform: scale(1.08) translate(-1%, 1%);
    opacity: .85;
  }
}

/* Drifting coffee beans — barely-there ambient motion */
.beans-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.beans-bg .bean {
  position: absolute;
  width: 14px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-warm);
  opacity: .07;
  animation: drift linear infinite;
}

.beans-bg .bean::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 48%, rgba(42, 31, 26, .4) 50%, transparent 52%);
}

@keyframes drift {
  0% {
    transform: translate(0, 100vh) rotate(0deg);
  }

  100% {
    transform: translate(20vw, -20vh) rotate(720deg);
  }
}

/* Shared bits */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  color: var(--bark);
  margin: 0;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* Custom cursor */
*,
*::before,
*::after {
  cursor: none !important;
}

@media (max-width: 900px) {

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  transition: width .25s, height .25s, background .25s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .6);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .25s;
}

body.cursor-hover .cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

body.cursor-hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
  background: rgba(201, 165, 115, 0.1);
}

@media (max-width: 900px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .8s var(--ease-out), visibility .8s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.pre-cup {
  width: 56px;
  height: 60px;
  position: relative;
}

.pre-cup .body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--espresso);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.pre-cup .body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: var(--gold-warm);
  animation: fillCup 1.8s var(--ease-soft) infinite;
}

.pre-cup .handle {
  position: absolute;
  right: -12px;
  top: 22px;
  width: 14px;
  height: 22px;
  border: 3px solid var(--espresso);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.pre-cup .steam {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 3px;
  height: 18px;
  background: var(--bark);
  opacity: .35;
  border-radius: 2px;
  filter: blur(2px);
  animation: steam 2.4s ease-in-out infinite;
}

.pre-cup .steam:nth-child(2) {
  left: 30%;
  animation-delay: .4s;
}

.pre-cup .steam:nth-child(3) {
  left: 70%;
  animation-delay: .8s;
}

@keyframes fillCup {
  0% {
    height: 0%;
  }

  60% {
    height: 90%;
  }

  100% {
    height: 0%;
  }
}

@keyframes steam {

  0%,
  100% {
    transform: translateY(0) translateX(-50%) scaleX(1);
    opacity: .1;
  }

  50% {
    transform: translateY(-12px) translateX(-40%) scaleX(.6);
    opacity: .55;
  }
}

.pre-text {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bark);
}

.pre-text .dot {
  display: inline-block;
  opacity: 0;
  animation: dot 1.4s infinite;
}

.pre-text .dot:nth-child(2) {
  animation-delay: .2s;
}

.pre-text .dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dot {

  0%,
  80% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease-out), padding .4s, color .4s;
  color: #fff;
}

.nav.scrolled {
  background: rgba(242, 235, 223, .92);
  color: var(--espresso);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(42, 31, 26, .06);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .est {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  opacity: .6;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: .04em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity .2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .4s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  opacity: .8;
  white-space: nowrap;
  transition: opacity .2s, background .2s, color .2s;
}

.lang-toggle:hover {
  opacity: 1;
  background: currentColor;
  color: var(--cream);
}

.nav-reserve {
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .3s, color .3s;
}

.nav-reserve:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 8px;
  opacity: .8;
  flex-shrink: 0;
  transition: opacity .2s;
}

.nav-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* mobile menu overlay */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 99;
  padding: 90px 32px 48px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform .4s var(--ease-out), visibility 0s .4s;
  overflow-y: auto;
}

.nav-mobile-menu.open {
  visibility: visible;
  transform: translateY(0);
  transition: transform .4s var(--ease-out), visibility 0s;
}

.nav-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-mobile-menu ul a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  padding: 14px 0;
  letter-spacing: -.01em;
  transition: color .2s;
}

.nav-mobile-menu ul a:hover,
.nav-mobile-menu ul a.active {
  color: var(--gold);
}

.nav-mobile-menu .mobile-reserve {
  display: inline-block;
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: .06em;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  align-self: flex-start;
  transition: background .3s, color .3s;
}

.nav-mobile-menu .mobile-reserve:hover {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 900px) {
  /* ── Nav ── */
  .nav > nav,
  .nav-links,
  .nav-reserve {
    display: none;
  }

  .nav-burger {
    display: flex;
    flex-shrink: 0;
  }

  .nav {
    padding: 14px 20px;
    flex-wrap: nowrap;
    /* always-visible frosted background — stops hero content bleeding through */
    background: rgba(20, 14, 10, .55) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #fff !important;
  }

  .nav.scrolled {
    background: rgba(242, 235, 223, .96) !important;
    color: var(--espresso) !important;
    border-bottom-color: rgba(42, 31, 26, .08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
  }

  .nav-logo .est {
    display: none;
  }

  /* ── Hero ── */
  .hero-inner {
    padding: 90px 24px 140px;
    justify-content: flex-start;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: .2em;
    margin-bottom: 20px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
    margin: 0 0 20px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .hero-bottom {
    padding: 0 20px 20px;
    gap: 12px;
  }

  .hero-meta {
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .nav-logo {
    font-size: 17px;
  }

  .nav {
    padding: 12px 14px;
  }

  .lang-toggle {
    font-size: 10px;
    padding: 6px 10px;
  }
}

@media (min-width: 901px) {
  .nav-mobile-menu {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s var(--ease-out);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s linear;
}

.hero-slide.active .bg {
  transform: scale(1.18);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, .55) 0%, rgba(20, 14, 10, .25) 35%, rgba(20, 14, 10, .65) 80%, rgba(20, 14, 10, .92) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(20, 14, 10, .45) 100%);
  pointer-events: none;
}

/* Animated steam plumes drifting up the hero */
.hero-steam {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
}

.hero-steam .plume {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(255, 245, 225, .14) 0%, transparent 60%);
  filter: blur(18px);
  animation: rise 12s ease-in-out infinite;
}

.hero-steam .plume:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
}

.hero-steam .plume:nth-child(2) {
  left: 38%;
  animation-delay: 3s;
}

.hero-steam .plume:nth-child(3) {
  left: 68%;
  animation-delay: 6s;
}

.hero-steam .plume:nth-child(4) {
  left: 92%;
  animation-delay: 9s;
}

@keyframes rise {
  0% {
    transform: translateY(20px) scale(.6);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}

/* Glass feature cards — restored from original feel */
.hero-features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0 40px;
  opacity: 0;
  animation: fadeUp 1.2s 1.6s var(--ease-out) forwards;
}

@media (max-height: 880px) {
  .hero-features {
    display: none;
  }
}

.glass-card {
  flex: 0 1 240px;
  padding: 18px 22px;
  background: rgba(40, 28, 22, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  transition: transform .6s var(--ease-out), background .4s, border-color .4s;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.4s var(--ease-out);
}

.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(201, 165, 115, .45);
}

.glass-card:hover::before {
  transform: translateX(100%);
}

.glass-card .ico {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 115, .16);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 16px;
  flex-shrink: 0;
}

.glass-card .txt small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 2px;
}

.glass-card .txt strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
}

@media (max-width: 800px) {
  .hero-features {
    display: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 40px 280px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .3s var(--ease-out) forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
  opacity: .5;
}

/* Hero title — sharp text */
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
  margin: 0 0 36px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 30px rgba(0, 0, 0, .3);
}

.hero-title .word {
  display: inline-block;
  margin: 0 0.18em;
  padding-bottom: 0.08em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s var(--ease-out) forwards;
}

.hero-title .word.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}

.hero-title .word:nth-child(1) {
  animation-delay: .5s;
}

.hero-title .word:nth-child(2) {
  animation-delay: .65s;
}

.hero-title .word:nth-child(3) {
  animation-delay: .8s;
}

.hero-title .word:nth-child(4) {
  animation-delay: .95s;
}

.hero-title .word:nth-child(5) {
  animation-delay: 1.1s;
}

.hero-desc {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.2s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.4s var(--ease-out) forwards;
}

.btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .06em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .4s var(--ease-out), background .3s, color .3s, border-color .3s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%);
  transition: width .8s var(--ease-out), height .8s var(--ease-out);
}

.btn:hover::before {
  width: 360px;
  height: 360px;
}

.btn-primary:hover {
  box-shadow: 0 14px 30px -8px rgba(201, 165, 115, .5);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
}

.btn .arrow {
  transition: transform .4s var(--ease-out);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hero bottom — scroll cue + features ribbon */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 40px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: rgba(255, 255, 255, .85);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2.4s var(--ease-soft) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }

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

.hero-meta {
  display: flex;
  gap: 48px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta .item strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--gold-soft);
  text-transform: none;
}

.hero-pager {
  display: flex;
  gap: 8px;
}

.hero-pager .dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.hero-pager .dot.active {
  background: var(--gold);
  width: 40px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 24px;
    gap: 18px;
  }

  .hero-meta {
    gap: 24px;
  }
}

/* Marquee ticker */
.ticker {
  background: var(--espresso);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(201, 165, 115, .15);
  border-bottom: 1px solid rgba(201, 165, 115, .15);
}

.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  align-items: center;
}

.ticker-track span {
  color: var(--cream);
}

.ticker-track .star {
  color: var(--gold);
  font-size: 14px;
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

/* Story / about */
.story {
  padding: 140px 0 120px;
  background: var(--paper);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .story {
    padding: 80px 0;
  }
}

.story-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.story-visual .frame {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
}

.story-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.story-visual .frame:hover img {
  transform: scale(1.04);
}

.story-visual .main {
  inset: 0 20% 15% 0;
  box-shadow: 0 30px 80px -20px rgba(42, 31, 26, .25);
}

.story-visual .sub {
  width: 50%;
  aspect-ratio: 4/5;
  right: 0;
  bottom: 0;
  box-shadow: 0 20px 60px -20px rgba(42, 31, 26, .35);
  border: 8px solid var(--paper);
}

.story-stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px rgba(42, 31, 26, .2);
  z-index: 3;
}

.story-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 28s linear infinite;
}

.story-stamp:hover svg {
  animation-duration: 8s;
}

.story-stamp .center {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-warm);
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
}

.story-stamp .center strong {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--espresso);
  letter-spacing: .05em;
}

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

.story-text h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  margin: 22px 0 28px;
  font-weight: 300;
  line-height: 1.02;
}

.story-text h2 .reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.story-text h2 .reveal-word>span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-out);
}

.reveal.in .reveal-word>span {
  transform: translateY(0);
}

.reveal.in .reveal-word:nth-child(2)>span {
  transition-delay: .08s;
}

.reveal.in .reveal-word:nth-child(3)>span {
  transition-delay: .16s;
}

.reveal.in .reveal-word:nth-child(4)>span {
  transition-delay: .24s;
}

.reveal.in .reveal-word:nth-child(5)>span {
  transition-delay: .32s;
}

.reveal.in .reveal-word:nth-child(6)>span {
  transition-delay: .40s;
}

.reveal.in .reveal-word:nth-child(7)>span {
  transition-delay: .48s;
}

.story-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-warm);
}

.story-text .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--espresso-soft);
  margin-bottom: 24px;
  font-weight: 300;
}

.story-text p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.story-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(42, 31, 26, .1);
}

.story-tabs button {
  padding: 14px 22px 14px 0;
  margin-right: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bark);
  position: relative;
  transition: color .3s;
}

.story-tabs button.active {
  color: var(--espresso);
}

.story-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold-warm);
  transition: width .4s var(--ease-out);
}

.story-tabs button.active::after {
  width: 100%;
}

.story-pane {
  display: none;
}

.story-pane.active {
  display: block;
  animation: fadeIn .6s var(--ease-out);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(42, 31, 26, .08);
}

.signature .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--cream-deep);
}

.signature .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bark);
}

.signature .who strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
  text-transform: none;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

/* timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 31, 26, .07);
  align-items: baseline;
}

.timeline-year {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--gold-warm);
  font-weight: 500;
}

.timeline-row h6 {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--espresso);
}

.timeline-row p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* vision tab grid */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.vision-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(42, 31, 26, .1);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .4);
  transition: background .3s, border-color .3s;
}

.vision-pill:hover {
  background: var(--cream-soft);
  border-color: var(--gold-soft);
}

.vision-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Brewing journey (sticky scroll) */
.journey {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey-intro {
  padding: 140px 40px 80px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.journey-intro h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  margin: 18px 0 24px;
}

.journey-intro h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.journey-intro p {
  color: rgba(242, 235, 223, .65);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}

.journey-intro .eyebrow {
  color: var(--gold);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 165, 115, .15);
}

.journey-step {
  padding: 60px 40px 80px;
  border-right: 1px solid rgba(201, 165, 115, .15);
  position: relative;
  overflow: hidden;
  transition: background .5s;
  cursor: default;
}

.journey-step:last-child {
  border-right: none;
}

.journey-step:hover {
  background: rgba(201, 165, 115, .04);
}

.journey-step .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journey-step .num span:last-child {
  opacity: .35;
}

.journey-step h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 16px;
  font-style: italic;
}

.journey-step p {
  color: rgba(242, 235, 223, .6);
  font-size: 15px;
  line-height: 1.65;
  max-width: 32ch;
}

.journey-step .glyph {
  position: absolute;
  bottom: -110px;
  right: -60px;
  font-size: 220px;
  font-family: var(--serif);
  color: rgba(201, 165, 115, .045);
  font-style: italic;
  pointer-events: none;
  z-index: 0;
  transition: transform 1.2s var(--ease-out), color .8s;
  animation: glyphFloat 8s ease-in-out infinite;
}

.journey-step:hover .glyph {
  color: rgba(201, 165, 115, .09);
}

@keyframes glyphFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

.journey-step .num,
.journey-step h3,
.journey-step p {
  position: relative;
  z-index: 1;
}

.journey-step:hover .glyph {
  transform: rotate(-8deg) scale(1.1);
}

@media (max-width: 900px) {
  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-step {
    border-right: none;
    border-bottom: 1px solid rgba(201, 165, 115, .15);
  }
}

/* Service / cinematic accordion */
.services {
  padding: 140px 0 0;
  background: var(--cream);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.services-head h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  max-width: 12ch;
}

.services-head h2 em {
  font-style: italic;
  color: var(--gold-warm);
  font-weight: 300;
}

.services-head .right {
  max-width: 360px;
  font-size: 15px;
  color: var(--bark);
  padding-bottom: 12px;
}

.accordion {
  display: flex;
  height: 540px;
  overflow: hidden;
}

.acc-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
  overflow: hidden;
  transition: flex 1s var(--ease-out);
  background-size: cover;
  background-position: center;
}

.acc-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s var(--ease-out);
  pointer-events: none;
}

.acc-panel.active {
  flex: 5 1 0;
}

.acc-panel .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, .1) 0%, rgba(20, 14, 10, .7) 100%);
  transition: background .8s;
}

.acc-panel.active .veil {
  background: linear-gradient(180deg, rgba(20, 14, 10, .0) 0%, rgba(20, 14, 10, .55) 55%, rgba(20, 14, 10, .92) 100%);
}

.acc-panel .label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .85), 0 2px 20px rgba(0, 0, 0, .6);
}

.acc-panel.active .label {
  background: rgba(20, 14, 10, .52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px 24px;
  border-radius: 6px;
  text-shadow: none;
}

.acc-panel .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-soft);
}

.acc-panel h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  font-style: italic;
  white-space: nowrap;
  margin: 0;
}

.acc-panel p {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  transition: opacity .5s .3s var(--ease-out), max-height .8s var(--ease-out);
  overflow: hidden;
}

.acc-panel.active p {
  opacity: 1;
  max-height: 200px;
}

.acc-panel.active h3 {
  font-size: 42px;
}

.acc-panel:not(.active) h3 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .accordion {
    flex-direction: column;
    height: auto;
  }

  .acc-panel {
    height: 200px;
  }

  .acc-panel.active {
    height: 380px;
    flex: none;
  }

  .acc-panel:not(.active) h3 {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* Menu */
.menu {
  padding: 140px 0;
  background: var(--paper);
}

.menu-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.menu-head h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  margin: 18px 0 0;
}

.menu-head h2 em {
  font-style: italic;
  color: var(--gold-warm);
  font-weight: 300;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(42, 31, 26, .1);
}

.menu-tabs button {
  padding: 18px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bark);
  position: relative;
  transition: color .3s;
}

.menu-tabs button.active {
  color: var(--espresso);
}

.menu-tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold-warm);
  transition: width .5s var(--ease-out), left .5s var(--ease-out);
}

.menu-tabs button.active::after {
  width: 100%;
  left: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(42, 31, 26, .1);
}

.menu-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  padding: 28px 32px;
  align-items: center;
  border-bottom: 1px solid rgba(42, 31, 26, .08);
  border-right: 1px solid rgba(42, 31, 26, .08);
  background: transparent;
  transition: background .4s var(--ease-out);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s var(--ease-out);
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item h4 {
  transition: transform .5s var(--ease-out);
}

.menu-item:hover h4 {
  transform: translateX(8px);
}

.menu-item:nth-child(3n) {
  border-right: none;
}

.menu-item:hover {
  background: var(--cream-soft);
}

.menu-item .thumb {
  width: 110px;
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.menu-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.menu-item:hover .thumb img {
  transform: scale(1.08);
}

.menu-item .info h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--espresso);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-item .info h4 .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(42, 31, 26, .25);
  margin: 0 4px 6px;
}

.menu-item .info p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bark);
  margin: 0;
  max-width: 30ch;
}

.menu-item .price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--gold-warm);
  font-weight: 500;
  white-space: nowrap;
}

.menu-item .tag {
  position: absolute;
  top: 36px;
  left: 36px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 10px -2px rgba(42, 31, 26, .3);
}

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-item:nth-child(3n) {
    border-right: 1px solid rgba(42, 31, 26, .08);
  }

  .menu-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 700px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    border-right: none !important;
  }

  .menu-item {
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 20px;
  }

  .menu-item .thumb {
    width: 80px;
    height: 80px;
  }
}

.menu-cta {
  text-align: center;
  margin-top: 60px;
}

.menu-cta a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
  transition: gap .4s var(--ease-out), color .3s;
}

.menu-cta a:hover {
  gap: 22px;
  color: var(--gold-warm);
}

/* Reservation */
.reserve {
  position: relative;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg.jpg') center/cover;
  opacity: .25;
  filter: blur(0px);
}

.reserve-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 14, 10, .85) 0%, rgba(20, 14, 10, .6) 100%);
}

.reserve-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 720px;
}

@media (max-width: 960px) {
  .reserve-grid {
    grid-template-columns: 1fr;
  }
}

.reserve-left {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reserve-left .badge {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 110px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.reserve-left .badge sup {
  font-family: var(--mono);
  font-size: 14px;
  font-style: normal;
  letter-spacing: .15em;
  color: var(--cream);
  opacity: .7;
  top: -.4em;
}

.reserve-left h2 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin: 0 0 24px;
}

.reserve-left h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.reserve-left p {
  color: rgba(242, 235, 223, .7);
  margin-bottom: 28px;
  max-width: 48ch;
}

.reserve-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reserve-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(242, 235, 223, .85);
}

.reserve-perks li .check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 9px;
}

.reserve-right {
  padding: 100px 60px;
  background: rgba(28, 20, 16, .85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(201, 165, 115, .15);
}

.reserve-form h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 8px;
  font-style: italic;
}

.reserve-form .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.field {
  margin-bottom: 20px;
  position: relative;
}

.field label {
  position: absolute;
  left: 0;
  top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(242, 235, 223, .5);
  pointer-events: none;
  transition: top .3s var(--ease-out), font-size .3s, color .3s;
}

.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 165, 115, .25);
  padding: 18px 0 12px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color .3s;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input:focus~label,
.field input:not(:placeholder-shown)~label,
.field select:focus~label,
.field.filled label {
  top: 0;
  font-size: 9px;
  color: var(--gold);
}

.field input::placeholder {
  color: transparent;
}

.field select {
  cursor: pointer;
}

.field select option {
  background: var(--ink);
  color: var(--cream);
}

.reserve-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reserve-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 22px;
  margin-top: 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out);
  font-weight: 500;
}

.reserve-submit:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

@media (max-width: 700px) {

  .reserve-left,
  .reserve-right {
    padding: 60px 28px;
  }
}

/* Testimonials */
.testimonials {
  padding: 140px 0 120px;
  background: var(--cream);
  overflow: hidden;
}

.testi-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.testi-head h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  margin: 18px 0 0;
}

.testi-head h2 em {
  font-style: italic;
  color: var(--gold-warm);
  font-weight: 300;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--paper);
  border: 1px solid rgba(42, 31, 26, .06);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  transition: transform .6s var(--ease-out), box-shadow .6s, border-color .6s;
  transform-style: preserve-3d;
  will-change: transform;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(42, 31, 26, .2);
  border-color: var(--gold-soft);
}

.testi-card .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 90px;
  color: var(--gold-soft);
  line-height: .8;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: .5;
}

.testi-card .stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 18px;
}

.testi-card blockquote {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--espresso);
  margin: 0 0 32px;
  max-width: 44ch;
}

.testi-card .person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 31, 26, .08);
}

.testi-card .person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card .person .name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--espresso);
  font-style: italic;
}

.testi-card .person .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: .7;
}

/* Visit / hours strip */
.visit {
  background: var(--espresso);
  color: var(--cream);
  padding: 100px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .visit-col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(201, 165, 115, .15);
    padding-bottom: 32px;
  }

  .visit-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    gap: 0;
  }

  .newsletter-form input {
    border-bottom: 1px solid rgba(201, 165, 115, .25);
    padding: 12px 0;
  }

  .newsletter-form button {
    padding: 14px 0;
    text-align: left;
    white-space: nowrap;
  }
}

.visit-col {
  padding: 0 32px;
  border-right: 1px solid rgba(201, 165, 115, .15);
}

.visit-col:last-child {
  border-right: none;
}

.visit-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  font-weight: 500;
}

.visit-col p,
.visit-col a {
  color: rgba(242, 235, 223, .85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.visit-col .big {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 8px;
}

.visit-col .row {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(201, 165, 113, .08);
}

.visit-col .row:last-child {
  border-bottom: none;
}

.visit-col .row span:last-child {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 165, 115, .3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background .3s, border-color .3s, color .3s;
}

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 165, 115, .25);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 0;
  color: var(--cream);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(242, 235, 223, .4);
}

.newsletter-form button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 14px 16px;
  transition: color .3s;
}

.newsletter-form button:hover {
  color: var(--cream);
}

/* Big footer mark */
.footer-mark {
  background: var(--espresso);
  color: var(--cream);
  border-top: 1px solid rgba(201, 165, 115, .1);
  padding: 80px 0 40px;
  text-align: center;
}

.footer-mark .word {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 280px);
  line-height: .85;
  font-weight: 300;
  letter-spacing: -.03em;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 165, 115, .4);
  margin: 0;
}

.footer-mark .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 165, 115, .1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(242, 235, 223, .5);
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .footer-mark .meta {
    flex-direction: column;
    gap: 14px;
  }
}

/* Utility entrance */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  will-change: opacity, transform;
}

/* Counter — reads on scroll */
.count {
  font-variant-numeric: tabular-nums;
}

/* Magnetic button base */
.magnetic {
  display: inline-block;
  transition: transform .25s var(--ease-out);
}

/* Interactive bg canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .45;
}

/* Cursor coffee aura — soft warm glow following pointer */
.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle at center,
      rgba(201, 165, 115, .14) 0%,
      rgba(201, 165, 115, .05) 35%,
      transparent 65%);
  transform: translate(-50%, -50%);
  transition: width .8s var(--ease-out), height .8s var(--ease-out), opacity .6s;
  will-change: transform;
}

body.dark-section .cursor-aura {
  background: radial-gradient(circle at center,
      rgba(218, 191, 148, .22) 0%,
      rgba(218, 191, 148, .1) 35%,
      transparent 65%);
  mix-blend-mode: screen;
}

body.cursor-hover .cursor-aura {
  width: 700px;
  height: 700px;
}

/* Section header underline animation */
.eyebrow {
  overflow: visible;
}

/* Hover tilt + lift on glass cards */
.glass-card {
  will-change: transform;
}

/* Footer wordmark hover sweep */
.footer-mark .word {
  transition: -webkit-text-stroke-color .8s, color .8s;
  cursor: default;
}

.footer-mark .word:hover {
  -webkit-text-stroke-color: var(--gold);
  color: rgba(201, 165, 115, .08);
}

/* Section reveal stagger — gentle scale-in */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  will-change: opacity, transform;
}

/* Photo float in story */
.story-visual .frame {
  transition: transform 1.2s var(--ease-out);
}

.story-visual .frame.main {
  animation: floatMain 9s ease-in-out infinite;
}

.story-visual .frame.sub {
  animation: floatSub 11s ease-in-out infinite;
}

@keyframes floatMain {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatSub {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Vision pill bounce */
.vision-pill {
  animation: pillSettle .8s var(--ease-out) backwards;
}

.reveal.in .vision-pill:nth-child(1) {
  animation-delay: .1s;
}

.reveal.in .vision-pill:nth-child(2) {
  animation-delay: .2s;
}

.reveal.in .vision-pill:nth-child(3) {
  animation-delay: .3s;
}

.reveal.in .vision-pill:nth-child(4) {
  animation-delay: .4s;
}

@keyframes pillSettle {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Journey step line draw */
.journey-step {
  position: relative;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 1.4s var(--ease-out);
}

.journey-step.in::before {
  width: 100%;
}

/* Accordion image inside ken-burns on active */
.acc-panel {
  background-attachment: local;
}

.acc-panel.active {
  animation: panelKen 12s ease-out forwards;
}

@keyframes panelKen {
  from {
    background-size: 105% auto;
  }

  to {
    background-size: 120% auto;
  }
}

/* Menu thumbnail hover ring */
.menu-item .thumb {
  position: relative;
}

.menu-item .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(201, 165, 115, 0);
  transition: box-shadow .6s;
}

.menu-item:hover .thumb::after {
  box-shadow: 0 0 0 4px rgba(201, 165, 115, .25);
}

/* Form field fly-in */
.reserve-form .field,
.reserve-form h3,
.reserve-form .sub,
.reserve-submit {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal.in .reserve-form .field,
.reveal.in .reserve-form h3,
.reveal.in .reserve-form .sub,
.reveal.in .reserve-submit {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in .reserve-form h3 {
  transition-delay: .1s;
}

.reveal.in .reserve-form .sub {
  transition-delay: .2s;
}

.reveal.in .reserve-form .field:nth-of-type(1) {
  transition-delay: .3s;
}

.reveal.in .reserve-form .field:nth-of-type(2) {
  transition-delay: .4s;
}

.reveal.in .reserve-form .field:nth-of-type(3) {
  transition-delay: .5s;
}

.reveal.in .reserve-form .field:nth-of-type(4) {
  transition-delay: .55s;
}

.reveal.in .reserve-form .field:nth-of-type(5) {
  transition-delay: .6s;
}

.reveal.in .reserve-submit {
  transition-delay: .7s;
}

/* Testimonial stars twinkle */
.testi-card .stars {
  display: inline-flex;
  gap: 3px;
}

.testi-card .stars span {
  display: inline-block;
  animation: twinkle 3.6s ease-in-out infinite;
}

.testi-card .stars span:nth-child(1) {
  animation-delay: 0s;
}

.testi-card .stars span:nth-child(2) {
  animation-delay: .3s;
}

.testi-card .stars span:nth-child(3) {
  animation-delay: .6s;
}

.testi-card .stars span:nth-child(4) {
  animation-delay: .9s;
}

.testi-card .stars span:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes twinkle {

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

  50% {
    opacity: .55;
    transform: scale(.92);
  }
}

/* Visit columns gentle border draw */
.visit-col h5 {
  position: relative;
  padding-bottom: 6px;
}

.visit-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 1s var(--ease-out);
}

.visit.in h5::after {
  width: 32px;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.reveal.delay-4 {
  transition-delay: .4s;
}

/* back to top */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(42, 31, 26, .4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .4s, transform .4s, background .3s;
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: var(--ink);
}

/* weather widget */
.weather {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 90;
  display: block;
  padding: 18px 20px 20px;
  background: var(--ink, #140e0a);
  border: 1px solid rgba(201, 165, 115, .18);
  max-width: 268px;
  transform: translateY(calc(100% + 64px));
  transition: transform .8s var(--ease-out), border-color .3s;
}

.weather.show {
  transform: translateY(0);
}

.weather .ico {
  display: none;
}

.weather .text {
  display: block;
  padding-right: 20px;
}

.weather .text small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 165, 115, .55);
  font-style: normal;
  display: block;
  margin-bottom: 10px;
}

.weather .text span {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(242, 235, 223, .8);
  line-height: 1.55;
  font-size: 14px;
  display: block;
}

.weather .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(242, 235, 223, .22);
  font-size: 14px;
  cursor: pointer;
  transition: color .2s;
  display: block;
  padding: 0;
  line-height: 1;
}

.weather .close:hover {
  color: rgba(201, 165, 115, .55);
}

@media (max-width: 600px) {
  .weather {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
}