:root {
  --bg: #050508;
  --bg-alt: #0c0c10;
  --card: #12121a;
  --border: #ff3b3b;
  --accent: #ff3b3b;
  --accent-soft: rgba(255, 59, 59, 0.15);
  --text: #f8f8ff;
  --muted: #a0a0b8;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1a1a22 0, #050508 55%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,5,8,0.92), rgba(5,5,8,0.75), transparent);
  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;
  gap: 1.5rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-wide {
  height: 40px;
  width: auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  padding: 0.25rem 0.5rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--muted);
  padding: 0.3rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4b4b, #ff9b4b);
  border-color: rgba(255,255,255,0.08);
  color: #0a0505;
  box-shadow: 0 12px 30px rgba(255, 75, 75, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(255, 75, 75, 0.55);
}

.btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255,59,59,0.08);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.2);
  padding-inline: 1rem;
  border-radius: 999px;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(255,59,59,0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  color: var(--text);
  padding: 0.3rem 0.7rem;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 35rem;
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-media {
  position: relative;
  height: 100%;
  min-height: 260px;
}

.hero-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1b24, #101017);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

.hero-card.main {
  inset: 0 0 0 0;
}

.hero-card.stack {
  width: 55%;
  right: -4%;
  bottom: -10%;
  transform: rotate(-4deg);
  border: 1px solid rgba(255,59,59,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

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

/* Sections */
.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #151520 0, #050508 65%);
}

.section-header {
  text-align: left;
  margin-bottom: 1.9rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.3rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,59,59,0.42), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.card-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.card-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}

.card-list li::before {
  content: "•";
  color: var(--accent);
  display: inline-block;
  width: 0.9em;
  margin-left: -0.9em;
}

.card-highlight {
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(255,59,59,0.45);
  background: radial-gradient(circle at top left, rgba(255,59,59,0.25), #14141e);
}

.badge {
  position: absolute;
  top: 0.95rem;
  right: 1.1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.4);
}

.note {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.menu-column {
  background: rgba(9,9,16,0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.menu-column h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.menu-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.menu-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.menu-list li::before {
  content: "–";
  color: var(--accent);
  display: inline-block;
  width: 0.9em;
  margin-left: -0.9em;
}

.menu-inline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.menu-column h4 {
  font-size: 0.9rem;
  margin: 0.5rem 0 0.2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111119;
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Quote form */
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.quote-form .field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.quote-form label {
  font-size: 0.8rem;
  color: var(--muted);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: rgba(8,8,14,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255,59,59,0.5);
  background: #090911;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.quote-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.info-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
  margin: 0.4rem 0 0.6rem;
}

.info-list li::before {
  content: "•";
  color: var(--accent);
  display: inline-block;
  width: 0.9em;
  margin-left: -0.9em;
}

.info-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.4rem;
}

.contact-card .label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-right: 0.2rem;
}

.contact-card a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

.contact-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.contact-images img {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  gap: 0.5rem 1rem;
}

.footer-right {
  display: flex;
  gap: 0.8rem;
}

.footer-right a {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

.dot {
  margin-inline: 0.5rem;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
    margin-bottom: 0.5rem;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 3.1rem 0 auto 0;
    padding: 0.7rem 1.2rem 0.9rem;
    background: rgba(5,5,8,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  body.nav-open .main-nav {
    display: flex;
  }
  .hero {
    padding-top: 2.4rem;
  }
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    min-height: 220px;
  }
  .hero-card.stack {
    display: none;
  }
  .section {
    padding: 2.2rem 0;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
