/* ============================================================
   Mahmud's Tandoor — style.css
   Built by Orbit by Lefty
   Direction D: bold type as the hero. Poster energy, colour
   blocking, giant condensed headlines. Works before photos land.
   ============================================================ */

:root {
  --bg: #fff6e8;
  --bg-alt: #ffe8c2;
  --ink: #1c1108;
  --ink-soft: #5a4732;
  --brand: #d63c0c;
  --brand-dark: #a82c06;
  --amber: #ffb020;
  --amber-soft: #ffd884;
  --card: #fffdf7;
  --line: #1c1108;
  --radius: 6px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1120px, 92%); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(3rem, 9vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: 1.35rem; letter-spacing: 1px; }

a { color: var(--brand); }

.accent {
  color: var(--brand);
  -webkit-text-stroke: 0;
}

.eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  transform: rotate(-1deg);
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.text-center { text-align: center; }
.section__intro { max-width: 620px; margin: 1rem auto 2.5rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 3px solid var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn--primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--ghost {
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--amber-soft); }
.btn--ghost:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 3px solid var(--ink);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav__logo .flame { color: var(--brand); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav__links a:hover, .nav__links a.is-active {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta .btn { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px;
  height: 3.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: var(--amber);
  border-left: 3px solid var(--ink);
  z-index: 60;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.4rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5rem;
}
.nav__mobile .btn { font-size: 1.05rem; text-align: center; }
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 17, 8, 0.55);
  z-index: 55;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.nav__backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 176, 32, 0.35) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(214, 60, 12, 0.18) 0%, transparent 32%),
    var(--bg);
}
.hero .container { position: relative; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--amber);
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.75rem;
  transform: rotate(-1deg);
}
.badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 .accent {
  color: var(--brand);
  display: inline-block;
  transform: rotate(-1.5deg);
}
.hero__sub {
  max-width: 580px;
  margin: 1.75rem auto 2.25rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-weight: 500;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
}

/* ---------- Ticker strip ---------- */
.strip {
  background: var(--brand);
  color: #fff;
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.strip__inner {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.strip__inner span { white-space: nowrap; }
.strip__inner span::after { content: " ★"; color: var(--amber); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brand);
  margin-top: 0.75rem;
}

/* ---------- Menu (poster style) ---------- */
.menu-cat { margin-bottom: 3.5rem; }
.menu-cat__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.menu-cat__title h2 { color: var(--brand); }
.menu-cat__title::after {
  content: "";
  flex: 1;
  height: 4px;
  background: var(--ink);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.menu-item:last-child { margin-bottom: 0; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-item__desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.menu-item__price {
  font-family: var(--font-display);
  color: var(--brand);
  white-space: nowrap;
  font-size: 2rem;
  line-height: 1;
}
.menu-item .tag {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.12rem 0.55rem;
  margin-left: 0.6rem;
  vertical-align: middle;
  transform: rotate(-2deg);
}

/* ---------- Photo placeholders ---------- */
.ph {
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(214, 60, 12, 0.08) 0 16px, rgba(255, 176, 32, 0.16) 16px 32px),
    var(--bg-alt);
  border: 3px dashed var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 1rem;
  min-height: 220px;
}
.ph--tall { min-height: 320px; }

/* ---------- Story / timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 2.2rem; max-width: 640px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--ink);
}
.timeline li { position: relative; padding-bottom: 2.25rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--amber);
  border: 3px solid var(--ink);
}
.timeline h3 { margin-bottom: 0.3rem; color: var(--brand); }
.timeline p { color: var(--ink-soft); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ---------- Info rows (visit page) ---------- */
.info-list { list-style: none; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); overflow: hidden; }
.info-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 3px solid var(--ink);
}
.info-list li:last-child { border-bottom: none; }
.info-list li:nth-child(odd) { background: var(--bg); }
.info-list .k {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 130px;
  font-size: 1rem;
}
.info-list .v { color: var(--ink-soft); font-weight: 500; }

.map-embed {
  border: 3px solid var(--ink);
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Press ---------- */
.press-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.press-row .chip {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.55rem 1.3rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}
.press-row .chip:nth-child(odd) { transform: rotate(-1.5deg); }
.press-row .chip:nth-child(even) { transform: rotate(1.5deg); }

/* ---------- Quote ---------- */
.pull-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pull-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- Form ---------- */
.form {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}
.form label {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 1.2rem 0 0.4rem;
}
.form label:first-of-type { margin-top: 0; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 3px 3px 0 var(--amber);
}
.form button { width: 100%; margin-top: 1.75rem; }
.form__note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.9rem; text-align: center; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--brand); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 0.7rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(2.4rem, 6vw, 4.5rem); }
.cta-band p { opacity: 0.95; max-width: 520px; margin: 0 auto 1.75rem; font-weight: 600; }
.cta-band .btn--primary {
  background: var(--amber);
  color: var(--ink);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #efe0cb;
  padding: 3.5rem 0 2rem;
  font-size: 0.95rem;
}
.footer a { color: var(--amber); text-decoration: none; }
.footer a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid rgba(239, 224, 203, 0.2);
}
.footer__brand .nav__logo { color: #fff; font-size: 1.6rem; }
.footer__brand p { margin-top: 0.75rem; opacity: 0.85; max-width: 320px; }
.footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.9rem;
  color: var(--amber);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.55rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  font-size: 0.85rem;
  opacity: 0.9;
}
.footer__credit { line-height: 1.9; }
.footer__credit strong { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.page-hero h1 .accent { display: inline-block; transform: rotate(-1.5deg); }
.page-hero p { max-width: 560px; margin: 1.25rem auto 0; color: var(--ink-soft); font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .nav__backdrop { display: block; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .menu-item { flex-wrap: wrap; }
  .menu-item__price { font-size: 1.6rem; }
  body { font-size: 16px; }
}
