@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --color-burgundy: #641c34;
  --color-gold: #efb810;
  --color-ink: #1b0e13;
  --color-cream: #fbf6ef;
  --color-sand: #efe3d2;
  --color-white: #ffffff;
  --color-black: #000000;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-soft: 0 12px 30px rgba(27, 14, 19, 0.12);
  --shadow-strong: 0 18px 40px rgba(27, 14, 19, 0.2);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Rubik", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(239, 184, 16, 0.18), transparent 55%),
    radial-gradient(
      circle at 20% 20%,
      rgba(100, 28, 52, 0.14),
      transparent 45%
    ),
    linear-gradient(160deg, #fff7ea 0%, var(--color-cream) 45%, #fefcf8 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(100, 28, 52, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.24rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-burgundy);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(100, 28, 52, 0.2);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-burgundy);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.site-nav-left {
  justify-content: flex-end;
}

.site-nav-right {
  justify-content: flex-start;
}

.site-nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

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

.hero {
  position: relative;
  padding: clamp(72px, 10vw, 96px) 0 clamp(64px, 8vw, 88px);
  text-align: center;
}

.hero-copy {
  display: grid;
  gap: 12px;
  margin: 0 auto 28px;
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.6vw, 24px);
  max-width: min(96vw, 980px);
  border-radius: var(--radius-l);
  background: rgba(100, 28, 52, 0.08);
  overflow-wrap: break-word;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--color-burgundy);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
}

.hero-copy h1 {
  text-wrap: balance;
}

.lead {
  max-width: 60ch;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: rgba(27, 14, 19, 0.78);
}

.hero-copy .lead {
  max-width: none;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--color-burgundy);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--color-burgundy);
  border-color: var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(239, 184, 16, 0.12);
}

.btn-tertiary {
  background: var(--color-gold);
  color: var(--color-ink);
}

.featured {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.75);
}

.featured h2,
.about h2,
.highlights h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 28px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.featured-media {
  background: var(--color-sand);
  border-radius: var(--radius-m);
  padding: 36px;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
}

.featured-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
}

.media-placeholder {
  width: min(80%, 240px);
  aspect-ratio: 1 / 1;
  border: 2px rgba(100, 28, 52, 0.4);
  display: grid;
  place-items: center;
  color: rgba(27, 14, 19, 0.55);
  border-radius: var(--radius-m);
}

.featured-content h3 {
  font-size: 1.6rem;
  margin-top: 0;
}

.featured-content p {
  margin-bottom: 20px;
}

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

.featured-card {
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.featured-card-media {
  background: var(--color-sand);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-body {
  padding: 16px 18px 0;
  display: grid;
  gap: 8px;
}

.featured-card-body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.featured-card-body p {
  margin: 0;
  color: rgba(27, 14, 19, 0.78);
  font-size: 0.98rem;
}

.featured-card-actions {
  padding: 16px 18px 20px;
}

.featured-price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-burgundy);
}

.featured-empty {
  margin: 0;
  color: rgba(27, 14, 19, 0.7);
}

.about {
  padding: 80px 0;
}

.about p {
  max-width: 620px;
}

.highlights {
  padding: 80px 0 110px;
  background: var(--color-cream);
}

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

.card {
  padding: 24px;
  border-radius: var(--radius-m);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  color: var(--color-burgundy);
}

.menu {
  padding: 80px 0 110px;
}

.menu h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.menu-intro {
  margin: 0 0 32px;
  max-width: 60ch;
  color: rgba(27, 14, 19, 0.7);
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.menu-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(100, 28, 52, 0.25);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-nav-link:hover,
.menu-nav-link:focus-visible {
  background: rgba(239, 184, 16, 0.18);
  border-color: var(--color-gold);
}

.menu-category {
  margin-top: 44px;
  scroll-margin-top: 110px;
}

.menu-category h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--color-burgundy);
}

.menu-category > p {
  margin: 0 0 18px;
  color: rgba(27, 14, 19, 0.7);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.menu-item {
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.menu-item-media {
  background: var(--color-sand);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 8px;
}

.menu-item-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.menu-item-body p {
  margin: 0;
  color: rgba(27, 14, 19, 0.78);
}

.menu-item-price {
  font-weight: 700;
  color: var(--color-burgundy);
}

.menu-empty {
  margin: 16px 0 0;
  color: rgba(27, 14, 19, 0.6);
}

.site-footer {
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: 56px 0 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

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

.footer-hours {
  text-align: left;
}

.footer-contact {
  text-align: right;
  justify-items: end;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(239, 184, 16, 0.9);
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-text a {
  color: inherit;
}

.footer-branding {
  text-align: center;
  justify-items: center;
  gap: 14px;
}

.footer-logo {
  width: 96px;
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(239, 184, 16, 0.2);
  transform: translateY(-2px);
}

main > section {
  scroll-margin-top: 90px;
  animation: reveal 0.8s ease-out both;
}

main > section:nth-of-type(1) {
  animation-delay: 0.05s;
}

main > section:nth-of-type(2) {
  animation-delay: 0.15s;
}

main > section:nth-of-type(3) {
  animation-delay: 0.25s;
}

main > section:nth-of-type(4) {
  animation-delay: 0.35s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header .container {
    padding: 18px 0;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

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

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-column,
  .footer-contact {
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 64px 0 56px;
  }

  .hero-copy {
    padding: 16px 18px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
  }

  .eyebrow {
    letter-spacing: 0.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .featured-list {
    grid-template-columns: 1fr;
  }
}

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