/* ============================================
   Indian Express — Modern Minimal
   Wheaton-Glenmont, MD
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-warm: #faf7f2;
  --bg-card: #fafaf7;
  --ink: #1a1a1a;
  --ink-soft: #5b5b5b;
  --ink-faint: #999999;
  --accent: #c0392b;
  --accent-dark: #8b1f12;
  --gold: #c79a3c;
  --line: #ececec;
  --line-faint: #f3f1ec;
  --max: 1200px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.15s ease, color 0.15s ease; }
a:hover { opacity: 0.7; }
img, video { max-width: 100%; display: block; }

/* Headings */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--ink-soft); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header.site .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
header.site .brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}
header.site .brand-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
header.site .brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
header.site nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header.site nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}
header.site nav a:hover { color: var(--accent); opacity: 1; }
header.site nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero video,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 100px 24px;
  color: #fff;
}
.hero-content .eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin: 0 auto 32px;
  max-width: 540px;
}
.hero-content .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 13px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  border-radius: 100px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ---------- Layout ---------- */
main { max-width: var(--max); margin: 0 auto; padding: 80px 32px; }
section { margin-bottom: 84px; }
section:last-child { margin-bottom: 0; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Feature grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; gap: 28px; } }

.feature h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ---------- Info row ---------- */
.info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 40px 36px;
}
@media (max-width: 800px) { .info-row { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .info-row { grid-template-columns: 1fr; } }
.info-row h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.info-row p { color: var(--ink); font-size: 0.95rem; line-height: 1.55; }
.info-row a { color: var(--ink); }
.info-row a:hover { color: var(--accent); opacity: 1; }

/* ---------- Menu ---------- */
.menu-section { margin-bottom: 56px; }
.menu-section h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.menu-section .section-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 8px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-faint);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name {
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.menu-item .desc {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.55;
  margin-top: 4px;
  max-width: 480px;
}
.menu-item .price {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  font-feature-settings: 'tnum';
  font-size: 1rem;
}
.veg-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 6px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
.gallery img,
.gallery video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: var(--bg-warm);
}
.gallery .gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .gallery-feature video,
.gallery .gallery-feature img {
  height: 574px;
}
@media (max-width: 800px) {
  .gallery .gallery-feature { grid-column: span 1; grid-row: span 1; }
  .gallery .gallery-feature video,
  .gallery .gallery-feature img { height: 280px; }
}

/* ---------- Forms ---------- */
form.contact {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
form.contact input,
form.contact textarea,
form.contact select {
  font: inherit;
  font-family: var(--sans);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
form.contact input:focus,
form.contact textarea:focus,
form.contact select:focus {
  outline: 0;
  border-color: var(--ink);
}
form.contact textarea { min-height: 130px; resize: vertical; }
form.contact button {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 15px;
  border-radius: 100px;
  font: inherit;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}
form.contact button:hover { background: var(--accent); }

/* ---------- Menu jump nav ---------- */
.menu-nav {
  position: sticky;
  top: 84px;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 14px;
  margin-bottom: 56px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  margin: 0 2px;
  transition: background 0.15s ease, color 0.15s ease;
}
.menu-nav a:hover {
  color: var(--ink);
  background: var(--bg-warm);
  opacity: 1;
  text-decoration: none;
}
@media (max-width: 700px) {
  .menu-nav { top: 76px; padding: 8px 10px; margin-bottom: 36px; }
  .menu-nav a { padding: 6px 12px; font-size: 0.82rem; }
}

/* ---------- Order links / cards ---------- */
.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .order-grid { grid-template-columns: 1fr; } }
.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.order-card:hover { border-color: var(--ink); }
.order-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.order-card p { font-size: 0.92rem; margin-bottom: 16px; }

/* ---------- About / story sections ---------- */
.story {
  max-width: 740px;
  margin: 0 auto;
}
.story p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--ink-soft);
}
.story p strong { color: var(--ink); font-weight: 600; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split video, .split img { width: 100%; border-radius: 8px; aspect-ratio: 16/10; object-fit: cover; }

/* ---------- Quote / review cards ---------- */
.quote-card {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 28px;
}
.quote-card .quote-mark {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 12px;
}
.quote-card p {
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 50px 32px 40px;
  margin-top: 80px;
  background: var(--bg);
}
footer.site .footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  footer.site .footer-wrap { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
footer.site .footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
footer.site .footer-tagline {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 16px;
}
footer.site h5 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
footer.site p, footer.site a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
footer.site a { color: var(--ink-soft); }
footer.site a:hover { color: var(--accent); opacity: 1; }
footer.site .footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- Mobile header tweaks ---------- */
@media (max-width: 700px) {
  header.site .wrap { padding: 12px 20px; gap: 16px; }
  header.site .brand img { width: 44px; height: 44px; }
  header.site .brand-text { font-size: 1rem; }
  header.site .brand-text small { display: none; }
  header.site nav { gap: 16px; }
  header.site nav a { font-size: 0.85rem; }
  main { padding: 56px 20px; }
  .info-row { padding: 28px 22px; }
  section { margin-bottom: 64px; }
}

@media (max-width: 480px) {
  header.site .brand-text { display: none; }
  .hero-content { padding: 80px 20px; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.88rem; }
.italic { font-style: italic; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
