:root {
  color-scheme: dark;
  --bg: #09090d;
  --panel: #15151c;
  --panel-2: #1d1d27;
  --text: #f5f2ee;
  --muted: #c7c1ba;
  --line: rgba(255,255,255,.14);
  --orange: #fb4a1b;
  --red: #d61515;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 15% 0%, rgba(251,74,27,.18), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.65;
}
html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1,h2,h3 { margin: 0; line-height: 1.08; }
h1 { font-family: Lato, Roboto, sans-serif; font-size: clamp(2.5rem, 7vw, 5.4rem); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(9,9,13,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand img { width: min(246px, 54vw); }
.site-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .35rem 1rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover,.site-nav a.active { color: var(--orange); }

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 12vw, 11rem) 1rem;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,.46), rgba(9,9,13,.88)), url("hero-bg.jpg") center top / cover fixed;
}
.hero-inner { width: min(100%, 1040px); }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.button,.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.social-links a:nth-child(2) { background: #352cde; }
.social-links a:nth-child(3) { background: #e02de0; }
.button:hover,.social-links a:hover { filter: brightness(1.12); }

.intro-section,.page,.section-block {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.intro-section { padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; }
.intro-section p:last-child { max-width: 820px; margin-inline: auto; }
.eyebrow { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.promo-strip { display: grid; gap: 1.5rem; width: min(1120px, calc(100% - 2rem)); margin: 0 auto clamp(3rem, 7vw, 5rem); }
.promo-strip img,.feature-image { width: 100%; border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow); }

.page { padding: clamp(3rem, 7vw, 5rem) 0; }
.page.narrow { width: min(920px, calc(100% - 2rem)); }
.page-hero { margin-bottom: 2rem; }
.page-hero p { max-width: 760px; font-size: 1.08rem; }
.panel {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.content-grid,.card-grid,.job-grid { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
.two-col { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.job-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.panel ul { padding-left: 1.1rem; color: var(--muted); }

.team-grid,.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.team-grid article,.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.team-grid img,.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.team-grid h3,.team-grid p,.gallery-grid figcaption { padding-inline: 1rem; }
.team-grid h3 { padding-top: 1rem; }
.team-grid p { margin-top: .35rem; padding-bottom: 1rem; }
.gallery-grid figcaption { padding-block: .85rem; color: var(--muted); font-weight: 700; }

.faq-list h2 { margin: 2rem 0 1rem; color: var(--orange); }
details {
  margin-bottom: .8rem;
  padding: 1rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
summary { cursor: pointer; font-weight: 800; }

.site-footer {
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  background: #101015;
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; text-transform: uppercase; font-size: .78rem; font-weight: 800; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer img { width: min(260px, 70vw); }
.site-footer p { margin: 0; font-size: .9rem; }

@media (max-width: 900px) {
  .site-header { position: static; flex-direction: column; }
  .site-nav { justify-content: center; }
  .two-col,.three,.job-grid { grid-template-columns: 1fr; }
  .team-grid,.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .team-grid,.gallery-grid { grid-template-columns: 1fr; }
}
