/* ============================================================
   UTSAV — Authentic Nepalese Restaurant
   Design system: temple brass, terracotta brick, evening candlelight
   ============================================================ */

:root{
  --bg:            #F3E9D6;
  --surface:       #FFFBF3;
  --surface-2:     #EFE1C6;
  --ink:           #2A1B14;
  --ink-soft:      #5B4636;
  --ink-mute:      #8A7660;
  --border:        #DDC79E;
  --maroon:        #7A1220;
  --maroon-dark:   #591019;
  --maroon-tint:   #F6E2DE;
  --brass:         #A97C2C;
  --brass-light:   #C99A44;
  --dark:          #201209;
  --dark-2:        #2B1810;
  --cream-on-dark: #F3E4C9;

  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --z-header: 500;
  --z-nav-backdrop: 490;
  --z-nav-panel: 510;
}

*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
body.nav-open{ overflow: hidden; }

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }

/* Defensive: flex/grid items default to min-width:auto, which can force
   a track wider than its container when text can't shrink further than
   its longest word — the classic invisible cause of mobile overflow. */
.hero-eyebrow, .info-list li, .info-list li > span, .about-list li,
.menu-item, .thali-course li, .footer-top > *, .event-row > *,
.form-grid > .field, .menu-cat h3{ min-width: 0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.deva{
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--brass);
  margin-bottom: 0.5em;
  font-weight: 500;
}

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-head p{
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.9rem;
  max-width: 54ch;
}
.section-head.center p{ margin-left: auto; margin-right: auto; }

.ornament{
  width: 46px;
  height: 14px;
  margin: 0 0 1rem;
  color: var(--brass);
}
.section-head.center .ornament{ margin-left: auto; margin-right: auto; }

section{ position: relative; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--maroon);
  color: #FBF2E8;
  border-color: var(--maroon);
}
.btn-primary:hover{ background: var(--maroon-dark); border-color: var(--maroon-dark); }
.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-mute);
}
.btn-outline:hover{ border-color: var(--maroon); color: var(--maroon); }
.btn-on-dark{
  background: rgba(20,11,7,0.28);
  color: var(--cream-on-dark);
  border-color: rgba(243,228,201,0.65);
}
.btn-on-dark:hover{ border-color: var(--cream-on-dark); background: rgba(243,228,201,0.14); }
.btn:focus-visible{ outline: 2px solid var(--brass); outline-offset: 3px; }

/* ============================================================
   HEADER  (sticky, not fixed — avoids mobile browser stacking
   glitches around dynamic toolbars, always paints above content)
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  isolation: isolate;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .3s var(--ease);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.site-header.scrolled{
  background: rgba(243,233,214,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(32,18,9,0.06);
  height: 64px;
}
.brand{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-on-dark);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.site-header.scrolled .brand{ color: var(--maroon); text-shadow: none; }
.brand .tag{
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--brass-light);
  text-transform: uppercase;
}
.site-header.scrolled .brand .tag{ color: var(--brass); }

.main-nav{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.main-nav a:not(.btn){
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(243,228,201,0.95);
  position: relative;
  padding: 4px 1px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.site-header.scrolled .main-nav a:not(.btn){ color: var(--ink-soft); text-shadow: none; }
.main-nav a:not(.btn)::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--brass-light);
  transition: right .25s var(--ease);
}
.site-header.scrolled .main-nav a:not(.btn)::after{ background: var(--maroon); }
.main-nav a:not(.btn):hover::after{ right: 0; }
.main-nav .btn{ padding: 0.65em 1.4em; }

.nav-toggle{
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: var(--z-nav-panel);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--cream-on-dark);
  transition: transform .25s var(--ease), opacity .25s var(--ease), background-color .25s;
}
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after{ background: var(--ink); }
.nav-toggle span{ top: 21px; }
.nav-toggle span::before{ top: -7px; }
.nav-toggle span::after{ top: 7px; }
.nav-open .nav-toggle span{ background: transparent !important; }
.nav-open .nav-toggle span::before{ transform: translateY(7px) rotate(45deg); background: var(--cream-on-dark) !important; }
.nav-open .nav-toggle span::after{ transform: translateY(-7px) rotate(-45deg); background: var(--cream-on-dark) !important; }

.nav-backdrop{
  position: fixed;
  inset: 0;
  z-index: var(--z-nav-backdrop);
  background: rgba(15,8,5,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-open .nav-backdrop{ opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100vh;  /* fallback for older browsers */
  min-height: 100svh; /* modern mobile: real visible height, not the address-bar-inflated one */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  margin-top: calc(-1 * var(--header-h));
}
.hero-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,8,5,0.62) 0%, rgba(14,8,5,0.22) 30%, rgba(14,8,5,0.4) 60%, rgba(12,7,4,0.94) 100%);
}
.hero-vignette{
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 18% 100%, rgba(10,6,4,0.85) 0%, rgba(10,6,4,0.35) 42%, rgba(10,6,4,0) 68%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 24px) var(--gutter) clamp(64px, 10vw, 120px);
  color: var(--cream-on-dark);
}
.hero-eyebrow{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 0.7em;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1.3rem;
  -webkit-text-stroke: 0.5px rgba(10,6,4,0.85);
  text-shadow:
    -1px -1px 0 rgba(10,6,4,0.75),
     1px -1px 0 rgba(10,6,4,0.75),
    -1px  1px 0 rgba(10,6,4,0.75),
     1px  1px 0 rgba(10,6,4,0.75),
     0 3px 16px rgba(0,0,0,0.55);
  opacity: 0;
  animation: rise .9s var(--ease) .15s forwards;
}
.hero-eyebrow .rule{ width: 34px; height: 1px; background: var(--brass-light); flex: none; -webkit-text-stroke: 0; text-shadow: none; }
.hero h1{
  font-size: clamp(4rem, 11vw, 8.4rem);
  line-height: 0.94;
  color: #FCF3E2;
  text-shadow: 0 6px 40px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.4);
  opacity: 0;
  animation: rise 1s var(--ease) .3s forwards;
}
.hero h2{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: rgba(252,243,226,0.95);
  margin-top: 1.1rem;
  max-width: 36ch;
  text-shadow: 0 3px 18px rgba(0,0,0,0.55);
  opacity: 0;
  animation: rise 1s var(--ease) .45s forwards;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2.6rem;
  opacity: 0;
  animation: rise 1s var(--ease) .6s forwards;
}
@keyframes rise{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-facts{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid rgba(243,228,201,0.22);
  background: rgba(10,6,4,0.35);
}
.hero-facts div{
  padding: 18px var(--gutter);
  border-left: 1px solid rgba(243,228,201,0.22);
}
.hero-facts div:first-child{ border-left: 0; padding-left: var(--gutter); }
.hero-facts strong{
  display: block;
  font-family: var(--font-display);
  color: #FBF1DE;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.hero-facts span{
  font-size: 0.8rem;
  color: rgba(243,228,201,0.75);
  letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about{
  padding: clamp(72px, 11vw, 132px) 0;
  background: var(--bg);
}
.about .container{
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.about-media{ position: relative; }
.about-media img{
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/2; /* matches the source photo's native ratio (1200x799) — no meaningful crop */
  object-fit: cover;
}
.about-media::before{
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 110px; height: 110px;
  border-top: 2px solid var(--brass);
  border-left: 2px solid var(--brass);
  z-index: -1;
}
.about-text p{
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 52ch;
}
.about-list{
  list-style: none;
  padding: 0;
  margin: 1.9rem 0 2.3rem;
  display: grid;
  gap: 0.85rem;
}
.about-list li{
  display: flex;
  gap: 0.8em;
  color: var(--ink);
  font-size: 0.98rem;
}
.about-list svg{ flex: none; width: 18px; height: 18px; color: var(--maroon); margin-top: 3px; }

/* ============================================================
   GALLERY / CULTURAL SHOW
   ============================================================ */
.gallery{
  padding: clamp(72px, 11vw, 128px) 0 clamp(60px, 9vw, 100px);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery .section-head{ display: flex; align-items: flex-end; justify-content: space-between; max-width: none; gap: 2rem; flex-wrap: wrap; }
.gallery .section-head .head-text{ max-width: 640px; }
.gallery-nav{ display: flex; gap: 10px; }
.gallery-nav button{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-mute);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}
.gallery-nav button:hover{ border-color: var(--maroon); color: var(--maroon); background: var(--maroon-tint); }
.filmstrip{
  display: grid;
  grid-auto-flow: column;
  /* Landscape cards close to the photos' native ~3:2 ratio, instead of the
     old tall portrait frames that cropped most of each scene away. */
  grid-auto-columns: min(80vw, 460px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 20px;
  margin: 0 -6px;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
  -webkit-overflow-scrolling: touch;
}
.filmstrip figure{
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
}
.filmstrip img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.filmstrip figure:hover img{ transform: scale(1.04); }
.filmstrip figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(0deg, rgba(15,8,5,0.82), rgba(15,8,5,0));
  color: #F6E9D2;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* ============================================================
   FEATURED STRIP (signature dishes)
   ============================================================ */
.featured{
  padding: clamp(60px, 8vw, 90px) 0;
  background: var(--surface-2);
}
.featured-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.featured-card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2; /* matches the dish photography, which is shot landscape — a portrait frame was cropping most of each plate out */
}
.featured-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.featured-card:hover img{ transform: scale(1.05); }
.featured-card .fc-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(15,8,5,0.86), rgba(15,8,5,0));
  color: #F6E9D2;
}
.featured-card h4{ font-size: 1rem; color: #F6E9D2; margin-bottom: 2px; }
.featured-card span{ font-size: 0.82rem; color: var(--brass-light); font-weight: 600; }

/* ============================================================
   MENU
   ============================================================ */
.menu{
  padding: clamp(76px, 11vw, 132px) 0;
  background: var(--bg);
}
.menu-intro{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.set-callout{
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  max-width: 380px;
}
.set-callout img{ width: 84px; height: 84px; object-fit: cover; border-radius: 2px; flex: none; }
.set-callout h4{ font-size: 1.05rem; margin-bottom: 4px; }
.set-callout p{ margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
.set-callout a{ font-size: 0.82rem; font-weight: 600; color: var(--maroon); display: inline-block; margin-top: 6px; }

.menu-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(2.6rem, 5vw, 4.4rem) clamp(2.6rem, 5vw, 4.4rem);
}
.menu-cat h3{
  font-size: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.menu-cat h3 .deva-inline{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--brass);
  letter-spacing: 0.02em;
}
.menu-item{
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item:last-child{ border-bottom: 0; }
.menu-item img{
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.menu-item .ph{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px dashed var(--border);
}
.menu-item-name{
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.menu-item-name small{
  display: block;
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.menu-item-price{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--maroon);
  font-size: 1.02rem;
  white-space: nowrap;
}
.menu-note{
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.86rem;
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
}

/* ============================================================
   SET DINNER (dark, immersive)
   ============================================================ */
.set-dinner{
  padding: clamp(80px, 11vw, 140px) 0;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  position: relative;
}
.set-dinner::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,13,8,0.92), rgba(24,13,8,0.86));
}
.set-dinner .container{ position: relative; z-index: 1; }
.set-dinner .section-head h2{ color: #FBF1DE; }
.set-dinner .section-head p{ color: rgba(243,228,201,0.75); }
.set-dinner .ornament{ color: var(--brass-light); }

.thali-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(20px, 3vw, 40px);
}
.thali-card{
  background: rgba(251,241,222,0.04);
  border: 1px solid rgba(243,228,201,0.18);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
}
.thali-card h3{
  color: #FBF1DE;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(243,228,201,0.2);
}
.thali-card h3 small{
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--brass-light);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.thali-course{ margin-bottom: 20px; }
.thali-course:last-child{ margin-bottom: 0; }
.thali-course h5{
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--brass-light);
  font-weight: 600;
  margin: 0 0 10px;
}
.thali-course ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.thali-course li{ color: rgba(251,241,222,0.92); }
.thali-course li strong{ font-weight: 600; }
.thali-course li span{
  display: block;
  font-size: 0.86rem;
  color: rgba(243,228,201,0.62);
  margin-top: 1px;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events{
  padding: clamp(76px, 11vw, 132px) 0;
  background: var(--bg);
}
.events-list{
  display: grid;
  gap: clamp(28px, 4vw, 10px);
}
.event-row{
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border);
}
.events-list .event-row:first-child{ padding-top: 0; }
.events-list .event-row:last-child{ border-bottom: 0; }
.event-row:nth-child(even) .event-media{ order: 2; }
.event-media img{
  width: 100%;
  /* aspect-ratio is set per-image inline (matching each photo's real
     dimensions) so nothing gets forced into a crop it wasn't shot for */
  object-fit: cover;
  border-radius: var(--radius);
}
/* The cooking-class photo is a wide table spread (~2.2:1) — a side-by-side
   split would either crop it hard or leave it tiny, so that row runs full
   width as a banner instead of fighting its native shape. */
.event-row.wide{ grid-template-columns: minmax(0,1fr); }
.event-row.wide .event-media{ order: 0; }
.event-num{
  font-family: var(--font-display);
  color: var(--brass);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: block;
}
.event-body h3{ font-size: 1.7rem; margin-bottom: 0.7rem; }
.event-body p{ color: var(--ink-soft); max-width: 52ch; }

/* ============================================================
   RESERVATION
   ============================================================ */
.reserve{
  padding: clamp(76px, 11vw, 132px) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.reserve .container{
  display: grid;
  grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  gap: clamp(36px, 6vw, 72px);
}
.reserve-info h2{ font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.reserve-info > p{ color: var(--ink-soft); margin-bottom: 2rem; max-width: 42ch; }
.info-list{ list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.2rem; }
.info-list li{ display: flex; gap: 14px; align-items: flex-start; }
.info-list svg{ flex: none; width: 20px; height: 20px; color: var(--maroon); margin-top: 3px; }
.info-list a:hover{ color: var(--maroon); }
.info-list .lbl{ display:block; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--ink-mute); margin-bottom: 2px; text-transform: uppercase; }
.map-frame{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-frame iframe{ width: 100%; height: 240px; border: 0; display: block; filter: sepia(12%) saturate(85%); }

.reserve-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
}
.reserve-form h3{ font-size: 1.3rem; margin-bottom: 0.4rem; }
.reserve-form > p{ color: var(--ink-mute); font-size: 0.9rem; margin: 0 0 1.6rem; }
.form-grid{ display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 16px; }
.form-grid .full{ grid-column: 1 / -1; }
.field{ display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label{ font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 0.85em;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px var(--maroon-tint);
}
.field textarea{ resize: vertical; min-height: 96px; }
.form-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.form-note{ font-size: 0.78rem; color: var(--ink-mute); max-width: 26ch; }
.form-status{
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--maroon);
  min-height: 1.2em;
}
.form-status[data-state="ok"]{ color: #4C6A34; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--dark-2);
  color: rgba(243,228,201,0.82);
  padding: clamp(52px, 7vw, 76px) 0 26px;
}
.footer-top{
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,0.9fr) minmax(0,0.9fr);
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid rgba(243,228,201,0.14);
}
.footer-brand .brand{ color: #FBF1DE; margin-bottom: 12px; text-shadow: none; }
.footer-brand p{ font-size: 0.92rem; color: rgba(243,228,201,0.62); max-width: 34ch; }
.footer-social{ display: flex; gap: 12px; margin-top: 18px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(243,228,201,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.footer-social a:hover{ border-color: var(--brass-light); background: rgba(169,124,44,0.15); }
.footer-col h5{
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--brass-light);
  font-weight: 600;
  margin: 0 0 1.1rem;
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col span{ font-size: 0.92rem; color: rgba(243,228,201,0.75); }
.footer-col a:hover{ color: var(--brass-light); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(243,228,201,0.5);
}
.footer-bottom a{ color: rgba(243,228,201,0.72); font-weight: 600; }
.footer-bottom a:hover{ color: var(--brass-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .reserve .container{ grid-template-columns: minmax(0,1fr); }
  .form-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

@media (max-width: 1024px){
  .featured-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .thali-grid{ grid-template-columns: minmax(0,1fr); gap: 28px; }
  .footer-top{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 860px){
  :root{ --header-h: 64px; }

  .main-nav{
    /* Anchored fully inside the viewport (right:0, width <=340px) at all times.
       Revealed with clip-path rather than translateX() so it never sits
       physically outside the layout box — translating a position:fixed
       element past the viewport edge is what was causing the phantom
       horizontal scroll on mobile browsers. */
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 340px);
    max-width: 100vw;
    z-index: var(--z-nav-panel);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 0 clamp(24px, 8vw, 40px);
    background: var(--dark-2);
    box-shadow: -12px 0 40px rgba(0,0,0,0.35);
    clip-path: inset(0 0 0 100%);
    transition: clip-path .4s var(--ease);
    will-change: clip-path;
  }
  .nav-open .main-nav{ clip-path: inset(0 0 0 0%); }
  .main-nav a:not(.btn){ font-size: 1.25rem; color: var(--cream-on-dark) !important; text-shadow: none; }
  .main-nav a:not(.btn)::after{ display: none; }
  .main-nav .btn{ margin-top: 10px; width: 100%; justify-content: center; }
  .nav-toggle{ display: block; }

  .about .container{ grid-template-columns: minmax(0,1fr); }
  .about-media{ order: -1; }

  .hero{ margin-top: calc(-1 * var(--header-h)); }
  .hero-facts{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-facts div:nth-child(3){ border-left: 0; }
  .hero-facts div:nth-child(1), .hero-facts div:nth-child(2){ border-bottom: 1px solid rgba(243,228,201,0.22); padding-bottom: 16px; }
  .hero-facts div:nth-child(3), .hero-facts div:nth-child(4){ padding-top: 16px; }

  .menu-grid{ grid-template-columns: minmax(0,1fr); }
  .menu-intro{ grid-template-columns: minmax(0,1fr); }
  .set-callout{ max-width: none; }

  .featured-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }

  .event-row, .event-row:nth-child(even){ grid-template-columns: minmax(0,1fr); }
  .event-row:nth-child(even) .event-media{ order: 0; }

  .form-grid{ grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 640px){
  .hero h1{ font-size: clamp(3.4rem, 15vw, 5rem); }
  .hero h2{ font-size: clamp(1.05rem, 4.6vw, 1.3rem); }
  .hero-eyebrow{ font-size: 0.78rem; }
  .hero-cta .btn{ flex: 1 1 auto; justify-content: center; }
  .brand .tag{ display: none; }

  /* A 2x2 grid of stats left long labels ("Cuisines — Nepali, Newari,
     Indian, Continental") wrapping to 3 lines and made the bar feel
     cramped/misaligned on phones. A single-column row list reads cleanly
     at any width instead. */
  .hero-facts{ grid-template-columns: minmax(0,1fr); }
  .hero-facts div{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
    min-width: 0;
    padding: 13px var(--gutter) !important;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(243,228,201,0.18);
  }
  .hero-facts div:last-child{ border-bottom: 0; }
  .hero-facts strong{
    margin-bottom: 0;
    flex: none;
    min-width: 0;
    font-size: 1rem;
  }
  .hero-facts span{ font-size: 0.78rem; min-width: 0; flex: 1 1 160px; }
}

@media (max-width: 480px){
  body{ font-size: 15.5px; }
  .filmstrip{ grid-auto-columns: 88vw; }
  .featured-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
  .container{ padding: 0 18px; }
  .form-foot{ flex-direction: column; align-items: stretch; }
  .form-foot .btn{ width: 100%; justify-content: center; }
}

@media (max-width: 360px){
  .hero h1{ font-size: 3rem; }
  .featured-grid{ grid-template-columns: minmax(0,1fr); }
}
