/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #080808;
  color: #f6f3ef;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #111111;
}

/* Header & navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.85));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f6f3ef;
  opacity: 0.7;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a.active {
  opacity: 1;
  border-color: #f7a325;
}

/* Hero section */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #2b1a0a 0, #080808 52%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  margin-bottom: 0.9rem;
}

.hero h1 span {
  color: #f7a325;
}

.hero p {
  margin-bottom: 1.4rem;
  max-width: 36rem;
  color: #f0e8dd;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.hero-meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.12s ease, box-shadow 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f7a325, #ffcf66);
  color: #221006;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #f6f3ef;
  background: transparent;
}

.btn.ghost:hover {
  border-color: #f7a325;
}

/* Hero card */
.hero-card {
  background: linear-gradient(150deg, rgba(15, 9, 3, 0.96), rgba(38, 23, 7, 0.98));
  border-radius: 1.25rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 0.6rem;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-block: 0.35rem;
}

.price {
  font-weight: 600;
  color: #ffcf66;
}

.small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Feature cards & grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #101010;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.highlight-card,
.about-highlight {
  background: #101010;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Lists */
.list {
  list-style: disc;
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}

.list li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Info cards on home */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-cards h3 {
  margin-bottom: 0.4rem;
}

/* Page hero */
.page-hero {
  padding: 3rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-hero p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Menu page */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ffcf66;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-item h4 {
  font-size: 0.98rem;
}

.menu-item p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.note {
  margin-top: 2rem;
}

/* Contact page */
.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.contact-form label {
  font-size: 0.85rem;
  display: grid;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  background: #050505;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.8rem;
  color: #f6f3ef;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f7a325;
}

.map-placeholder {
  margin-top: 1.2rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 1.8rem;
  background: #050505;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.footer-layout p {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 800px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .grid-3,
  .info-cards,
  .two-column,
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, 100%);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .main-nav {
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
