@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --brand-gold: #f7b500;
  --brand-deep-gold: #d89a00;
  --brand-red: #8e1b10;
  --brand-dark: #2c130d;
  --brand-cream: #fff9eb;
  --brand-surface: #fff3d2;
  --text-dark: #2b221d;
  --text-soft: #5a4a41;
  --max-width: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 38px rgba(44, 19, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at top right, #ffe39f 0, #ffd154 27%, #f8c837 45%, #f7edd0 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.92), rgba(255, 249, 235, 0.96));
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

/**.top-pattern {
  background: repeating-linear-gradient(
    90deg,
    #f6bf1a 0,
    #f6bf1a 30px,
    #f1b205 30px,
    #f1b205 60px
  );
  border-bottom: 4px solid var(--brand-red);
  height: 52px;
}**/

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(247, 181, 0, 0.95);
  border-bottom: 1px solid rgba(142, 27, 16, 0.35);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 140px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  background: var(--brand-red);
  color: #fff;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 700;
  color: var(--brand-red);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  background: rgba(142, 27, 16, 0.12);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #220f0a;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 4;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(44, 19, 13, 0.72), rgba(44, 19, 13, 0.25));
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--max-width));
  padding-bottom: 4.2rem;
  color: #fff;
}

.home-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(247, 181, 0, 0.28), transparent 40%),
    radial-gradient(circle at 84% 74%, rgba(142, 27, 16, 0.36), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.home-page .hero-glass {
  max-width: 760px;
  background: linear-gradient(150deg, rgba(32, 16, 12, 0.68), rgba(76, 18, 12, 0.48));
  border: 1px solid rgba(255, 232, 170, 0.28);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 14px 36px rgba(20, 8, 5, 0.35);
}

.home-page .hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.home-page .hero-metrics span {
  border: 1px solid rgba(255, 225, 140, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe7ad;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  color: #ffd777;
}

.hero h1,
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0.5rem 0 0.85rem;
}

.hero p,
.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.16rem);
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(247, 181, 0, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin: 0;
  color: var(--brand-red);
}

.section-subtitle {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  max-width: 760px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-red);
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.home-page .section {
  padding: 4rem 0;
}

.home-page .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.home-page .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7b500, rgba(247, 181, 0, 0));
}

.home-page .card {
  border: 1px solid rgba(142, 27, 16, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(44, 19, 13, 0.16);
}

.home-page .feature-band {
  position: relative;
  overflow: hidden;
}

.home-page .feature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 197, 69, 0.2), transparent 30%);
  pointer-events: none;
}

.feature-band {
  background: linear-gradient(120deg, #5f1009, #8e1b10 45%, #b83313);
  color: #fff;
}

.feature-band .section-title,
.feature-band .section-subtitle {
  color: #fff;
}

.timeline {
  border-left: 3px solid var(--brand-gold);
  margin-top: 1.5rem;
  padding-left: 1rem;
}

.timeline-item {
  padding: 0.7rem 0;
}

.timeline-item h4 {
  margin: 0;
  color: var(--brand-red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.menu-category img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.menu-content {
  padding: 1rem;
}

.menu-content h3 {
  margin: 0;
  color: var(--brand-red);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed rgba(142, 27, 16, 0.24);
}

.menu-board {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 0.6rem;
  background: linear-gradient(180deg, #fffdf5, #fff8e6);
  border: 1px solid rgba(142, 27, 16, 0.14);
  border-radius: var(--radius-lg);
  padding: 0.65rem;
  box-shadow: var(--shadow-soft);
}

.menu-board-column {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(142, 27, 16, 0.14);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  align-self: start;
}

.full-menu-board + .full-menu-board {
  margin-top: 0.35rem;
}

.menu-board-column h3 {
  margin: 0.1rem 0 0.45rem;
  padding: 0.35rem 0.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: #ffe5a3;
  background: linear-gradient(120deg, #7d1209, #a92515);
  border-radius: 8px;
}

.menu-board-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.menu-board-list + .menu-board-list {
  margin-top: 0.2rem;
}

.menu-board-column .menu-board-list + h3 {
  margin-top: 0.45rem;
}

.menu-board-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.28rem 0;
  border-bottom: 1px dashed rgba(142, 27, 16, 0.2);
}

.menu-board-list li span {
  color: #3f2a1d;
  font-weight: 500;
  line-height: 1.35;
}

.menu-board-list li strong {
  min-width: 2.4rem;
  text-align: right;
  color: var(--brand-red);
  font-weight: 800;
}

.menu-title-spacer {
  margin-top: 2.1rem;
}

.menu-image-grid {
  margin-top: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-warning-banner {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  background: #fff4d8;
  border: 1px solid rgba(142, 27, 16, 0.26);
  border-left: 5px solid #d17b00;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  color: #4f2b0a;
  font-weight: 600;
}

.price-warning-banner i {
  color: #d17b00;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
}

.price-warning-banner strong {
  color: #8e1b10;
}

.menu-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
  margin-bottom: 1rem;
}

.menu-showcase-card {
  background: #fff;
  border: 1px solid rgba(142, 27, 16, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.menu-showcase-card h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  color: #ffe5a3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  background: linear-gradient(120deg, #7d1209, #a92515);
}

.menu-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
}

.menu-showcase-list {
  display: grid;
  grid-template-rows: auto auto 210px;
}

.menu-showcase-list ul {
  margin: 0;
  padding: 0.75rem 1rem;
  list-style: none;
}

.menu-showcase-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(142, 27, 16, 0.22);
}

.menu-showcase-list li span {
  color: #3f2a1d;
  font-weight: 600;
}

.menu-showcase-list li strong {
  color: var(--brand-red);
  font-weight: 800;
}

.menu-showcase-list img {
  min-height: 210px;
  max-height: 210px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(18px);
  opacity: 0;
  animation: rise 0.75s ease forwards;
}

.gallery-item:nth-child(2) {
  animation-delay: 90ms;
}

.gallery-item:nth-child(3) {
  animation-delay: 180ms;
}

.gallery-item:nth-child(4) {
  animation-delay: 270ms;
}

.gallery-item:nth-child(5) {
  animation-delay: 360ms;
}

.gallery-item:nth-child(6) {
  animation-delay: 450ms;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.branch-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.branch-card iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.branch-body {
  padding: 1rem;
}

.branch-body h3 {
  margin: 0;
  color: var(--brand-red);
}

.branch-body p {
  margin: 0.55rem 0;
  color: var(--text-soft);
}

.page-hero {
  padding: 3rem 0;
  background: linear-gradient(130deg, rgba(44, 19, 13, 0.95), rgba(142, 27, 16, 0.88));
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
}

footer {
  background: #2c130d;
  color: #ffe6c0;
  padding: 1.9rem 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.popup-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  padding: 0.75rem 1.1rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(44, 19, 13, 0.35);
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.modal-close {
  border: 0;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.popup-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.popup-list li {
  border: 1px solid rgba(142, 27, 16, 0.18);
  border-radius: var(--radius-md);
  padding: 0.8rem;
}

.popup-list h4 {
  margin: 0;
  color: var(--brand-red);
}

.popup-list p {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
}

.popup-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.popup-columns li:last-child {
  grid-column: 1 / -1;
}

.popup-columns a {
  color: var(--brand-red);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 980px);
  max-height: 85vh;
  border-radius: 8px;
}

@keyframes rise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-showcase-card img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 0.6rem 1rem 1rem;
    background: #f7b500;
    border-bottom: 1px solid rgba(142, 27, 16, 0.2);
  }

  .main-nav.open {
    display: grid;
    gap: 0.2rem;
  }

  .hero-content {
    width: min(100% - 1.25rem, var(--max-width));
    padding-bottom: 2rem;
  }

  .home-page .hero-glass {
    padding: 0.85rem 0.9rem;
  }

  .home-page .hero-metrics {
    gap: 0.35rem;
  }

  .home-page .hero-metrics span {
    font-size: 0.73rem;
  }

  .grid-3,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-image-grid {
    grid-template-columns: 1fr;
  }

  .menu-board {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }

  .menu-board-column {
    padding: 0.7rem;
  }

  .menu-showcase-list {
    grid-template-rows: auto auto 170px;
  }

  .menu-showcase-list img {
    min-height: 170px;
    max-height: 170px;
  }

  .popup-columns {
    grid-template-columns: 1fr;
  }

  .popup-columns li:last-child {
    grid-column: auto;
  }
}
