:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --surface: #1d2230;
  --text: #f3f5f8;
  --muted: #b6bfcc;
  --primary: #ff5b2e;
  --primary-soft: #ff7a56;
  --line: #2b3140;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 80% -10%, #222a3a 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 17, 21, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  height: auto;
  width: clamp(170px, 24vw, 250px);
  max-height: 64px;
  object-fit: contain;
  filter: none;
}

.brand-fallback {
  font-weight: 800;
  letter-spacing: 0.02em;
  display: none;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.ig-link {
  padding: 0.52rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  color: var(--primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  margin-bottom: 0.7rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff4b1a;
}

.btn-ghost {
  border-color: var(--line);
}

.hero-card,
.feature,
.address-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.2rem;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.hero-card a {
  color: #dce3ee;
}

section {
  padding: 3.5rem 0;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  padding: 1rem;
}

.section-grid {
  display: grid;
  gap: 1rem 2rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-list a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  color: #e9edf4;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-icon {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 86, 0.18);
  color: #ffd8cc;
  font-size: 0.88rem;
  line-height: 1;
}

.contact-list a:hover,
.contact-list a:focus-visible,
.address-card:hover,
.address-card:focus-visible {
  border-color: var(--primary-soft);
  background: rgba(255, 122, 86, 0.12);
}

.address-card {
  display: inline-block;
  text-decoration: none;
  padding: 1rem;
  color: var(--text);
}

.address-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--primary-soft);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  background: rgba(10, 11, 14, 0.72);
}

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

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-credit {
  color: #9aa4b5 !important;
  font-weight: 500 !important;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #c3cbd8 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--primary-soft);
  outline-offset: 2px;
}

@media (min-width: 900px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    width: clamp(145px, 38vw, 185px);
    max-height: 52px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 0.8rem 4%;
    background: #13161e;
    border-bottom: 1px solid var(--line);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
