:root {
  --orange: #ef6b00;
  --orange2: #ff821c;
  --ink: #11100f;
  --paper: #fff7ed;
  --muted: #6c625a;
  --line: #e8ddd1;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(31, 15, 5, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fffaf4;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(17, 16, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  height: 62px;
  width: 160px;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 43%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}
.nav a:not(.btn):hover {
  color: #ff9a47;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(239, 107, 0, 0.24);
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: #ff7b0c;
}
.btn-small {
  min-height: 44px;
  padding: 0 20px;
}
.btn-large {
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.05rem;
}
.btn-light {
  background: #fff;
  color: var(--ink) !important;
  box-shadow: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
}
.hero {
  position: relative;
  height: min(820px, 92vh);
  min-height: 680px;
  background: #111;
  overflow: hidden;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.72) 38%,
    rgba(8, 8, 8, 0.16) 72%,
    rgba(8, 8, 8, 0.25) 100%
  );
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 82px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.76rem;
  color: #ff9a47;
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: var(--orange);
}
h1,
h2,
h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
}
h1 {
  font-size: clamp(4.4rem, 8vw, 7.6rem);
  line-height: 0.88;
  color: #fff;
  max-width: 800px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
}
h1 span {
  color: #ff8a22;
}
.hero-content > p:not(.eyebrow) {
  color: #f3eee8;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 590px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.text-link span {
  color: #ff8a22;
}
.hero-controls {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
}
.dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--orange);
}
.hero-badge {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 6;
  background: var(--orange);
  color: #fff;
  padding: 15px 28px;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.hero-badge span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.quick-strip {
  background: #111;
  color: #fff;
  border-top: 1px solid #222;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-grid > div {
  padding: 24px 28px;
  border-right: 1px solid #2e2b29;
}
.quick-grid > div:last-child {
  border-right: 0;
}
.quick-grid strong,
.quick-grid span {
  display: block;
}
.quick-grid strong {
  font-family: "Bebas Neue";
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.quick-grid span {
  color: #bfb8b1;
  font-size: 0.8rem;
  margin-top: 4px;
}
.section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.section h2,
.feature h2,
.order-card h2,
.contact h2 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.9;
}
.section-copy {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.food-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #16120f;
  box-shadow: var(--shadow);
}
.food-card-large {
  grid-column: span 2;
}
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.food-card:hover img {
  transform: scale(1.04);
}
.food-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 5%,
    rgba(0, 0, 0, 0.08) 70%
  );
}
.food-card-copy {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}
.food-card-copy span {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #ff943d;
  font-size: 0.7rem;
}
.food-card-copy h3 {
  font-size: 2.6rem;
  line-height: 1;
  margin: 6px 0;
}
.food-card-copy p {
  margin: 0;
  color: #e4ddd6;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 520px;
}
.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.category-cloud span {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  background: #fff;
}
.feature {
  padding: 110px 0;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.feature-visual {
  position: relative;
}
.feature-visual img {
  display: block;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}
.feature-stamp {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--orange);
  font-family: "Bebas Neue";
  font-size: 3.4rem;
  line-height: 0.7;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.feature-stamp span {
  font-family: Inter;
  font-size: 0.61rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 12px;
  width: 90px;
}
.feature-copy p:not(.eyebrow) {
  color: #c8c1bb;
  line-height: 1.75;
  font-size: 1.02rem;
}
.feature-copy .btn {
  margin-top: 18px;
}
.order-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #e96000, #ff8423);
}
.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
}
.order-card h2 {
  max-width: 720px;
}
.order-card p {
  max-width: 680px;
  line-height: 1.6;
  color: #fff1e6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 46px;
}
.contact h3 {
  font-family: Inter;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.contact p {
  line-height: 1.7;
  color: var(--muted);
}
.contact a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
footer {
  background: #0f0f0f;
  color: #aaa;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.82rem;
}
.footer-inner a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #111;
    padding: 24px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open {
    display: flex;
  }
  .hero {
    min-height: 700px;
    height: 88vh;
  }
  .hero-slide {
    background-position: 63% center;
  }
  .hero-slide:after {
    background: linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.93),
      rgba(8, 8, 8, 0.68)
    );
  }
  .hero-content {
    padding-right: 20%;
  }
  .hero-badge {
    display: none;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-grid > div:nth-child(2) {
    border-right: 0;
  }
  .section-head,
  .order-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-card-large {
    grid-column: span 2;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .feature-visual {
    max-width: 650px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .brand {
    width: 138px;
    height: 54px;
  }
  .header-inner {
    height: 72px;
  }
  .nav {
    top: 72px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    padding-top: 72px;
    padding-right: 0;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .hero-controls {
    bottom: 20px;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-grid > div {
    padding: 18px 10px;
  }
  .section {
    padding: 74px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .food-grid {
    grid-template-columns: 1fr;
  }
  .food-card,
  .food-card-large {
    grid-column: auto;
    min-height: 390px;
  }
  .feature {
    padding: 80px 0;
  }
  .feature-stamp {
    right: 10px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    font-size: 2.8rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .order-section {
    padding: 54px 0;
  }
  .footer-inner {
    flex-direction: column;
  }
  .hero-arrow {
    display: none;
  }
}

/* =========================================
   Timetable
   ========================================= */

#timetable {
  padding: 45px 0 15px;
}

#timetable .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

#timetable .col-md-6 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Timetable card */
#timetable .price-item {
  position: relative;
  margin-bottom: 30px;
}

/* Header */
#timetable .price-header {
  position: relative;
  width: 100%;
  padding: 30px;
  background: var(--am-primary-color, #ef6b00);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#timetable .price-title h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Body */
#timetable .price-body {
  position: relative;
  width: 100%;
  padding: 25px 0 20px;
  background: var(--am-background-color, #fffbed);
  border: 1px solid var(--am-tertiary-color, rgba(0, 0, 0, 0.07));
  border-top: 0;
  overflow: hidden;
}

/* Generated AlphaManger timetable */
#timetable .timetable {
  display: block;
  width: 100%;
}

#timetable table.amrt-timetable-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

#timetable table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  display: none;
}

/* Timetable rows */
#timetable .amrt-timetable-table-tbody-tr .amrt-timetable-table-tbody-tr-td {
  text-align: justify;
  padding-bottom: 5px;
}

#timetable
  .amrt-timetable-table-tbody-tr
  .amrt-timetable-table-tbody-tr-td:first-child {
  padding-left: 20px;
  padding-right: 50px;
}

/* Time slot */
#timetable table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
  display: inline-block;
  padding: 4px;
  margin-right: 3px;
  margin-bottom: 2px;
  border: 1px solid var(--am-timeslot-color, rgba(52, 49, 72, 0.9));
  border-radius: 10px;
}

/* =========================================
   Responsive
   ========================================= */

/* Two columns on large screens
   One column on smaller screens */
@media (max-width: 912px) {
  #timetable .col-md-6 {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  #timetable {
    padding: 45px 0 15px;
  }

  #timetable .price-header {
    padding: 25px 20px;
  }

  #timetable .price-title h2 {
    font-size: 23px;
  }

  #timetable .price-body {
    padding: 20px 0 15px;
  }

  #timetable
    .amrt-timetable-table-tbody-tr
    .amrt-timetable-table-tbody-tr-td:first-child {
    padding-left: 15px;
    padding-right: 25px;
  }
}

@media (max-width: 575.98px) {
  #timetable .price-header {
    padding: 20px 15px;
  }

  #timetable .price-title h2 {
    font-size: 21px;
  }

  #timetable
    .amrt-timetable-table-tbody-tr
    .amrt-timetable-table-tbody-tr-td:first-child {
    padding-left: 12px;
    padding-right: 15px;
  }

  #timetable table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
    padding: 3px 5px;
  }
}
