:root {
  --ink: #171411;
  --ink-soft: #28221e;
  --red: #a51418;
  --red-dark: #781014;
  --ember: #e05a27;
  --cream: #fbf5ea;
  --cream-deep: #f0e3d0;
  --white: #ffffff;
  --muted: #70665d;
  --line: rgba(23, 20, 17, 0.12);
  --shadow: 0 24px 64px rgba(49, 29, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(224, 90, 39, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 20, 24, 0.28), transparent 28%),
    var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #ff8c63;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #d1361f);
  box-shadow: 0 14px 34px rgba(165, 20, 24, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(23, 20, 17, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  padding: 29px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.98) 0%, rgba(12, 10, 9, 0.9) 34%, rgba(12, 10, 9, 0.35) 70%, rgba(12, 10, 9, 0.22) 100%),
    url("../img/taste-of-chaap/hero-tandoori-chaap.webp") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  background: rgba(165, 20, 24, 0.22);
  filter: blur(30px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 110px 0 125px;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #ff8063;
}

.hero p {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-note span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #ff8063;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 98px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(23, 20, 17, 0.98), rgba(80, 14, 16, 0.86)),
    url("../img/taste-of-chaap/hero-tandoori-chaap.webp") center 58% / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
}

/* Content blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.image-stack {
  position: relative;
  min-height: 590px;
}

.image-stack .image-main {
  width: 82%;
  height: 525px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack .image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 245px;
  border: 10px solid var(--cream);
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 700;
}

.feature-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  content: "✓";
  background: var(--red);
  font-size: 0.74rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(49, 29, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.dish-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.dish-card-body {
  padding: 24px;
}

.dish-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dish-card h3 {
  margin-bottom: 8px;
}

.dish-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--red);
  background: #fbe6df;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 34px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  color: #ff8c63;
  font-size: 2rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.info-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.info-card h2::before {
  width: 9px;
  height: 28px;
  border-radius: 99px;
  content: "";
  background: var(--red);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink-soft);
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 20px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 8, 7, 0.88));
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

.contact-card,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 38px;
}

.contact-card h2 {
  font-size: 2.4rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list address,
.contact-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  font-style: normal;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #f9e8df;
  font-size: 1.02rem;
  font-weight: 900;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
}

.hours {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: var(--muted);
}

.hours-row strong {
  color: var(--ink);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
}

.contact-band {
  color: var(--white);
  background: linear-gradient(120deg, var(--red-dark), var(--red) 62%, #d44825);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-band .btn {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #100e0c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1.15fr;
  gap: 60px;
  padding: 76px 0 58px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p,
.footer-contact address,
.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.footer-title {
  margin-bottom: 20px;
  color: #ff8c63;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.instagram-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-top: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white) !important;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(23, 20, 17, 0.99);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.3s ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 82px);
    padding-top: 12px;
    padding-bottom: 24px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    max-width: 720px;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 0.65fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .map-card iframe {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.66)),
      url("../img/taste-of-chaap/hero-tandoori-chaap.webp") 62% center / cover no-repeat;
  }

  .hero-content {
    padding: 96px 0 88px;
  }

  .hero-note {
    margin-top: 40px;
  }

  .section-heading,
  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .dish-card img {
    height: 245px;
  }

  .image-stack {
    min-height: 470px;
  }

  .image-stack .image-main {
    height: 410px;
  }

  .image-stack .image-float {
    height: 190px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-band .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 50px;
    height: 50px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
