:root {
  --black: #020405;
  --panel: #071016;
  --panel-deep: #03090d;
  --white: #f5f5f3;
  --muted: #d0d1d1;
  --gold: #ffc400;
  --gold-deep: #d99f00;
  --line: rgba(255, 196, 0, 0.82);
  --sans: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #000;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.site-header,
main {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto 205px;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 72px;
  padding: 0 16px;
  background: rgba(0, 2, 3, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  margin-right: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -7px;
  transform: scaleX(0.9);
  transform-origin: left center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(1px);
}

.brand-name {
  color: #fff;
  font-size: 18px;
  letter-spacing: 6px;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 8px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 2px #000;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 17px;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #efefef;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--gold);
}

.primary-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.header-cta {
  display: grid;
  place-items: center;
  width: 205px;
  height: 42px;
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
  transition: 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #050505;
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 360px;
  max-height: 390px;
  aspect-ratio: 1286 / 446;
  overflow: hidden;
  isolation: isolate;
  background: #010305;
}

.hero-visual {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
}

.hero-art {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-approved.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.sky-slogan {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 52.5%;
  width: 58%;
  height: 78px;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.sky-slogan svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.firework-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-anchor: middle;
}

.firework-text-second {
  font-size: 27px;
}

.firework-text-core {
  fill: #fff7cc;
  stroke: #dca900;
  stroke-width: 0.55;
  paint-order: stroke fill;
}

.firework-text-sparks {
  fill: transparent;
  stroke: url("#fireworkGold");
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0.45 5.2;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #010305 0%, #010305 37%, rgba(1, 3, 5, 0.94) 42%, rgba(1, 3, 5, 0.42) 50%, rgba(1, 3, 5, 0.08) 59%, transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 45%;
  min-width: 0;
  padding: 22px 16px 22px 36px;
}

.hero h1 {
  margin: 0;
  color: #f7f7f5;
  font-family: var(--serif);
  font-size: clamp(52px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -1px;
  text-shadow: 0 2px 5px #000;
}

.hero h1 span {
  color: var(--gold);
}

.gold-rule {
  width: 38px;
  height: 2px;
  margin: 18px 0 12px;
  background: var(--gold);
}

.hero p {
  margin: 0;
  color: #f1f1f1;
  font-size: 15.5px;
  line-height: 1.55;
  text-shadow: 0 2px 6px #000;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: 150ms ease;
}

.button-primary {
  min-width: 195px;
  color: #050505;
  background: linear-gradient(90deg, #ffbf00, #ffd43d);
}

.button-primary span {
  margin-left: 12px;
  font-size: 25px;
  font-weight: 300;
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.12);
}

.button-outline {
  min-width: 215px;
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.52);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #050505;
  background: var(--gold);
}

.services-section {
  padding: 10px 43px 31px;
  background:
    radial-gradient(circle at 28% 5%, rgba(17, 38, 51, 0.35), transparent 34%),
    linear-gradient(180deg, #061015 0%, #03090d 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
  align-items: start;
  gap: 23px;
  text-align: center;
}

.heading-line {
  height: 1px;
  margin-top: 16px;
  background: var(--gold);
}

.section-heading h2 {
  margin: 0;
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.7px;
}

.section-heading p {
  margin: 2px 0 0;
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 7px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 257px;
  padding: 0 16px;
  text-align: center;
}

.service-card + .service-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.service-icon {
  width: 61px;
  height: 61px;
  margin-bottom: 3px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin: 0;
  min-height: 55px;
  color: #f2f2f1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.service-card p {
  margin: 5px 0 0;
  color: #ececeb;
  font-size: 15.5px;
  line-height: 1.52;
}

.service-card > a {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.5px;
}

.service-card > a span {
  display: inline-block;
  margin-left: 9px;
  font-size: 25px;
  line-height: 0;
  transform: translateY(2px);
  transition: transform 140ms ease;
}

.service-card > a:hover span,
.service-card > a:focus-visible span {
  transform: translate(5px, 2px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 44px;
  padding: 20px 0 23px;
  border-top: 1px solid rgba(255, 196, 0, 0.52);
  background: #03090d;
}

.trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 142px;
  padding: 3px 12px 0;
  text-align: center;
}

.trust-item + .trust-item::before {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 196, 0, 0.7);
  content: "";
}

.trust-item svg {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item > div {
  width: 100%;
}

.trust-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 5px 0 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.3px;
  overflow-wrap: normal;
}

.trust-item p {
  margin: 0;
  color: #e7e7e7;
  font-size: 11.5px;
  line-height: 1.5;
  overflow-wrap: normal;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(330px, 1fr) auto 205px;
    gap: 14px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-mark {
    margin-right: 14px;
    font-size: 50px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 6px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .header-cta {
    width: 205px;
    font-size: 14px;
  }

  .service-card {
    padding-right: 10px;
    padding-left: 10px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 13.5px;
  }

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 40px;
    padding: 9px;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--gold);
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(1, 4, 6, 0.98);
    border-bottom: 1px solid var(--gold-deep);
  }

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

  .primary-nav a {
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a.active::after {
    display: none;
  }

  .hero {
    min-height: 390px;
    max-height: none;
    aspect-ratio: auto;
  }

  .hero-visual {
    left: 43%;
  }

  .hero-art {
    opacity: 1;
    background-position: right bottom;
    background-size: contain;
  }

  .sky-slogan {
    top: 3px;
    left: 52.5%;
    width: 60%;
    height: 76px;
  }

  .hero::after {
    background: linear-gradient(90deg, #010305 0%, #010305 47%, rgba(1, 3, 5, 0.92) 53%, rgba(1, 3, 5, 0.32) 62%, transparent 72%);
  }

  .hero-copy {
    width: 50%;
    padding: 26px 22px 24px 30px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.8vw, 58px);
  }

  .hero p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .hero p br {
    display: none;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }

  .button {
    width: auto;
    min-width: 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 35px;
  }

  .service-card:nth-child(4)::before {
    display: none;
  }

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

  .trust-item:nth-child(4)::before {
    display: none;
  }

  .trust-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 196, 0, 0.35);
  }
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    min-height: 0;
    max-height: none;
    flex-direction: column;
    overflow: visible;
    aspect-ratio: auto;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    padding: 30px 28px 26px;
    background: #010305;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-visual {
    position: relative;
    z-index: 0;
    order: 2;
    inset: auto;
    width: 100%;
    height: 280px;
  }

  .hero-art {
    position: absolute;
    inset: 0;
    background-position: right bottom;
    background-size: contain;
  }

  .sky-slogan {
    top: 2px;
    left: 52.5%;
    width: min(64%, 500px);
    height: 72px;
  }

  .hero::after {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3)::before,
  .service-card:nth-child(5)::before {
    display: none;
  }

  .service-card:nth-child(4)::before {
    display: block;
  }

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

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 196, 0, 0.35);
  }

  .trust-item:nth-child(3)::before,
  .trust-item:nth-child(5)::before {
    display: none;
  }

  .trust-item:nth-child(4)::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0 15px;
  }

  .brand-mark {
    margin-right: 10px;
    font-size: 42px;
    letter-spacing: -6px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .brand-tagline {
    margin-top: 8px;
    font-size: 8.5px;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    height: 220px;
  }

  .hero-art {
    background-position: right bottom;
    background-size: contain;
  }

  .sky-slogan {
    top: 1px;
    left: 52.5%;
    width: min(72%, 380px);
    height: 60px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 28px 22px 24px;
    background: #010305;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero p br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: min(100%, 290px);
  }

  .services-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .heading-line {
    display: none;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .section-heading p {
    font-size: 17px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .service-card {
    min-height: 275px;
    padding: 18px 12px 40px;
    border-bottom: 1px solid rgba(255, 196, 0, 0.55);
  }

  .service-card + .service-card::before {
    display: none;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 0 22px;
  }

  .trust-item {
    padding: 16px 10px;
    border-top: 1px solid rgba(255, 196, 0, 0.35);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .trust-item + .trust-item::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-visual {
    height: calc(48.44vw + 50px);
  }

  .hero-art {
    background-position: right bottom;
    background-size: 100% auto;
  }

  .sky-slogan {
    top: 0;
    left: 50%;
    width: min(72%, 380px);
    height: 50px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    margin-right: 7px;
    font-size: 43px;
    letter-spacing: -5px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .brand-tagline {
    font-size: 7.5px;
  }

  .hero-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 58px;
  }
}
