:root {
  --orange: #ff7828;
  --dark: #0a0a0c;
  --darker: #07070a;
  --text: #f5f5f5;
  --muted: #cfcfd6;
  --card: #101018;
  --border: #1c1c25;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0 0 0.4em;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-family: 'Space Mono', 'Inter', monospace;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--orange);
}

h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--text);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 38px);
  background: linear-gradient(180deg, rgba(7,7,10,0.9) 0%, rgba(7,7,10,0.55) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.logo {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

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

.nav a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: var(--orange);
  color: #0a0a0a;
  box-shadow: 0 12px 30px rgba(255, 120, 40, 0.45);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 120, 40, 0.6);
}

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

.btn.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: url("data:image/svg+xml,%3Csvg width='24' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'%3E%3Cpath d='M1 1h22M1 9h22M1 17h22'/%3E%3C/g%3E%3C/svg%3E") center no-repeat;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 20px 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,10,0.8) 0%, rgba(7,7,10,0.55) 60%, rgba(0,0,0,0.55) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section {
  padding: 100px clamp(20px, 6vw, 80px);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section.two-col .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-header .line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.6;
}

.text {
  font-size: 1.05rem;
}

.photo-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.photo-stack img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.photo-single {
  justify-self: center;
}

.photo-single img {
  width: clamp(240px, 45vw, 420px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}


.collage {
  text-align: center;
}

.collage-row {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  margin-top: 20px;
}

.circle {
  width: clamp(120px, 18vw, 200px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: var(--shadow);
}

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

.feature {
  background: linear-gradient(135deg, rgba(255,120,40,0.08), rgba(255,120,40,0));
  border-radius: 24px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.feature-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-photo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cards .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px 26px;
  box-shadow: var(--shadow);
  min-height: 210px;
}

.card p {
  color: var(--muted);
}

.cards .facts {
  margin-top: 32px;
}

.contact {
  padding: 90px 20px 110px;
}

.contact-lead {
  max-width: 1200px;
  margin: 0 auto 14px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: start;
}

.contact h2 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.contact .eyebrow {
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-text {
  font-size: 1rem;
}

.contact a {
  color: var(--orange);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 72px;
    right: 16px;
    background: rgba(7,7,10,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.04);
  }

  .site-header .nav a.btn {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  .section {
    padding: 80px 22px;
  }
}

@media (max-width: 640px) {
  .hero {
    text-align: left;
    align-items: end;
    padding-top: 120px;
    min-height: 80vh;
  }

  .cta-row {
    justify-content: flex-start;
    width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .photo-single img {
    width: min(100%, 360px);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px 16px;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Gallery */
.gallery {
  padding-top: 40px;
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 220px);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 6px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255,255,255,0.1);
}

.thumb-row::-webkit-scrollbar {
  height: 8px;
}

.thumb-row::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.thumb {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
