:root {
  --bg: #f7efe3;
  --bg-2: #f0e6d7;
  --text: #201914;
  --muted: #6a5a4c;
  --line: rgba(71, 53, 38, 0.1);
  --glass: rgba(255, 249, 240, 0.56);
  --glass-strong: rgba(255, 248, 238, 0.74);
  --white-line: rgba(255, 255, 255, 0.38);
  --accent: #284f38;
  --accent-2: #d9804d;
  --accent-3: #f4c48c;
  --shadow: 0 24px 80px rgba(53, 35, 22, 0.14);
  --shadow-soft: 0 20px 50px rgba(53, 35, 22, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 205, 146, 0.56), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(76, 110, 82, 0.18), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.ambient,
.cursor-glow,
.grain,
.progress-bar {
  pointer-events: none;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(18px);
  z-index: -2;
  opacity: 0.8;
  animation: drift 16s ease-in-out infinite;
}

.ambient--one {
  width: 320px;
  height: 320px;
  top: 7%;
  left: -60px;
  background: radial-gradient(circle, rgba(244, 196, 140, 0.75), transparent 70%);
}

.ambient--two {
  width: 340px;
  height: 340px;
  top: 42%;
  right: -90px;
  background: radial-gradient(circle, rgba(40, 79, 56, 0.22), transparent 68%);
  animation-delay: -6s;
}

.ambient--three {
  width: 260px;
  height: 260px;
  bottom: 8%;
  left: 18%;
  background: radial-gradient(circle, rgba(217, 128, 77, 0.28), transparent 70%);
  animation-delay: -11s;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -24px, 0) scale(1.04); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  background-image:
    linear-gradient(transparent 0, transparent 49%, rgba(0,0,0,0.12) 50%, transparent 51%),
    linear-gradient(90deg, transparent 0, transparent 49%, rgba(0,0,0,0.08) 50%, transparent 51%);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 182, 0.35), rgba(255, 224, 182, 0));
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: 90;
}

.topbar,
.hero,
.section,
.footer,
.marquee {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 14px;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0.14));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 10px 14px;
  border-radius: 999px;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand__name,
.brand__tag {
  display: block;
}

.brand__name {
  font-size: 1rem;
  font-weight: 800;
}

.brand__tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.24s ease;
}

.nav a:hover {
  background: rgba(40, 79, 56, 0.1);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 18px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 36px 0 56px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1,
.section__heading h2,
.visit-card h2,
.statement__wrap p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  max-width: 10ch;
}

.hero p,
.feature-card p,
.menu-card p,
.mood-panel__item span,
.visit-card p,
.meta-label,
.stat span {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #416e53);
  box-shadow: 0 18px 32px rgba(40, 79, 56, 0.3);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(40, 79, 56, 0.12);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px 18px 20px;
  border-radius: 22px;
}

.stat strong,
.meta-box strong,
.mood-panel__item strong {
  display: block;
}

.stat strong {
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero__visual {
  position: relative;
  height: 700px;
  min-height: 700px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card,
.menu-poster,
.menu-card,
.feature-card,
.gallery-item,
.cinematic__media,
.statement__wrap,
.meta-box {
  will-change: transform;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255, 248, 239, 0.42);
}

.hero-card img,
.hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  inset: 18px 48px 126px 40px;
  z-index: 1;
}

.hero-card--portrait {
  width: 250px;
  right: 0;
  bottom: 20px;
  aspect-ratio: 3 / 4;
  padding: 10px;
  z-index: 3;
}

.hero-card--portrait img {
  border-radius: 24px;
}

.hero-card--video {
  width: 230px;
  top: 54px;
  left: 0;
  aspect-ratio: 1 / 1.18;
  padding: 10px;
  z-index: 2;
}

.hero-card--video video {
  border-radius: 24px;
}

.hero-pill,
.hero-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-pill {
  right: 42px;
  top: 10px;
}

.hero-badge {
  left: 22px;
  bottom: 146px;
  border-radius: 26px;
  max-width: 290px;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
}

.marquee {
  overflow: hidden;
  padding-bottom: 16px;
}

.marquee__track {
  display: inline-flex;
  gap: 20px;
  min-width: max-content;
  white-space: nowrap;
  font-weight: 700;
  color: rgba(32, 25, 20, 0.7);
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 100px 0;
}

.section__heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section__heading h2,
.visit-card h2 {
  font-size: clamp(2.8rem, 4.4vw, 5rem);
}

.feature-grid,
.menu-showcase,
.gallery-grid,
.cinematic,
.visit-card {
  display: grid;
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card__index,
.menu-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 79, 56, 0.08);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 18px;
}

.feature-card h3,
.menu-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}

.menu-showcase {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.menu-poster {
  padding: 12px;
  border-radius: 34px;
}

.menu-poster img {
  border-radius: 26px;
}

.menu-stack {
  display: grid;
  gap: 18px;
}

.menu-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 240px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
  min-height: 520px;
}

.cinematic {
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.cinematic__media {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.cinematic__media video {
  width: 100%;
  min-height: 640px;
  max-height: 760px;
  object-fit: cover;
  background: #000;
}

.cinematic__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 15, 12, 0.04), rgba(21, 15, 12, 0.28));
  pointer-events: none;
}

.mood-panel {
  padding: 26px;
  border-radius: 30px;
}

.mood-panel__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mood-panel__item:last-child {
  border-bottom: none;
}

.statement {
  padding-top: 12px;
}

.statement__wrap {
  border-radius: 34px;
  padding: 34px;
  text-align: center;
}

.statement__wrap p {
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.visit-card {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  border-radius: 36px;
  padding: 34px;
}

.visit-card__meta {
  display: grid;
  gap: 16px;
}

.meta-box {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.6);
  border: 1px solid rgba(40, 79, 56, 0.1);
}

.meta-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer {
  padding: 10px 0 44px;
  color: var(--muted);
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

[data-tilt]:hover {
  box-shadow: 0 30px 90px rgba(53, 35, 22, 0.18);
}

.magnetic {
  transition: transform 0.22s ease;
}

@media (max-width: 1100px) {
  .hero,
  .menu-showcase,
  .cinematic,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .hero__stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: 620px;
    min-height: 620px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .topbar {
    padding-top: 16px;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 70;
  }

  .nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 28px;
    padding: 16px;
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .hero {
    min-height: unset;
    padding-top: 20px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__visual {
    height: 560px;
    min-height: 560px;
  }

  .hero-card--main {
    inset: 18px 10px 130px 10px;
  }

  .hero-card--portrait {
    width: 200px;
  }

  .hero-card--video {
    width: 170px;
  }

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

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1220px);
  }

  .brand__tag {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    gap: 24px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    gap: 12px;
  }

  .stat {
    padding: 16px 16px 18px;
  }

  .hero__visual {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .hero-card,
  .hero-pill,
  .hero-badge {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
  }

  .hero-card--main {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
  }

  .hero-card--portrait,
  .hero-card--video {
    aspect-ratio: 1 / 1.25;
    padding: 8px;
  }

  .hero-card--portrait img,
  .hero-card--video video {
    border-radius: 20px;
  }

  .hero-pill,
  .hero-badge {
    border-radius: 22px;
  }

  .hero-pill {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.86rem;
  }

  .hero-badge {
    grid-column: 1 / -1;
  }

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

  .statement__wrap,
  .visit-card {
    padding: 24px;
  }

  .statement__wrap p {
    font-size: 2.4rem;
  }
}
