:root {
  --bg: #0a1630;
  --bg-soft: #122447;
  --panel: #132748;
  --ink: #f0f5ff;
  --muted: #b8c9ea;
  --accent: #24b0ff;
  --hot: #ff7c42;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(36, 176, 255, 0.2), transparent 35%),
    linear-gradient(160deg, #060f22, var(--bg) 50%, #07142a);
  line-height: 1.65;
}

h1,
h2,
h3,
.brand { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.01em; }

.masthead {
  width: min(1120px, 93%);
  margin: 0 auto;
  padding: 1rem 0 1.8rem;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.brand {
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 1.55rem;
}

.topnav {
  justify-self: center;
  display: flex;
  gap: 1rem;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.call-chip {
  text-decoration: none;
  color: #04152f;
  background: linear-gradient(135deg, #77d8ff, #2eb2ff);
  border-radius: 999px;
  padding: 0.58rem 0.85rem;
  font-weight: 800;
}

.menu-button {
  display: none;
  border: 1px solid rgba(196, 221, 255, 0.45);
  color: var(--ink);
  background: rgba(14, 33, 63, 0.64);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  font-weight: 800;
}

.hero-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  margin: 0.55rem 0 0.9rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 221, 255, 0.4);
  padding: 0.25rem 0.75rem;
  color: #ccdcf5;
}

.hero-copy p { color: var(--muted); }

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7rem 1.03rem;
  display: inline-block;
}

.btn-hot {
  color: #2e1205;
  background: linear-gradient(130deg, #ff9a61, var(--hot));
}

.btn-ghost {
  color: #f5f9ff;
  border: 1px solid rgba(213, 229, 255, 0.55);
}

.hero-photo-wrap img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(192, 219, 255, 0.24);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.photo-note {
  margin-top: 0.5rem;
  color: #a9bddf;
  font-size: 0.9rem;
}

.section {
  width: min(1120px, 93%);
  margin: 0 auto;
  padding: 3.8rem 0;
}

.section-head p {
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: #8baed9;
  margin-bottom: 0.45rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1;
  max-width: 18ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 0.95rem;
  margin-top: 1.3rem;
}

.service-grid article {
  background: var(--panel);
  border: 1px solid rgba(177, 208, 255, 0.24);
  border-radius: 14px;
  padding: 1.15rem;
}

.service-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 0.42rem;
}

.service-grid p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
}

.photo img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(184, 213, 255, 0.26);
}

.kicker {
  color: #8dbce2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.copy h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  line-height: 1;
  margin: 0.6rem 0 0.85rem;
}

.copy ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.copy li {
  color: var(--muted);
  padding-left: 1.3rem;
  position: relative;
}

.copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ed0ff;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.testimonials { padding-top: 2rem; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

blockquote {
  border-radius: 14px;
  background: #102341;
  border: 1px solid rgba(182, 212, 255, 0.25);
  padding: 1.1rem;
}

blockquote p { margin-bottom: 0.5rem; color: #eff6ff; }

blockquote span { color: #9dc7ee; font-weight: 700; }

.footer-cta {
  text-align: center;
  background: linear-gradient(150deg, #101f39, #0d1a31);
  border-top: 1px solid rgba(186, 216, 255, 0.2);
  padding: 3rem 1rem 3.6rem;
}

.footer-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-cta p { color: var(--muted); margin-bottom: 1rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid,
  .split { grid-template-columns: 1fr; }

  .topbar {
    grid-template-columns: auto auto auto;
  }

  .menu-button { display: inline-block; }

  .topnav {
    position: absolute;
    top: 3rem;
    right: 0;
    flex-direction: column;
    background: rgba(9, 24, 48, 0.96);
    border-radius: 12px;
    border: 1px solid rgba(170, 203, 255, 0.26);
    padding: 0.7rem;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .topnav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .call-chip { display: none; }
}
