:root {
  --bg: #0c1220;
  --bg-soft: #121b2e;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #c8d0de;
  --accent: #f5b301;
  --accent-2: #ff7a18;
  --line: rgba(255, 255, 255, 0.12);
  --success: #8ef0a7;
  --error: #ff8f8f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --container: 1180px;
  --header-h: 300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(8, 12, 22, 0.85), rgba(8, 12, 22, 0.94)),
    url("assets/hero-bg.jpg") center / cover fixed no-repeat;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 26, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 700px;
  height: 261px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  padding: 0.72rem 1rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 179, 1, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 122, 24, 0.2), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: 4rem 0;
}

.eyebrow,
.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-copy h1,
.section h2,
.site-footer h3 {
  font-family: "Barlow", sans-serif;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.hero-card,
.feature-panel,
.hours-card,
.contact-form,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.center {
  text-align: center;
}

.split-grid,
.contact-grid,
.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-panel {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1rem;
  border-radius: 14px;
  background: var(--surface-strong);
}

.feature-item h3,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-family: "Barlow", sans-serif;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 1.4rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.hours-card {
  padding: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr + tr {
  border-top: 1px solid var(--line);
}

.hours-table td {
  padding: 0.95rem 0.5rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--accent);
  font-weight: 700;
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-details p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.contact-form {
  padding: 1.25rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.18);
}

.error {
  display: block;
  min-height: 1.1rem;
  color: var(--error);
  margin-top: 0.35rem;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 14, 0.88);
  padding-top: 2rem;
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .hours-wrap,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(10, 15, 26, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .hours-wrap,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .gallery-grid img {
    height: 220px;
  }
}