/* =========================================================
   GURUNG SEKUWA — wood-fire grill house
   Design tokens
   ========================================================= */
:root {
  --charcoal: #1B1512;
  /* base dark background */
  --smoke: #251E19;
  /* raised dark panels */
  --smoke-line: #3A2E26;
  /* hairlines on dark */
  --ember: #C1441E;
  /* primary accent — burnt ember */
  --ember-dim: #8F3116;
  --turmeric: #E3A72E;
  /* secondary accent — spice gold */
  --bone: #F3EAD9;
  /* light backgrounds */
  --bone-line: #E2D5BC;
  --ink: #241C16;
  /* body text on light */
  --ash: #B8A99A;
  /* muted text on dark */

  --display: 'Anton', sans-serif;
  --body: 'Work Sans', sans-serif;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-background-scrim {
  position: absolute;
  inset: 0;
  background: rgba(27, 21, 18, .58);
}

body> :not(.page-background):not(.site-header) {
  position: relative;
  z-index: 1;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid var(--turmeric);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.7em;
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

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

.btn-ember {
  background: var(--ember);
  color: var(--bone);
}

.btn-ember:hover {
  background: var(--ember-dim);
}

.btn-outline {
  background: transparent;
  color: var(--bone);
  border-color: rgba(243, 234, 217, .5);
}

.btn-outline:hover {
  border-color: var(--bone);
}

.btn-small {
  padding: .6em 1.2em;
  font-size: .85rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(243, 234, 217, .18);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--bone);
  line-height: 1;
}

.brand-text em {
  font-style: normal;
  color: var(--turmeric);
}

.main-nav {
  display: flex;
  gap: 1.8rem;
}

.main-nav a {
  color: var(--ash);
  font-size: .92rem;
  font-weight: 500;
  padding: .3rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav a:hover {
  color: var(--bone);
  border-color: var(--ember);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--bone);
  font-size: .88rem;
  font-weight: 500;
}

.phone-link svg {
  color: var(--turmeric);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--bone);
  border-radius: 1px;
}

@media (max-width: 900px) {

  .main-nav,
  .phone-link {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-small {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--smoke-line);
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  color: var(--bone);
  padding: 8rem 1.5rem 6rem;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(227, 167, 46, .55), transparent 42%),
    radial-gradient(circle at 15% 75%, rgba(193, 68, 30, .5), transparent 45%),
    linear-gradient(155deg, #3B2A20 0%, #1B1512 65%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 10, 8, .92) 0%, rgba(15, 10, 8, .45) 45%, rgba(15, 10, 8, .35) 100%),
    radial-gradient(ellipse 70% 55% at 78% 15%, rgba(193, 68, 30, .25), transparent 60%);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  color: var(--turmeric);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .6rem;
  display: inline-flex;
  flex-direction: row;
  gap: .2em;
  flex-wrap: wrap;
}

.hero-kicker span {
  display: inline-block;
}

.hero-mark {
  display: flex;
  flex-direction: column;
  gap: .06em;
  font-size: clamp(3.6rem, 12vw, 9rem);
  line-height: .9;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin: 0 0 1.6rem;
  mix-blend-mode: overlay;
  text-shadow: 0 0 1px rgba(255, 255, 255, .4);
}

.hero-mark span {
  display: block;
}

@supports not (mix-blend-mode:overlay) {
  .hero-mark {
    color: var(--bone);
    mix-blend-mode: normal;
  }
}

.hero-sub {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ash);
}

.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width:700px) {
  .hero {
    min-height: 88svh;
    padding-top: 5.8rem;
    padding-bottom: 2.8rem;
    align-items: center;
  }

  .hero-inner {
    justify-content: center;
    margin-top: .2rem;
  }

  .hero-kicker {
    font-size: .74rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: .8rem;
    line-height: 1.35;
    margin-left: .12rem;
    flex-direction: column;
    gap: 0;
  }

  .hero-mark {
    font-size: clamp(3rem, 18vw, 5.2rem);
    line-height: .84;
    letter-spacing: -.045em;
    margin-bottom: 1rem;
    gap: .08em;
  }

  .hero-sub {
    font-size: .96rem;
    line-height: 1.56;
    max-width: 30ch;
  }

  .hero-cta {
    margin-top: 1.4rem;
    gap: .7rem;
  }
}

/* =========================================================
   STORY
   ========================================================= */
.story {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-grill {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: linear-gradient(160deg, #2B211A 0%, #1B1512 70%);
  position: relative;
  overflow: hidden;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.6);
}

.grill-bars {
  position: absolute;
  inset: 12% 8%;
  background-image: repeating-linear-gradient(90deg, #4A3628 0 6px, transparent 6px 26px);
  opacity: .5;
}

.story-glow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 35%;
  background: radial-gradient(ellipse at center, rgba(193, 68, 30, .55), transparent 70%);
  filter: blur(6px);
}

.story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.2rem;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 28px rgba(193, 68, 30, .35);
}

.story-badge-image {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 50%;
}

.story-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 14ch;
  margin-bottom: 1.4rem;
  color: var(--bone);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
}

.story-copy p {
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--bone);
  max-width: 56ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .7);
}

.story-copy p+p {
  margin-top: 1rem;
}

.story-highlights {
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: .9rem;
  list-style: none;
}

.story-highlights li {
  position: relative;
  padding: .85rem 1rem .85rem 1.25rem;
  border-left: 3px solid var(--turmeric);
  background: rgba(27, 21, 18, .34);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
}

.story-highlights li::before {
  content: '';
  position: absolute;
  left: -.42rem;
  top: 1.15rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--ember);
  border: 2px solid var(--bone);
}

.story-highlights strong,
.story-highlights span {
  display: block;
}

.story-highlights strong {
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

.story-highlights span {
  margin-top: .25rem;
  color: var(--ash);
  font-size: .88rem;
  line-height: 1.45;
}

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

  .story-visual {
    max-width: 320px;
    margin: 0 auto 2rem;
  }
}

/* =========================================================
   MENU
   ========================================================= */
.menu-section {
  color: var(--bone);
  padding: 6rem 1.5rem;
}

.section-head {
  max-width: var(--container);
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bone);
}

.menu-section .section-head h2 {
  color: var(--bone);
}

.gallery .section-head h2 {
  color: var(--bone);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
}

.story-copy h2 {
  color: var(--bone);
}

.section-head p {
  margin-top: .7rem;
  color: var(--ash);
  font-size: 1rem;
}

.menu-tabs {
  max-width: var(--container);
  margin: 0 auto 2.6rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--smoke-line);
  padding-bottom: 1.6rem;
}

.menu-tab {
  background: var(--smoke);
  color: var(--ash);
  border: 1px solid var(--smoke-line);
  padding: .6em 1.3em;
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
}

.menu-tab:hover {
  color: var(--bone);
  border-color: var(--turmeric);
}

.menu-tab.is-active {
  background: var(--ember);
  color: var(--bone);
  border-color: var(--ember);
}

.menu-panels {
  max-width: 760px;
  margin: 0 auto;
}

.menu-panel {
  display: none;
  animation: fadeIn .3s ease;
}

.menu-panel.is-active {
  display: block;
}

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

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

.panel-note {
  color: var(--ash);
  font-size: .92rem;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--smoke-line);
}

.item-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.item-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(184, 169, 154, .35);
  margin-bottom: .35rem;
}

.item-price {
  color: var(--turmeric);
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
}

.drink-tabs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.drink-tab {
  background: none;
  border: 1px solid var(--smoke-line);
  color: var(--ash);
  padding: .45em 1.1em;
  border-radius: 999px;
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.drink-tab:hover {
  color: var(--bone);
}

.drink-tab.is-active {
  background: var(--turmeric);
  color: var(--charcoal);
  border-color: var(--turmeric);
}

.drink-panel {
  display: none;
}

.drink-panel.is-active {
  display: block;
  animation: fadeIn .3s ease;
}

.menu-footer-note {
  max-width: 760px;
  margin: 2.2rem auto 0;
  text-align: center;
  color: var(--bone);
  font-size: .96rem;
  line-height: 1.7;
}

.menu-footer-note p {
  margin: 0;
}

.menu-footer-note strong {
  font-weight: 700;
}

.menu-footer-note p+p {
  margin-top: .3rem;
}

@media (max-width: 700px) {
  .menu-footer-note {
    margin-top: 1.8rem;
    padding: 0 .75rem;
    font-size: .82rem;
    line-height: 1.6;
  }

  .menu-footer-note p+p {
    margin-top: .2rem;
  }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.gallery-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(17, 15, 13, .3);
  border: 1px solid rgba(243, 234, 217, .08);
  padding: 1rem 0;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, 1), rgba(12, 10, 9, 0));
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(12, 10, 9, 1), rgba(12, 10, 9, 0));
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: gallery-scroll 36s linear infinite;
}

.gallery-item {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 320px);
  height: clamp(260px, 32vw, 400px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
  opacity: .95;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 820px) {
  .gallery {
    padding: 4.5rem 1rem;
  }

  .gallery-item {
    width: clamp(180px, 55vw, 240px);
    height: clamp(220px, 65vw, 300px);
  }
}

/* =========================================================
   CHEF SPOTLIGHT
   ========================================================= */
.chef-spotlight {
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(243, 234, 217, .16);
  border-bottom: 1px solid rgba(243, 234, 217, .16);
}

.chef-spotlight-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.35);
}

.chef-spotlight-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 10, 8, .78) 0%, rgba(15, 10, 8, .5) 42%, rgba(15, 10, 8, .2) 100%);
}

.chef-spotlight-copy {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.chef-spotlight-kicker {
  display: block;
  color: var(--turmeric);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.chef-spotlight-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--bone);
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .7);
}

.chef-spotlight-copy p {
  max-width: 38rem;
  color: var(--bone);
  line-height: 1.7;
  font-size: 1.02rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
  margin-bottom: 1.8rem;
}

@media (max-width:820px) {
  .story-badge {
    right: auto;
    left: 50%;
    bottom: -2.5rem;
    transform: translateX(-50%);
  }

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

  .g-tile--wide {
    grid-column: span 2;
  }

  .chef-spotlight-video {
    transform: scale(1.55);
  }
}

/* =========================================================
   VISIT
   ========================================================= */
.visit {
  color: var(--bone);
}

.visit-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.visit-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bone);
  margin-bottom: 2rem;
}

.visit-block {
  margin-bottom: 1.5rem;
}

.visit-label {
  display: block;
  color: var(--turmeric);
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: .3rem;
}

.visit-block p {
  color: var(--ash);
  line-height: 1.6;
}

.visit-block a {
  color: var(--bone);
}

.visit-info .btn {
  margin-top: 1rem;
}

.visit-map {
  width: 100%;
}

.map-link {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(243, 234, 217, .14);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .24);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.map-link iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.1) contrast(1.06) brightness(.86);
}

.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 181, 64, .8);
  box-shadow: 0 30px 52px rgba(0, 0, 0, .3);
}

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

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  color: var(--ash);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .brand-text {
  font-size: 1.3rem;
}

.footer-brand p {
  margin-top: .8rem;
  font-size: .9rem;
  color: var(--ash);
}

.footer-heading {
  display: block;
  color: var(--bone);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--ash);
  font-size: .9rem;
  padding: .35rem 0;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--turmeric);
}

.footer-bottom {
  border-top: 1px solid var(--smoke-line);
  padding: 1.4rem 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: #7A6B5C;
}

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