/* ===================== DESIGN TOKENS ===================== */
:root {
  --maroon: #7a1f2b;
  --maroon-dark: #5c141d;
  --gold: #c8912f;
  --gold-light: #e6b866;
  --cream: #fdf8f1;
  --cream-2: #f6ecdd;
  --ink: #241a17;
  --ink-soft: #5a4c46;
  --white: #ffffff;
  --line: #e7dcc9;
  --green: #2e7d5b;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(36, 26, 23, 0.12);
  --shadow-sm: 0 4px 14px rgba(36, 26, 23, 0.08);
  --maxw: 1120px;
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 12px; }
h3 { font-size: 1.25rem; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-lead { color: var(--ink-soft); max-width: 620px; margin-bottom: 34px; font-size: 1.05rem; }

.section { padding: 76px 0; }
.section-alt { background: var(--cream-2); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--maroon); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maroon-dark); }

.btn-call { background: var(--gold); color: var(--maroon-dark); box-shadow: var(--shadow-sm); }
.btn-call:hover { background: var(--gold-light); }

.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-ghost-dark { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost-dark:hover { background: var(--maroon); color: var(--white); }

.inline-link { color: var(--maroon); font-weight: 600; border-bottom: 1.5px solid var(--gold); }
.inline-link:hover { color: var(--gold); }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--maroon); color: var(--gold-light);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--maroon); }
.nav-links { display: none; gap: 26px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--maroon); }
.nav-call { display: none; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(60,15,22,0.35), rgba(60,15,22,0.55)),
    /* TODO: swap assets/hero.jpg with a real photo of Delhi Heights' food or dining room */
    url("assets/hero.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}
.hero-content { position: relative; z-index: 2; padding: 90px 20px; }
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.75rem;
  font-weight: 700; color: var(--gold-light); margin-bottom: 14px;
}
.hero h1 {
  color: var(--white); font-size: clamp(3rem, 12vw, 6rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35); line-height: 0.95;
}
.hero-sub {
  max-width: 620px; margin: 18px auto 0; font-size: 1.15rem;
  color: rgba(255,255,255,0.94); text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 26px auto 0; padding: 9px 18px; border-radius: 999px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.rating-badge .stars { color: var(--gold-light); letter-spacing: 2px; }
.rating-text { font-size: 0.92rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid; gap: 18px; margin-top: 34px;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-ico { font-size: 1.9rem; margin-bottom: 10px; }
.service-card h3 { color: var(--maroon); margin-bottom: 6px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ===================== MENU ===================== */
.menu-grid {
  display: grid; gap: 20px; margin-top: 30px;
  grid-template-columns: 1fr;
}
.menu-item {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-item img { width: 100%; height: 190px; object-fit: cover; }
.menu-item-body { padding: 18px 20px 22px; }
.menu-item-body h3 { color: var(--maroon); margin-bottom: 5px; }
.menu-item-body p { color: var(--ink-soft); font-size: 0.94rem; }
.menu-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ===================== REVIEWS ===================== */
.reviews-grid { display: grid; gap: 20px; margin-top: 30px; grid-template-columns: 1fr; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 24px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); position: relative;
}
.review-card .stars.sm { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 10px; }
.review-card p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.review-card cite { display: block; margin-top: 14px; font-style: normal; font-weight: 600; color: var(--maroon); font-size: 0.9rem; }
.reviews-cta { margin-top: 28px; }

/* ===================== ABOUT ===================== */
.about-grid { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: center; }
.about-media {
  min-height: 280px; border-radius: var(--radius); box-shadow: var(--shadow);
  /* TODO: swap assets/interior.jpg with a real interior/food photo of Delhi Heights */
  background:
    linear-gradient(180deg, rgba(122,31,43,0.05), rgba(122,31,43,0.2)),
    url("assets/interior.jpg") center/cover no-repeat;
}
.about-text h2 { margin-top: 4px; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; }
.about-facts { list-style: none; margin: 4px 0 24px; display: grid; gap: 8px; }
.about-facts li { padding-left: 26px; position: relative; color: var(--ink); }
.about-facts li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.9rem; top: 2px;
}
.about-facts strong { color: var(--maroon); }

/* ===================== HOURS + MAP ===================== */
.hours-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.hours-table th { font-weight: 600; color: var(--ink); width: 38%; }
.hours-table td { color: var(--ink-soft); }
.hours-table tr.closed th, .hours-table tr.closed td { color: var(--maroon); font-weight: 600; }
.address-block { margin-top: 24px; font-style: normal; color: var(--ink-soft); }
.address-block p { margin-bottom: 12px; }
.map-col {
  min-height: 340px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.map-col iframe { display: block; width: 100%; height: 100%; min-height: 340px; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.contact-intro p { color: var(--ink-soft); margin: 12px 0 22px; }
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.98rem; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,145,47,0.18);
}
.form-status { margin-top: 12px; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--maroon); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--maroon-dark); color: rgba(255,255,255,0.82); padding: 52px 0 26px; }
.footer-inner { display: grid; gap: 28px; grid-template-columns: 1fr; }
.footer-inner .brand-mark { background: var(--gold); color: var(--maroon-dark); margin-bottom: 12px; }
.footer-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.footer-tag { font-size: 0.9rem; }
.footer-col p { margin-bottom: 8px; font-size: 0.95rem; }
.footer-col a:hover, .footer-inner a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}

/* ===================== FIXED MOBILE CALL BAR ===================== */
.mobile-call-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--maroon-dark);
  font-weight: 700; font-size: 1.02rem;
  padding: 15px 18px; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(92, 20, 29, 0.4);
}
.mobile-call-bar:active { transform: scale(0.98); }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 620px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-call { display: inline-flex; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1.05fr 1fr; }
  .hours-grid { grid-template-columns: 1fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }

  /* Fixed call bar is for mobile only */
  .mobile-call-bar { display: none; }
  body { --has-desktop-nav: 1; }
}

/* Give mobile content room above the fixed call bar */
@media (max-width: 899px) {
  body { padding-bottom: 76px; }
}
