:root {
  --ink: #17130f;
  --black: #11100d;
  --red: #9f1d24;
  --red-dark: #701217;
  --gold: #f6c453;
  --green: #32634b;
  --ivory: #fff7e8;
  --paper: #fffdf7;
  --soft: #f3ead9;
  --muted: #6f6254;
  --line: rgba(23, 19, 15, 0.14);
  --white-line: rgba(255, 247, 232, 0.22);
  --shadow: 0 24px 70px rgba(17, 16, 13, 0.16);
  --serif: "Noto Serif SC", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(17, 16, 13, 0.78);
  color: var(--ivory);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, min-height 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(17, 16, 13, 0.96);
  min-height: 62px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 247, 232, 0.68);
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 2px;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border: 1px solid rgba(255, 247, 232, 0.55);
  border-radius: 999px;
  color: var(--ivory);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.78rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--ivory);
  display: none;
  height: 40px;
  padding: 0;
  width: 40px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 8px auto;
  width: 24px;
}

main section[id],
.site-footer[id] {
  scroll-margin-top: 88px;
}

.hero {
  background: var(--black);
  color: var(--ivory);
  min-height: 92vh;
  overflow: hidden;
  padding: 148px clamp(20px, 6vw, 88px) 96px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.95), rgba(17, 16, 13, 0.66), rgba(17, 16, 13, 0.16)),
    linear-gradient(180deg, rgba(17, 16, 13, 0.06), rgba(17, 16, 13, 0.5));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow,
.menu-band .eyebrow,
.location-section .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  font-size: 6.4rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 3.35rem;
  margin-bottom: 20px;
  max-width: 940px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 247, 232, 0.86);
  font-size: 1.13rem;
  max-width: 590px;
}

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

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0;
  min-height: 48px;
  padding: 13px 20px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg,
.floating-whatsapp svg,
.intro-grid svg,
.contact-grid svg {
  height: 18px;
  width: 18px;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(17, 16, 13, 0.18);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-secondary {
  background: rgba(255, 247, 232, 0.09);
  border: 1px solid rgba(255, 247, 232, 0.56);
  color: var(--ivory);
}

.button-dark {
  background: var(--black);
  color: var(--ivory);
}

.hero-strip {
  border-top: 1px solid var(--white-line);
  bottom: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(20px, 6vw, 88px);
  padding: 20px 0;
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  z-index: 2;
}

.hero-strip span {
  color: rgba(255, 247, 232, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section {
  padding: 92px clamp(20px, 6vw, 88px);
}

.intro-section {
  background: var(--paper);
}

.intro-copy {
  margin-bottom: 36px;
  max-width: 900px;
}

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

.intro-grid article {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 28px;
}

.intro-grid svg {
  color: var(--red);
  height: 30px;
  margin-bottom: 24px;
  width: 30px;
}

.intro-grid p,
.section-heading > p,
.dish-copy > p,
.menu-band p,
.location-copy p {
  color: var(--muted);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
  max-width: 850px;
}

.dishes-section {
  background: var(--soft);
}

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

.dish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(17, 16, 13, 0.08);
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dish-card:hover {
  border-color: rgba(159, 29, 36, 0.34);
  box-shadow: 0 26px 76px rgba(17, 16, 13, 0.14);
  transform: translateY(-4px);
}

.dish-visual {
  background-image: linear-gradient(180deg, rgba(17, 16, 13, 0.06), rgba(17, 16, 13, 0.54)), url("assets/hero-food.webp");
  background-position: 70% 52%;
  background-size: cover;
  min-height: 230px;
  position: relative;
}

.dish-visual.has-upload {
  background-size: cover;
}

.dish-ref,
.dish-badge {
  align-items: center;
  background: rgba(255, 247, 232, 0.92);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  min-height: 32px;
  padding: 7px 10px;
  position: absolute;
}

.dish-ref {
  bottom: 16px;
  left: 16px;
}

.dish-badge {
  right: 16px;
  top: 16px;
}

.dish-copy {
  display: grid;
  padding: 24px;
}

.dish-category {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dish-copy ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}

.dish-copy li {
  border-left: 3px solid rgba(50, 99, 75, 0.36);
  padding-left: 12px;
}

.dish-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.dish-footer strong {
  color: var(--red-dark);
  font-size: 1.05rem;
}

.dish-footer a {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.menu-band {
  align-items: center;
  background: var(--red-dark);
  color: var(--ivory);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 76px clamp(20px, 6vw, 88px);
}

.menu-band h2 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.menu-band p {
  color: rgba(255, 247, 232, 0.82);
  margin-bottom: 0;
  max-width: 760px;
}

.service-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.contact-grid a {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-size: 1.3rem;
  font-weight: 900;
  gap: 14px;
  min-height: 112px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-grid a:hover {
  border-color: rgba(159, 29, 36, 0.34);
  transform: translateY(-3px);
}

.contact-grid svg {
  color: var(--red);
  height: 26px;
  width: 26px;
}

.location-section {
  align-items: center;
  background: var(--black);
  color: var(--ivory);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  padding: 92px clamp(20px, 6vw, 88px);
}

.location-copy p {
  color: rgba(255, 247, 232, 0.78);
  max-width: 680px;
}

.location-panel {
  background:
    linear-gradient(135deg, rgba(246, 196, 83, 0.18), rgba(50, 99, 75, 0.18)),
    var(--red-dark);
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 8px;
  min-height: 340px;
  padding: 34px;
}

.location-panel span {
  color: var(--gold);
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.location-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  letter-spacing: 0;
  line-height: 1;
}

.location-panel p {
  color: rgba(255, 247, 232, 0.86);
  font-size: 1.2rem;
  margin: 18px 0 0;
}

.floating-whatsapp {
  align-items: center;
  background: #1fae5b;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 16px 34px rgba(17, 16, 13, 0.24);
  color: #fff;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 56px;
  z-index: 25;
}

.floating-whatsapp svg {
  height: 26px;
  width: 26px;
}

.site-footer {
  align-items: center;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 88px);
}

.site-footer p {
  color: var(--ink);
  font-weight: 900;
  margin: 0;
}

.site-footer a {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .section-heading,
  .location-section,
  .menu-band {
    grid-template-columns: 1fr;
  }

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

  .menu-band .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(17, 16, 13, 0.98);
    border-top: 1px solid var(--white-line);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 20px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 112px;
    padding-top: 120px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(17, 16, 13, 0.92), rgba(17, 16, 13, 0.72)),
      linear-gradient(180deg, rgba(17, 16, 13, 0.04), rgba(17, 16, 13, 0.62));
  }

  .hero-media img {
    object-position: 68% center;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .hero-strip {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

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

  .intro-grid article {
    min-height: 0;
  }

  .dish-card {
    grid-template-rows: 210px 1fr;
  }

  .dish-visual {
    min-height: 210px;
  }

  .menu-band {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .menu-band h2 {
    font-size: 2.25rem;
  }

  .contact-grid a {
    font-size: 1.08rem;
    min-height: 88px;
  }

  .location-section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .location-panel {
    min-height: 280px;
  }

  .location-panel strong {
    font-size: 2.6rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }
}
