:root {
  --navy: #081828;
  --navy-soft: #0f2741;
  --steel: #1d4f7a;
  --sky: #dbe8f5;
  --accent: #f0a81f;
  --accent-deep: #ce8200;
  --ink: #1a2735;
  --muted: #617181;
  --line: #d8e2ec;
  --paper: #f4f7fa;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(8, 24, 40, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 24, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent);
}

.topbar {
  background: var(--accent);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem 1rem;
  font-weight: 700;
}

.topbar a { text-decoration: none; font-weight: 800; }

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

.logo {
  display: flex;
  text-decoration: none;
  align-items: center;
  min-width: 0;
}

.logo-mark {
  width: 196px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  width: 42px;
  height: 42px;
}

.nav-toggle svg { width: 24px; height: 24px; }

.site-nav { display: flex; align-items: center; gap: 0.35rem; }

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 24px rgba(240, 168, 31, 0.22);
}

.button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.button-dark { background: var(--navy); color: var(--white); }

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-dark:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(29, 79, 122, 0.65), transparent 38%),
    linear-gradient(135deg, #081828 0%, #0f2741 54%, #0d2238 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 168, 31, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 168, 31, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.55;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3.4rem;
}

.page-hero {
  background:
    radial-gradient(circle at top left, rgba(240, 168, 31, 0.18), transparent 30%),
    linear-gradient(135deg, #0b1c2d 0%, #123151 100%);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(240, 168, 31, 0.35);
  border-radius: 999px;
  background: rgba(240, 168, 31, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 1.1rem 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.35rem 1rem;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.hero-stats span { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; }

.hero-card,
.panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-showcase {
  display: grid;
  gap: 1rem;
}

.hero-media-card,
.media-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-media-copy {
  padding: 1rem 0.2rem 0.2rem;
}

.hero-media-copy h3 {
  margin: 0.4rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.media-frame {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(8, 24, 40, 0.18);
  background: #10253a;
}

.media-frame-video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-media {
  margin-bottom: 1.2rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-color: var(--line);
}

.service-visuals,
.gallery-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.visual-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.visual-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 0.2rem 0.15rem;
}

.visual-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
}

.visual-copy span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.panel .section-tag {
  color: var(--accent);
}

.panel .section-head h2,
.panel h2 {
  color: var(--white) !important;
}

.panel .note {
  color: rgba(255, 255, 255, 0.8);
}

.panel-light {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.media-panel {
  display: grid;
  gap: 1rem;
}

.media-panel .media-frame {
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-list,
.check-list,
.mini-list { list-style: none; padding: 0; margin: 0; }

.contact-list li,
.check-list li,
.mini-list li { display: flex; gap: 0.9rem; }

.contact-list li + li,
.check-list li + li,
.mini-list li + li { margin-top: 1rem; }

.icon-badge {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(240, 168, 31, 0.16);
  color: var(--accent);
}

.icon-badge svg { width: 20px; height: 20px; }

main section { padding: 4rem 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.section-tag {
  color: var(--accent-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.section-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.grid-2,
.grid-3,
.grid-4 { display: grid; gap: 1.5rem; }

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

.card,
.service-card,
.diff-card,
.step-card,
.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
}

.service-card { position: relative; overflow: hidden; }

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--steel));
}

.service-card h3,
.diff-card h3,
.step-card h3,
.card h3 {
  margin: 1rem 0 0.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--navy);
}

.service-card p,
.diff-card p,
.step-card p,
.card p,
.card li { color: var(--muted); line-height: 1.7; }

.service-card ul,
.card ul { margin: 1rem 0 0; padding-left: 1.15rem; }

.service-card li + li,
.card li + li { margin-top: 0.45rem; }

.service-subhead {
  margin: 1.2rem 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.service-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.service-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  line-height: 1.65;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.service-cta {
  margin-top: 1.4rem;
}

.service-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.band {
  background: linear-gradient(135deg, #0b1c2d 0%, #153756 100%);
  color: var(--white);
}

.band .section-head h2,
.band .section-head p,
.band .step-card h3,
.band .step-card p { color: var(--white); }

.band .section-head p,
.band .step-card p { color: rgba(255, 255, 255, 0.72); }

.band .step-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.step-index {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  color: rgba(240, 168, 31, 0.35);
  line-height: 1;
}

.brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel);
  letter-spacing: 0.05em;
}

.cta-strip {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--accent), #f7bf57);
}

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

.cta-strip h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  text-transform: uppercase;
}

.cta-strip p {
  margin: 0.35rem 0 0;
  color: rgba(8, 24, 40, 0.8);
  font-size: 1rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-grid strong { color: var(--white); }

.footer-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem;
}

.footer-title {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-list li,
.footer-block p {
  margin: 0;
  line-height: 1.7;
}

.footer-list a,
.footer-map-link {
  color: #fff;
  text-decoration: none;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-map-frame {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 14px;
  margin-top: 0.8rem;
  background: #0c2034;
}

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.breadcrumbs {
  padding: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.breadcrumbs a { text-decoration: none; }

.two-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-cards { display: grid; gap: 1rem; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.data-grid { display: grid; gap: 1rem; }

.data-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.data-row span:first-child {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.data-row span:last-child {
  text-align: right;
  color: var(--white);
  font-weight: 600;
}

.note { color: var(--muted); font-size: 0.95rem; }

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(240, 168, 31, 0.18);
  border: 1px solid rgba(240, 168, 31, 0.35);
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-inner,
  .page-hero-inner,
  .grid-4,
  .grid-3,
  .grid-2,
  .two-panels { grid-template-columns: 1fr; }

  .service-visuals,
  .gallery-grid,
  .gallery-grid-3,
  .hero-mini-grid { grid-template-columns: 1fr 1fr; }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark {
    width: 150px;
    height: 50px;
  }

  .hero-inner,
  .page-hero-inner {
    gap: 1.8rem;
    padding: 3rem 0 2.5rem;
  }

  main section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    font-size: 0.72rem;
    line-height: 1.4;
    padding: 0.4rem 0.75rem;
  }

  .hero-inner,
  .page-hero-inner {
    padding: 2.2rem 0 2rem;
    gap: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero p,
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-card,
  .panel,
  .panel-light,
  .card,
  .service-card,
  .step-card,
  .contact-card,
  .footer-block {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .section-head {
    margin-bottom: 1.8rem;
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-stats,
  .brands { grid-template-columns: 1fr; }

  .service-visuals,
  .gallery-grid,
  .gallery-grid-3,
  .hero-mini-grid { grid-template-columns: 1fr; }

  .cta-strip .container,
  .data-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats div {
    padding: 1rem 0.85rem;
  }

  .button-primary,
  .button-secondary,
  .button-dark,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-footer-actions {
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  main section {
    padding: 2.7rem 0;
  }

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

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

  .data-row span:last-child { text-align: left; }

  .logo-mark {
    width: 124px;
    height: 44px;
  }
}
