:root {
  --bg: #07111f;
  --bg-2: #0b1b30;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f8fbff;
  --muted: #b9c6d7;
  --gold: #d8aa4c;
  --gold-2: #ffe0a0;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 170, 76, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(68, 123, 190, 0.18), transparent 32rem),
    linear-gradient(135deg, #050b14 0%, var(--bg) 48%, #101a28 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  z-index: -1;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
}

.section-padding {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 86px 0;
}

.site-header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 76, 0.16), transparent 66%);
  pointer-events: none;
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  margin: 18px auto 0;
  padding: 14px;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gold), #8b6423);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35), 0 12px 34px rgba(216, 170, 76, 0.25);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #07111f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-call {
  padding: 12px 18px;
  border-radius: 999px;
  color: #07111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 28px rgba(216, 170, 76, 0.23);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 170, 76, 0.38);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(216, 170, 76, 0.09);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.experience h2,
.coverage h2,
.owner h2,
.contact h2 {
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.hero p {
  max-width: 710px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 46px rgba(216, 170, 76, 0.24);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 170, 76, 0.22);
  border-radius: 25px;
  pointer-events: none;
}

.hero-card-glow {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(216, 170, 76, 0.2);
  filter: blur(14px);
}

.status-pill {
  position: relative;
  display: inline-flex;
  margin-bottom: 70px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #07111f;
  background: var(--gold-2);
  font-weight: 900;
}

.hero-card h2 {
  position: relative;
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-card ul {
  position: relative;
  display: grid;
  gap: 12px;
  list-style: none;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-card li span {
  color: var(--muted);
}

.hero-card li strong {
  text-align: right;
  color: var(--gold-2);
}

.trust-strip {
  width: min(100% - 32px, var(--max-width));
  margin: -38px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-strip article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.trust-strip span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.trust-strip p,
.section-heading p,
.service-card p,
.experience p,
.coverage p,
.owner p,
.contact p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.experience h2,
.coverage h2,
.owner h2,
.contact h2 {
  font-size: clamp(2.45rem, 6vw, 5rem);
}

.section-heading p {
  margin-top: 18px;
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216, 170, 76, 0.22);
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 170, 76, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.service-card .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 16px;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  line-height: 1.15;
}

.service-wide {
  grid-column: span 3;
  min-height: 170px;
}

.experience-panel,
.coverage,
.owner-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.experience-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 28px;
  padding: 34px;
}

.experience-panel p {
  margin-top: 18px;
  max-width: 720px;
}

.number-block {
  min-height: 285px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(216, 170, 76, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(216, 170, 76, 0.16), transparent 64%),
    rgba(216, 170, 76, 0.06);
}

.number-block strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(5.5rem, 12vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.number-block span {
  display: block;
  max-width: 180px;
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.coverage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 32px;
  padding: 34px;
}

.map-card {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 170, 76, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(130deg, rgba(216, 170, 76, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
}

.map-card::before {
  width: 270px;
  height: 270px;
}

.map-card::after {
  width: 390px;
  height: 390px;
}

.map-card span {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(7, 17, 31, 0.72);
  font-weight: 800;
}

.map-card span:nth-child(1) {
  top: 58px;
  left: 56px;
}

.map-card span:nth-child(2) {
  right: 44px;
  top: 48%;
}

.map-card span:nth-child(3) {
  bottom: 58px;
  left: 78px;
}

.map-card strong {
  position: relative;
  max-width: 260px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.coverage-text p,
.owner-card p,
.contact-card p {
  margin-top: 18px;
  max-width: 760px;
  font-size: 1.05rem;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.coverage-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.owner-card,
.contact-card {
  padding: 42px;
}

.owner-card {
  background:
    linear-gradient(130deg, rgba(216, 170, 76, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.07);
}

.contact-card {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(216, 170, 76, 0.22), transparent 35rem),
    rgba(255, 255, 255, 0.07);
}

.contact-card .eyebrow,
.contact-card p,
.contact-actions {
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto 96px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 900;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.floating-call span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .navbar {
    align-items: flex-start;
    border-radius: 28px;
  }

  .brand-text strong {
    max-width: 220px;
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-call {
    display: none;
  }

  .navbar.open {
    flex-wrap: wrap;
  }

  .navbar.open .nav-links,
  .navbar.open .nav-call {
    display: flex;
    width: 100%;
  }

  .navbar.open .nav-links {
    flex-direction: column;
    align-items: stretch;
    order: 4;
  }

  .navbar.open .nav-links a,
  .navbar.open .nav-call {
    text-align: center;
  }

  .navbar.open .nav-call {
    justify-content: center;
    order: 5;
  }

  .hero,
  .experience-panel,
  .coverage {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 12px;
    min-height: auto;
    padding-top: 70px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-wide {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .section-padding {
    width: min(100% - 24px, var(--max-width));
    padding: 62px 0;
  }

  .navbar {
    width: min(100% - 24px, var(--max-width));
    margin-top: 12px;
    padding: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  .brand-mark svg {
    width: 29px;
    height: 29px;
  }

  .brand-text strong {
    font-size: 0.86rem;
    max-width: 172px;
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .experience-panel,
  .coverage,
  .owner-card,
  .contact-card {
    padding: 22px;
    border-radius: 26px;
  }

  .status-pill {
    margin-bottom: 48px;
  }

  .hero-card li {
    display: grid;
  }

  .hero-card li strong {
    text-align: left;
  }

  .trust-strip,
  .service-grid {
    width: min(100% - 24px, var(--max-width));
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .service-wide {
    grid-column: span 1;
  }

  .map-card {
    min-height: 320px;
  }

  .map-card span:nth-child(1) {
    top: 32px;
    left: 26px;
  }

  .map-card span:nth-child(2) {
    right: 20px;
  }

  .map-card span:nth-child(3) {
    bottom: 32px;
    left: 32px;
  }

  .floating-call {
    right: 12px;
    left: 12px;
    justify-content: center;
    bottom: 12px;
  }

  .site-footer {
    margin-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
