/* =========================================================
   Sofra — Restaurant Demo
   ========================================================= */

:root {
  --bg: #101a17;
  --bg-2: #0d1613;
  --text: #ffffff;
  --muted: #d7d7d7;
  --accent: #e8823a;       /* orange for "Every Bite" */
  --gold: #c9974a;         /* button gold */
  --gold-hover: #b48437;
  --border: rgba(255, 255, 255, 0.08);

  /* Light section palette */
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --hairline: #e6e6e6;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;

  --header-h: 78px;
  --container: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Decorative leaves (desktop only) ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.deco-topleft {
  top: 0;
  left: 0;
  width: 320px;
  transform: translate(-20px, -10px);
  opacity: 0.95;
}

.deco-bottomright {
  bottom: 0;
  right: 0;
  width: 380px;
  transform: translate(30px, 40px);
  opacity: 0.95;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

/* Push page content below the fixed header */
body { padding-top: var(--header-h); }

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-gold:active { transform: translateY(1px); }

.btn-menu {
  padding: 18px 34px;
  font-size: 13px;
}

.btn-book {
  padding: 18px 32px;
  font-size: 13px;
  margin-top: 32px;
}

/* ---------- Hamburger (mobile) ---------- */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Turn hamburger bars into an X when menu is open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-h));
  padding: 40px 0 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 40px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 20px;
}

.hero-copy {
  padding-left: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}
.hero-title .accent {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image img {
  width: 130%;
  max-width: 1100px;
  height: auto;
  margin-right: -8%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

/* =========================================================
   About section (light)
   ========================================================= */

.about {
  background: #ffffff;
  color: var(--ink);
  padding: 100px 0 80px;
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left { padding-left: 20px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--accent);
  font-style: italic;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
  margin: 0 0 26px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 34px;
}

.about-btn { margin-top: 0; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 60px;
  margin-top: 56px;
  max-width: 540px;
}

.stat-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.about-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.chef-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

/* =========================================================
   Why Choose Us section
   ========================================================= */

.why {
  background: #fdecda;
  color: var(--ink);
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.why-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-left { padding-left: 20px; }

.why-left .eyebrow { font-style: normal; }

.why-left .section-title { margin-bottom: 60px; }

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.why-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.why-card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}

.why-card-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-right {
  position: relative;
}

.why-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-dish {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: cover;
}

.established {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  background: #ffffff;
  padding: 22px 60px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.established-label {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.established-year {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

/* =========================================================
   Categories section
   ========================================================= */

.categories {
  background: #ffffff;
  color: var(--ink);
  padding: 40px 0 100px;
  border-top: 1px solid var(--hairline);
}

.cat-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  margin-bottom: 24px;
}
.cat-img-wrap img {
  max-height: 100%;
  width: auto;
  max-width: 130%;
  object-fit: contain;
}
.cat-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.cat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 340px;
}

/* =========================================================
   Menu section (dark)
   ========================================================= */

.menu {
  background: var(--bg);
  color: var(--text);
  padding: 100px 0 90px;
}

.menu-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.menu-eyebrow { text-align: center; font-style: normal; }
.menu-title {
  color: var(--text);
  text-align: center;
  margin: 0 0 40px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.menu-tab:hover { border-color: var(--accent); color: var(--accent); }
.menu-tab.is-active {
  color: var(--accent);
  border-color: var(--accent);
}

.menu-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.menu-image {
  width: 100%;
  align-self: stretch;
  position: relative;
  min-height: 500px;
}
.menu-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-item:first-child { padding-top: 4px; }
.menu-item:last-child { border-bottom: 0; }

.menu-item-body { flex: 1; }

.menu-item-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #ffffff;
  transition: color 0.2s ease;
}

/* Hover only on pointer devices (desktop) — no color change on mobile */
@media (hover: hover) and (pointer: fine) {
  .menu-item { cursor: pointer; }
  .menu-item:hover .menu-item-name { color: var(--accent); }
}

.menu-image img { transition: opacity 0.25s ease; }
.menu-image.is-swapping img { opacity: 0.85; }
.menu-item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0;
  max-width: 480px;
}
.menu-item-price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 2px;
}

/* =========================================================
   Orange Stat cards bar
   ========================================================= */

.stat-bar {
  background: var(--bg);
  padding: 20px 0 90px;
}
.stat-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: #f1834a;
  color: #ffffff;
  padding: 34px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  outline: 8px solid #f1834a;
  outline-offset: -18px;
  position: relative;
}
.stat-card-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
}

/* =========================================================
   Event Booking
   ========================================================= */

.event {
  background: var(--bg);
  color: var(--text);
  padding: 40px 0 100px;
}
.event-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.event-left { padding-left: 20px; }

.event-eyebrow { font-style: normal; }
.event-title {
  color: var(--text);
  margin: 0 0 34px;
}

.hours-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 34px;
  max-width: 540px;
  position: relative;
  overflow: hidden;
}
.hours-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 22px;
  color: #ffffff;
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 10px 0;
}
.hours-day {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}
.hours-time {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.reservation {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin: 30px 0 26px;
}
.reservation-link {
  color: var(--accent);
  text-decoration: underline;
  margin-left: 8px;
}

.event-btn { margin-top: 0; }

.event-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.event-mirchi {
  position: absolute;
  top: 20px;
  left: 20%;
  width: 120px;
  height: auto;
  z-index: 2;
}
.event-dish {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* =========================================================
   Testimonial (light bg, dark cards, marquee)
   ========================================================= */

.testi {
  background: #ffffff;
  color: var(--ink);
  padding: 100px 0 100px;
  overflow: hidden;
  position: relative;
}

.testi-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.testi-eyebrow { text-align: center; font-style: normal; }
.testi-title {
  color: var(--ink);
  text-align: center;
  margin: 0 0 60px;
}

.testi-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* Soft fade at the edges so cards feel like they're flowing in/out */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-scroll 60s linear infinite;
  will-change: transform;
}
.testi-marquee:hover .testi-track { animation-play-state: paused; }

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

.testi-card {
  background: var(--bg-2);
  color: #ffffff;
  width: 440px;
  min-height: 260px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #e6e6e6;
  margin: 0 0 24px;
}

.testi-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.testi-person { flex: 1; }
.testi-name {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.testi-role {
  color: #cccccc;
  font-size: 13px;
}

.testi-quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.6;
  color: #8b5a2b;
  transform: rotate(180deg);
  display: inline-block;
  align-self: flex-end;
  margin-bottom: -8px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}

/* =========================================================
   Scroll reveal — fade + slight rise, re-triggers each time in view
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Reservation form
   ========================================================= */

.reserve {
  background: var(--bg);
  color: var(--text);
  padding: 100px 0 100px;
  /* offset for the fixed header when scrolling to #book */
  scroll-margin-top: var(--header-h);
}

.reserve-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.reserve-eyebrow { text-align: center; font-style: normal; }
.reserve-title {
  color: var(--text);
  text-align: center;
  margin: 0 0 60px;
}

.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field-full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 12px;
}

.field input {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--accent);
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color-scheme: dark; /* makes native date/time pickers readable on dark bg */
}
.field input::placeholder { color: #7a7a7a; }
.field input:focus {
  border-color: #f1a26a;
  box-shadow: 0 0 0 2px rgba(232, 130, 58, 0.2);
}

/* Native date/time picker icons in white */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.7);
  cursor: pointer;
}

/* Remove number spinner arrows for a cleaner look on WebKit; keep on Firefox */
.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.reserve-submit {
  grid-column: 1 / -1;
  margin-top: 14px;
  background: #f1834a;
  color: #ffffff;
  border: none;
  padding: 22px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.reserve-submit:hover { background: #dc7038; }
.reserve-submit:active { transform: translateY(1px); }

.reserve-success {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(241, 131, 74, 0.15);
  border-left: 3px solid var(--accent);
  color: #ffffff;
  font-size: 15px;
  text-align: center;
}

/* =========================================================
   Gallery strip (5 images edge-to-edge)
   ========================================================= */

.gallery {
  background: var(--bg);
  padding: 0;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 100%;
}
.gallery-cell {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay slides up from the bottom on hover (desktop pointer devices only) */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-cell:hover .gallery-overlay {
    transform: translateY(0);
    pointer-events: auto;
  }
}

.ig-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.ig-btn:hover { background: #d16e28; transform: scale(1.05); }
.ig-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }

/* =========================================================
   Contact strip with mega SOFRA text
   ========================================================= */

.contact {
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-plan {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-body { flex: 1; }
.contact-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 4px;
}
.contact-value {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #d0d0d0;
  margin: 0;
}
.contact-phone {
  color: var(--accent);
  text-decoration: underline;
}

.contact-icon {
  color: var(--accent);
  border: 1px solid rgba(232, 130, 58, 0.7);
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mega {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(200px, 25vw, 340px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 40px 0 0;
  padding-bottom: 0.15em; /* room for descender-safe area so glyphs don't clip */
  background: linear-gradient(180deg, #d9c4a8 0%, #e28c48 55%, #b76a30 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--bg-2);
  color: #d0d0d0;
  padding: 22px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.footer p { margin: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .header-inner { padding: 0 24px; }
  .nav { gap: 28px; }
  .btn-menu { padding: 14px 24px; }
  .hero-inner { padding: 20px 24px 0; gap: 20px; }
  .hero-copy { padding-left: 0; }

  .about-inner { padding: 0 24px; gap: 40px; }
  .about-left { padding-left: 0; }
  .cat-inner { padding: 40px 24px 0; gap: 30px; }
  .cat-title { font-size: 28px; }

  .why-inner { padding: 0 24px; gap: 40px; }
  .why-left { padding-left: 0; }

  .menu-inner { padding: 0 24px; }
  .menu-body { grid-template-columns: 1fr; gap: 40px; }
  .stat-bar-inner { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .event-inner { padding: 0 24px; gap: 40px; }
  .event-left { padding-left: 0; }
}

@media (max-width: 780px) {
  :root { --header-h: 70px; }

  /* Hide leaves on mobile per spec */
  .deco { display: none; }

  /* Hide desktop menu button, show hamburger */
  .btn-menu { display: none; }

  /* Full-screen overlay menu */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-2);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 40px);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 90;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 18px 24px;
    width: auto;
    font-size: 16px;
    letter-spacing: 0.18em;
    border-bottom: 0;
  }

  .hamburger { display: flex; }

  /* Reveal main dish image bigger, hero stacks text-first */
  .hero { padding: 20px 0 40px; min-height: auto; overflow: hidden; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 10px 24px 0;
    gap: 24px;
  }
  .hero-copy { padding-left: 0; }
  .hero-title {
    font-size: clamp(34px, 7vw, 46px);
    margin-bottom: 18px;
  }
  .hero-sub {
    margin: 0 auto;
    max-width: 520px;
    font-size: 15px;
  }
  .btn-book {
    padding: 14px 34px;
    font-size: 12px;
    margin-top: 22px;
  }
  .d-only { display: none; }

  .brand-logo { height: 36px; }

  /* Bigger dish on mobile */
  .hero-image img {
    width: 115%;
    max-width: none;
    margin: 0 -7%;
  }

  /* About - stack, centered */
  .about { padding: 60px 0 40px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .about-left { padding-left: 0; text-align: center; }
  .eyebrow { text-align: center; }
  .about-desc {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .section-title { font-size: clamp(36px, 8vw, 52px); }

  /* Stats: single column, column-first order (110, 30, 120, 100) */
  .stats {
    grid-template-columns: 1fr;
    gap: 44px;
    margin: 44px auto 0;
    max-width: none;
    text-align: center;
  }
  .stat:nth-child(1) { order: 1; }  /* 110+ Seasonal */
  .stat:nth-child(3) { order: 2; }  /* 30+ Years */
  .stat:nth-child(2) { order: 3; }  /* 120+ Healthy */
  .stat:nth-child(4) { order: 4; }  /* 100+ Reviews */
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 15px; }
  /* Line breaks inside stat labels are desktop-only; let mobile wrap naturally */
  .stat-br { display: none; }

  /* Chef image hidden on mobile per reference */
  .about-right { display: none; }

  /* Button — centered inline anchor via text-align on parent */
  .about-btn {
    padding: 16px 44px;
    font-size: 13px;
    margin: 0 auto;
  }

  /* Categories - stack */
  .categories { padding: 20px 0 60px; }
  .cat-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    gap: 50px;
  }
  .cat-img-wrap { height: 220px; }
  .cat-title { font-size: 30px; }

  /* Why Choose Us — stack, centered */
  .why { padding: 60px 0 60px; }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .why-left .eyebrow { text-align: center; }
  .why-left .section-title { margin-bottom: 32px; }
  .why-cards { max-width: none; margin: 0 auto; gap: 20px; }
  .why-card {
    padding: 18px 20px;
    text-align: left;
    min-height: 90px;
  }
  .why-card-title { font-size: 20px; }
  .why-card-img { width: 72px; height: 72px; }
  .established {
    padding: 22px 30px;
    transform: translate(-50%, -30%);
    min-width: 300px;
    max-width: 85%;
    width: auto;
  }
  .established-label {
    font-size: 15px;
    white-space: nowrap;
  }
  .established-year { font-size: 36px; }
  .why-dish { max-width: 100%; }

  /* ---------- Menu - mobile ---------- */
  .menu { padding: 60px 0 60px; }
  .menu-title { font-size: clamp(32px, 8vw, 44px); margin-bottom: 30px; }
  .menu-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .menu-tab { padding: 16px 18px; font-size: 14px; }

  /* Hide the featured image, list becomes single column full-width */
  .menu-image { display: none; }
  .menu-body { grid-template-columns: 1fr; gap: 0; }

  /* Rearrange item: price on top, name below, then desc */
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0;
  }
  .menu-item-body { order: 2; width: 100%; }
  .menu-item-price {
    order: 1;
    font-size: 22px;
  }
  .menu-item-name { font-size: 22px; margin-bottom: 6px; }
  .menu-item-desc { font-size: 14px; }

  /* ---------- Stat cards - mobile: single column ---------- */
  .stat-bar { padding: 20px 0 50px; }
  .stat-bar-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }
  .stat-card {
    padding: 40px 20px;
    outline-offset: -14px;
  }
  .stat-card-num { font-size: 46px; }
  .stat-card-label { font-size: 22px; }

  /* ---------- Event Booking - mobile ---------- */
  .event { padding: 20px 0 60px; }
  .event-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .event-left { padding-left: 0; }
  .event-eyebrow { text-align: center; }
  .event-title { font-size: clamp(32px, 8vw, 42px); }
  .hours-card {
    max-width: 100%;
    padding: 30px 24px;
    text-align: center;
  }
  .hours-title { font-size: 28px; text-align: center; }
  .hours-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    padding: 14px 0;
  }
  .hours-day { font-size: 15px; }
  .hours-time { font-size: 15px; }

  .reservation {
    text-align: center;
    margin: 24px 0 20px;
  }
  .reservation-link {
    display: inline-block;
    margin-left: 8px;
    word-break: break-all;
  }
  .event-btn { margin: 0 auto; padding: 16px 44px; font-size: 13px; }

  /* Hide mirchi on mobile per reference */
  .event-mirchi { display: none; }
  .event-right { min-height: auto; padding-top: 20px; }
  .event-dish { max-width: 90%; }

  /* Gallery - mobile: only first 3 images */
  .gallery-row { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .gallery-cell.mobile-hide { display: none; }
  .gallery-cell { aspect-ratio: 1 / 1.2; }

  /* Contact strip - mobile: stack, centered */
  .contact { padding: 40px 0 0; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 24px;
    text-align: center;
  }
  .contact-plan { font-size: 22px; }
  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .contact-label { font-size: 26px; }
  .contact-icon { display: none; }
  .brand-mega {
    font-size: clamp(80px, 22vw, 140px);
    margin: 20px 0 0;
  }

  .footer { padding: 18px 20px; font-size: 13px; }

  /* Reservation - mobile */
  .reserve { padding: 60px 0 60px; }
  .reserve-inner { padding: 0 24px; }
  .reserve-title { font-size: clamp(34px, 8vw, 44px); margin-bottom: 30px; }
  .reserve-form { grid-template-columns: 1fr; gap: 20px; }
  .field input { padding: 14px 16px; font-size: 14px; }
  .reserve-submit { padding: 18px; font-size: 14px; }

  /* Testimonial - mobile */
  .testi { padding: 60px 0 60px; }
  .testi-title { margin-bottom: 40px; font-size: clamp(34px, 8vw, 46px); }
  .testi-inner { padding: 0 24px; }
  .testi-track {
    gap: 16px;
    /* Slightly faster on mobile since cards are smaller */
    animation-duration: 45s;
  }
  .testi-card {
    width: 300px;
    min-height: 240px;
    padding: 24px 24px;
  }
  .testi-quote { font-size: 14px; margin-bottom: 20px; }
  .testi-name { font-size: 14px; }
  .testi-role { font-size: 12px; }
  .testi-quote-mark { font-size: 56px; }
  .testi-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
}

@media (max-width: 420px) {
  .hero-title { font-size: 30px; }
  .btn-book { padding: 12px 30px; font-size: 12px; width: auto; max-width: none; }
  .hero-image img { width: 120%; margin: 0 -10%; }

  .section-title { font-size: 34px; }
  .stat-num { font-size: 38px; }
  .stats { gap: 28px 16px; }
  .cat-title { font-size: 26px; }
}
