:root {
  --ink: #161512;
  --muted: #746e62;
  --paper: #f8f3e9;
  --cream: #fffaf1;
  --line: rgba(22, 21, 18, 0.16);
  --green: #1f4a35;
  --red: #8f2f2a;
  --gold: #c79b4b;
  --shadow: 0 24px 80px rgba(22, 21, 18, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 52px);
  color: #fffaf1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 233, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
}

.brand span {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.74;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.header-action {
  transition: opacity 160ms ease;
}

nav a:hover,
.header-action:hover {
  opacity: 0.68;
}

.header-action {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 10px 17px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 52px) 92px;
  color: #fffaf1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-biryani.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.82), rgba(12, 12, 10, 0.32) 52%, rgba(12, 12, 10, 0.12)),
    linear-gradient(0deg, rgba(12, 12, 10, 0.76), rgba(12, 12, 10, 0.05) 45%);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 12vw, 10.6rem);
  max-width: 8ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  max-width: 11ch;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #fffaf1;
  color: var(--ink);
  border-color: #fffaf1;
}

.button.secondary {
  color: inherit;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 52px);
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.82rem;
  font-style: normal;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.quick-strip div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span,
.story-details span,
.menu-feature span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-strip strong {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 4vw, 52px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 44px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.menu-feature {
  background: var(--cream);
  border: 1px solid var(--line);
}

.menu-feature:first-child {
  grid-row: span 2;
}

.menu-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.menu-feature:first-child img {
  height: 520px;
}

.menu-feature div {
  padding: 22px;
}

.menu-feature p,
.menu-list p,
.story-copy p,
address {
  color: var(--muted);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-list div {
  background: var(--paper);
  padding: 28px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  background: var(--green);
  color: #fffaf1;
}

.story-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.story-details {
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 241, 0.22);
  border: 1px solid rgba(255, 250, 241, 0.22);
}

.story-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--green);
  padding: 24px;
}

.story-details span {
  color: rgba(255, 250, 241, 0.58);
}

.story-details strong {
  text-align: right;
}

.visit-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 52px);
  background: var(--red);
  color: #fffaf1;
}

.visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) auto;
  gap: 32px;
  align-items: end;
}

.visit-inner h2 {
  max-width: 8ch;
}

address {
  color: rgba(255, 250, 241, 0.8);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: #fffaf1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 4vw, 52px);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 7rem);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    margin-top: 42px;
  }

  .quick-strip,
  .menu-list,
  .story-section,
  .visit-inner {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .menu-feature:first-child {
    grid-row: auto;
  }

  .menu-feature img,
  .menu-feature:first-child img {
    height: clamp(240px, 58vw, 440px);
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand span {
    font-size: 1.16rem;
  }

  .header-action {
    padding: 9px 13px;
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 54px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 14vw, 4.1rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .story-details div {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-details strong {
    text-align: left;
  }
}
