:root {
  --bg: #0b0b0b;
  --panel: #151515;
  --panel-2: #202020;
  --text: #f5f1e8;
  --muted: #bbb4a6;
  --line: rgba(255, 214, 111, .18);
  --gold: #f1b82d;
  --gold-2: #ffd66f;
  --shadow: 0 18px 50px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(9, 9, 9, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand b {
  color: var(--gold-2);
}

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

.site-nav a {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: #111;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: #111;
  font-size: 22px;
}

.hero,
.section,
.contact {
  padding-inline: clamp(16px, 4vw, 54px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100svh - 72px);
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.service-hero {
  min-height: 650px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: clamp(34px, 5vw, 64px);
}

h2 {
  font-size: clamp(25px, 3.2vw, 42px);
}

h3 {
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.section-head + p,
.intro-band p,
.route-band p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy p + p,
.section-head p {
  margin-top: 12px;
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
}

.btn {
  padding: 11px 18px;
}

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

.btn.ghost {
  color: var(--gold-2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 170px;
  gap: 10px;
}

.hero-grid img,
.hero-photo,
.image-card img,
.mini-gallery img,
.wide-gallery img,
.small-strip img {
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--panel-2);
  object-fit: cover;
}

.hero-grid img {
  height: 100%;
  border-radius: 8px;
}

.hero-grid .feature {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-photo {
  height: min(62vw, 560px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding-block: clamp(44px, 7vw, 86px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: end;
  background: #111;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 4 / 3;
}

.image-card h3,
.image-card p,
.image-card a {
  margin-inline: 18px;
}

.image-card h3 {
  margin-top: 18px;
}

.image-card p {
  margin-block: 8px 16px;
  color: var(--muted);
}

.image-card a {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-2);
  font-weight: 800;
}

.dark-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
  background: #101010;
  border-block: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 18px;
}

.check-list li {
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.wide-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.wide-gallery img {
  height: 290px;
  border-radius: 8px;
}

.route-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(90deg, #161616, #24200f);
  border-block: 1px solid var(--line);
}

.route-band p {
  max-width: 620px;
  margin: 0;
}

.small-assets {
  background: #0e0e0e;
}

.small-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.small-strip img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: center;
  padding-block: 42px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.contact h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.contact p + p {
  margin-top: 10px;
}

.contact-btn {
  gap: 8px;
  min-width: 140px;
  padding: 10px 14px;
  color: #111;
  background: var(--gold);
}

.contact-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101010;
  }

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

  .site-nav a {
    text-align: center;
  }

  .hero,
  .intro-band,
  .dark-split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-auto-rows: 130px;
  }

  .card-grid.three,
  .wide-gallery,
  .small-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 112px;
  }

  .hero-grid .feature {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-photo {
    height: 330px;
  }

  .card-grid.three,
  .mini-gallery,
  .wide-gallery,
  .small-strip {
    grid-template-columns: 1fr;
  }

  .small-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-btn {
    min-width: 0;
  }
}
