:root {
  --bg: #050505;
  --panel: rgba(13, 8, 7, 0.72);
  --panel-soft: rgba(17, 10, 8, 0.58);
  --border: rgba(255, 105, 35, 0.55);
  --border-soft: rgba(255, 105, 35, 0.2);
  --accent: #ff5d21;
  --accent-2: #ff7a2d;
  --text: #ffffff;
  --muted: #e0d8d2;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.82)),
    url("fire-bg.jpg") center top / cover no-repeat fixed;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 7, 0.93);
  border-bottom: 1px solid rgba(255, 105, 35, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.nav-social {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Oswald", sans-serif;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text-light {
  color: #f7f2ef;
}

.brand-text-accent {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255, 93, 33, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-nav a {
  color: #f7f2ef;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.nav-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  height: 38vh;
  min-height: 300px;
  max-height: 460px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 105, 35, 0.22);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(0, 0, 0, 0.3), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  width: min(46%, 560px);
  min-width: 0;
  min-height: 0;
  padding: 24px 0;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 460px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

.hero-contact-btn {
  min-height: 50px;
  padding: 0 22px;
  flex-shrink: 0;
}

.hero-contact-save {
  background:
    linear-gradient(180deg, rgba(44, 24, 18, 0.98) 0%, rgba(24, 14, 12, 0.98) 100%);
  color: #fff3ec;
  border: 1px solid rgba(255, 121, 52, 0.3);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-contact-save:hover,
.hero-contact-save:focus-visible {
  background:
    linear-gradient(180deg, rgba(58, 29, 21, 0.98) 0%, rgba(31, 17, 14, 0.98) 100%);
}

.hero-contact-btn i {
  font-size: 1rem;
}

.hero-contact-btn span {
  white-space: nowrap;
}

.hero-actions > .btn-secondary {
  min-height: 58px;
  flex-shrink: 0;
}

.btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #ff6b2c 0%, #ff5a1f 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 93, 33, 0.25);
}

.btn-secondary {
  background: rgba(15, 11, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.section-space {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 105, 35, 0.17);
}

.section-title {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f4efec;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 108, 43, 0.92) 100%);
}

.section-title::before {
  transform: rotate(180deg);
}

.section-title-icon {
  gap: 10px;
}

.section-title-icon i {
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
}

.about {
  padding-top: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.72fr) minmax(360px, 0.93fr);
  gap: 28px;
  align-items: center;
}

.card-surface,
.menu-panel,
.planning-panel {
  background: linear-gradient(180deg, rgba(20, 12, 10, 0.75) 0%, rgba(8, 8, 8, 0.72) 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
}

.about-text h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.about-text p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 540px;
}

.about-highlight {
  margin: 14px 0 0;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  gap: 22px;
  align-content: center;
  min-height: 210px;
  justify-self: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
}

.feature-text {
  font-family: "Oswald", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.suggestion-inline {
  padding: 18px 22px 20px;
  border: 1px solid rgba(255, 105, 35, 0.75);
  background:
    radial-gradient(circle at top right, rgba(255, 93, 33, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(33, 16, 11, 0.9) 0%, rgba(14, 9, 8, 0.86) 100%);
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255, 93, 33, 0.16),
    0 18px 30px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(255, 93, 33, 0.16);
  transform: translateX(10px);
  max-width: 330px;
  justify-self: end;
}

.suggestion-inline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 93, 33, 0.14), transparent 64%);
  pointer-events: none;
}

.suggestion-inline-label,
.suggestion-inline h3,
.suggestion-inline p {
  position: relative;
  z-index: 1;
}

.suggestion-inline-label {
  margin: 0 0 8px;
  color: #ffd2be;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.suggestion-inline h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 2rem;
}

.suggestion-inline p {
  margin: 0;
  color: #f3ece8;
  font-size: 1.08rem;
  line-height: 1.45;
}

.suggestion-price {
  margin: 16px 0 0;
}

.menu-panel,
.planning-panel {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-panel {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.planning-panel {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-col,
.planning-col,
.suggestion-inline {
  min-height: 108px;
  padding: 12px 10px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 11, 8, 0.55) 0%, rgba(10, 8, 8, 0.6) 100%);
}

.menu-col,
.planning-col {
  text-align: center;
}

.menu-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 178px;
  padding: 14px 12px 12px;
}

.menu-col h3,
.planning-col h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #f4efec;
}

.menu-col h3 {
  font-size: 1.1rem;
  min-height: 2.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-col p,
.planning-col p,
.event-item p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.42;
}

.menu-col p {
  margin: 12px 0 0;
  min-height: 4.4em;
}

.price-pill {
  width: fit-content;
  margin: auto auto 0;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(255, 93, 33, 0.24);
}

.planning-col h3 {
  color: var(--accent);
  font-size: 1.35rem;
}

.planning-col .place {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.planning-col .hours {
  color: var(--accent-2);
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-surface {
  border-radius: 10px;
  padding: 16px 18px;
}

.events-box {
  text-align: center;
}

.events-list {
  max-width: 860px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
}

.event-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.event-item-wide {
  grid-column: 1 / -1;
}

.event-icon {
  color: var(--accent);
  font-size: 1.15rem;
}

.event-item p {
  font-size: 1.08rem;
  line-height: 1.35;
}

.reserve-btn {
  min-width: 340px;
}

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

.contact-card {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.55rem;
}

.contact-icon.phone {
  background: var(--accent);
  color: #fff;
}

.contact-icon.facebook {
  background: #1f6fff;
  color: #fff;
}

.contact-label {
  margin: 0 0 6px;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.site-footer {
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 105, 35, 0.17);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #efe6df;
  font-size: 0.75rem;
}

.footer-copy,
.footer-links {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f7f2ef;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .about-grid,
  .planning-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .about-text p {
    max-width: none;
  }

  .about-text,
  .about-features,
  .suggestion-inline {
    min-height: 0;
    transform: none;
  }

  .suggestion-inline {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 860px) {
  .hero,
  .hero-overlay {
    min-height: 360px;
  }

  .hero-content {
    width: min(78%, 430px);
    min-width: 0;
  }

  .hero-logo {
    max-width: 380px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .events-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-text {
    font-size: 1.45rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(8, 7, 7, 0.96);
    border: 1px solid rgba(255, 105, 35, 0.28);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-social {
    margin-top: 4px;
  }

  .hero,
  .hero-overlay {
    min-height: 340px;
    height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero-overlay {
    align-items: flex-end;
    padding-bottom: 22px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }

  .hero-logo {
    max-width: 300px;
    margin-bottom: 18px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-contact-btn {
    width: 100%;
  }

  .btn,
  .reserve-btn {
    width: 100%;
    min-width: 0;
  }

  .section-space {
    padding: 22px 0 26px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-title::before,
  .section-title::after {
    width: 48px;
  }

  .menu-panel,
  .planning-panel {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-col,
  .planning-col {
    min-height: 168px;
    padding: 12px 10px 12px;
  }

  .planning-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .about-text h2,
  .planning-col .place,
  .contact-value {
    font-size: 1.5rem;
  }

  .menu-col h3,
  .planning-col h3,
  .suggestion-inline h3 {
    font-size: 1.15rem;
  }

  .menu-col h3,
  .planning-col h3 {
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-col p,
  .planning-col p {
    min-height: 0;
  }

  .menu-col p,
  .planning-col .place,
  .planning-col .hours {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .planning-col .place {
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .planning-col .hours {
    margin-top: auto;
    padding-top: 10px;
    font-size: 1rem;
  }

  .about-grid {
    gap: 18px;
  }

  .about-text {
    min-height: 0;
  }

  .about-text p,
  .about-highlight {
    display: none;
  }

  .about-features {
    min-height: 0;
    justify-self: stretch;
    gap: 12px;
    margin-top: -6px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-text {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .price-pill {
    padding: 4px 12px;
    font-size: 1rem;
  }

  .events-box {
    text-align: left;
  }

  .event-item,
  .event-item-wide {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .event-item p {
    margin-top: 0;
  }

  .reserve-btn {
    min-width: 0;
  }

  .about-highlight {
    font-size: 1.2rem;
  }
}
