:root {
  color-scheme: dark;
  --brand-gold: #AD8748;
  --brand-blue: #1F5D93;
  --brand-white: #FFFFFF;
  --brand-black: #0A0A0A;
  --surface: #111111;
  --surface-soft: #171717;
  --surface-blue: #102337;
  --text: #FFFFFF;
  --muted: #C9D0D6;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--brand-black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--brand-gold);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-header {
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 20px;
}

.brand {
  align-items: center;
  color: var(--brand-white);
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  min-height: 40px;
  padding: 8px 0;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--brand-gold);
}

.hero {
  background:
    linear-gradient(145deg, rgba(31, 93, 147, 0.58), rgba(10, 10, 10, 0.9) 48%),
    radial-gradient(circle at top right, rgba(173, 135, 72, 0.32), transparent 34%),
    var(--brand-black);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding: 64px 20px;
}

.hero-inner {
  max-width: 900px;
}

.hero-logo {
  border: 3px solid var(--brand-gold);
  border-radius: 50%;
  box-shadow: 0 24px 60px var(--shadow);
  display: block;
  height: 154px;
  margin-bottom: 28px;
  object-fit: cover;
  width: 154px;
}

.page .section-inner {
  padding-top: 44px;
}

.narrow {
  max-width: 800px;
}

.eyebrow {
  color: var(--brand-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.16;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.15rem, 9vw, 5rem);
  letter-spacing: 0.02em;
}

h2 {
  color: var(--brand-white);
  font-size: clamp(1.45rem, 4vw, 1.7rem);
}

h3 {
  color: var(--brand-gold);
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.lead {
  color: var(--brand-white);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.compact-lead {
  font-size: 1.06rem;
}

.tagline {
  border-left: 4px solid var(--brand-gold);
  color: var(--brand-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0;
  padding-left: 16px;
}

.button,
.button-secondary {
  border-radius: 6px;
  display: inline-block;
  line-height: 1.25;
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
}

.button {
  background: var(--brand-gold);
  color: var(--brand-black);
}

.button:hover {
  background: #c59d5b;
}

.button-secondary {
  border: 1px solid var(--brand-gold);
  color: var(--brand-white);
}

.button-secondary:hover {
  background: rgba(173, 135, 72, 0.16);
}

.cta-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.section {
  background: var(--surface);
}

.section-muted {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.section-blue {
  background: linear-gradient(135deg, var(--surface-blue), #0a0f15);
  border-top: 1px solid var(--line);
}

.service-list,
.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.service-list-detailed li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list-detailed h3,
.service-list-detailed p {
  margin: 0;
}

.service-list li,
.contact-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 16px;
}

.service-list li {
  color: var(--brand-white);
  font-weight: 700;
}

.contact-card p {
  margin: 4px 0 0;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
}

.service-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.detail-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 20px;
}

.detail-card h2 {
  color: var(--brand-gold);
  font-size: 1.12rem;
}

.detail-card p {
  margin-bottom: 0;
}

.feature-image,
.work-results img {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 48px var(--shadow);
  display: block;
  height: auto;
  max-width: 100%;
}

.feature-image {
  background: rgba(255, 255, 255, 0.035);
  max-height: 680px;
  object-fit: contain;
  object-position: center top;
  width: 100%;
}

.work-results {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 16px;
}

.comparison-card h3 {
  margin-bottom: 14px;
}

.comparison-card figure {
  margin: 0;
}

.comparison-pair {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-results img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.image-label {
  color: var(--brand-gold);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.comparison-card figcaption {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 8px;
}

.notice {
  background: rgba(173, 135, 72, 0.14);
  border: 1px solid var(--brand-gold);
  border-radius: 8px;
  color: var(--brand-white);
  padding: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0 auto;
  max-width: 1120px;
  padding: 22px 20px;
}

@media (max-width: 900px) {
  .work-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-inner,
  .section-inner {
    padding: 42px 18px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-logo {
    height: 132px;
    margin-bottom: 22px;
    width: 132px;
  }

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

  .button,
  .button-secondary {
    width: 100%;
  }

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

  .comparison-pair {
    grid-template-columns: 1fr;
  }

  .feature-image {
    max-height: 560px;
  }
}

@media (max-width: 420px) {
  .nav {
    padding: 16px;
  }

  .brand-logo {
    height: 42px;
    width: 42px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .nav-links {
    gap: 6px 12px;
  }

  .hero-inner,
  .section-inner {
    padding: 36px 16px;
  }

  .hero-logo {
    height: 112px;
    width: 112px;
  }

  .lead {
    font-size: 1.12rem;
  }

  .comparison-card,
  .detail-card,
  .service-list li,
  .contact-card {
    padding: 14px;
  }
}
