/* Reddy's Biryani Zone — "Kinetic Athletic Flame"
   Plain HTML/CSS version. No frameworks. */

:root {
  --ink: #0b0806;
  --cream: #f4eee3;
  --brand: #ff4d1c;
  --ember: #ffc24b;
  --muted: rgba(244, 238, 227, 0.55);
  --border: rgba(244, 238, 227, 0.12);
  --card: rgba(244, 238, 227, 0.04);
  --font-display: "Anton", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

.container { padding-left: 24px; padding-right: 24px; }
@media (min-width: 768px) {
  .container { padding-left: 48px; padding-right: 48px; }
}

/* ---------- Utilities ---------- */

.skew-flip { transform: skewX(-12deg); display: inline-block; }
.skew-flip > * { transform: skewX(12deg); display: inline-block; }

.text-outline-cream {
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.slash-divider {
  height: 24px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 10px,
    var(--ember) 10px 20px
  );
}

.btn {
  background: var(--brand);
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 10px 20px;
  display: inline-block;
}
.btn:hover { background: var(--ember); color: var(--ink); }

.btn-hero {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: normal;
  padding: 16px 32px;
}
.btn-hero:hover { background: var(--brand); color: var(--cream); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 12px 28px;
}
.btn-dark:hover { background: var(--brand); }

.btn-outline-dark {
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 10px 20px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.6);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo .dot { color: var(--brand); }
.logo .sub {
  vertical-align: super;
  font-size: 0.875rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.btn-desktop-only { display: none; }
@media (min-width: 768px) { .btn-desktop-only { display: inline-block; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-links {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 238, 227, 0.7);
}
.nav-links a:hover { color: var(--brand); }
.nav-btn-mobile { margin-top: 20px; }

@media (max-width: 767px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-links.is-open { max-height: 320px; opacity: 1; }
}
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 32px; }
  .nav-btn-mobile { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 72px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-top: 88px; padding-bottom: 96px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--ink) 20%, rgba(11, 8, 6, 0.72) 46%, rgba(11, 8, 6, 0.35) 70%),
    linear-gradient(to top, var(--ink) 0%, transparent 30%);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, var(--ink), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 64rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-rise 0.6s ease 0.05s forwards;
}

.badge-ember {
  background: var(--ember);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
}

.hero-meta { font-size: 0.875rem; color: var(--muted); }

.hero h1 {
  font-family: var(--font-display);
  font-size: 19vw;
  line-height: 0.82;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) { .hero h1 { font-size: 13rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 15rem; } }

.hero h1 .line {
  display: block;
  opacity: 0;
  animation: hero-rise 0.7s ease forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.28s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.41s; }
.hero h1 .line.brand { color: var(--brand); margin-left: -8px; }

.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: hero-rise 0.6s ease 0.56s forwards;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.rating { display: flex; align-items: center; gap: 8px; }
.rating .score { font-family: var(--font-display); font-size: 1.5rem; color: var(--ember); }
.rating .count { font-size: 0.875rem; color: var(--muted); }

/* ---------- Sections ---------- */

section { scroll-margin-top: 80px; }

.section-pad { padding-top: 56px; padding-bottom: 56px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 768px) { .section-head h2 { font-size: 3.75rem; } }

.section-tag {
  display: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
@media (min-width: 768px) { .section-tag { display: block; } }

.grid-3 { display: grid; gap: 20px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Menu cards ---------- */

.menu-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  border-color: rgba(255, 77, 28, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -20px rgba(255, 77, 28, 0.45);
}

.menu-card .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.menu-card .tag.popular { color: var(--brand); }

.menu-card h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.05;
}

.menu-card p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

.menu-card .price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ember);
}

.menu-note {
  margin-top: 32px;
  border: 1px dashed var(--border);
  padding: 18px 24px;
  font-size: 0.9375rem;
  color: var(--muted);
}
.menu-note .ember { color: var(--ember); margin-right: 8px; }

/* ---------- Reviews ---------- */

.reviews { border-top: 1px solid var(--border); }

.stars { color: var(--ember); letter-spacing: 2px; }
.stars .dim { color: rgba(244, 238, 227, 0.25); }

.rating-block { display: flex; align-items: center; gap: 12px; }
.rating-block .big { font-family: var(--font-display); font-size: 2.25rem; color: var(--ember); }
.rating-block .small { font-size: 0.875rem; color: var(--muted); }

.review-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(255, 194, 75, 0.5); transform: translateY(-4px); }
.review-card .stars-row { font-size: 0.875rem; }
.review-card blockquote {
  margin-top: 12px;
  line-height: 1.6;
  color: rgba(244, 238, 227, 0.85);
}
.review-card figcaption {
  margin-top: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.more-reviews {
  margin-top: 32px;
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.more-reviews:hover { color: var(--ember); }

/* ---------- Visit / Footer ---------- */

.visit { background: var(--cream); color: var(--ink); }
.visit .two-col { display: grid; gap: 40px; }
@media (min-width: 768px) { .visit .two-col { grid-template-columns: 1fr 1fr; } }

.visit h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.85;
}
@media (min-width: 768px) { .visit h2 { font-size: 3.75rem; } }
.visit h2 .brand { color: var(--brand); }

.visit .addr-strong { margin-top: 24px; font-size: 1.125rem; font-weight: 600; }
.visit .addr-sub { color: rgba(11, 8, 6, 0.6); }
.visit .hours { margin-top: 16px; }
.visit .hours strong { color: var(--brand); }

.visit .phone-btn { margin-top: 24px; }
.visit .dir-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.info-card { background: var(--ink); color: var(--cream); padding: 32px; }
.info-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ember);
}
.info-card .pull {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
}
.info-card ul {
  margin-top: 24px;
  border-top: 1px solid rgba(244, 238, 227, 0.15);
  padding-top: 20px;
  list-style: none;
  font-size: 0.875rem;
  color: rgba(244, 238, 227, 0.6);
}
.info-card li { margin-top: 8px; }
.info-card li:first-child { margin-top: 0; }
.info-card .ember { color: var(--ember); }

.footer-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(11, 8, 6, 0.15);
  padding-top: 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(11, 8, 6, 0.5);
}
