:root {
  --ink: #101820;
  --ink-2: #17232a;
  --paper: #f8fcf8;
  --paper-2: #edf3ec;
  --muted: #6a7674;
  --cyan: #36f2ff;
  --orange: #ffb13b;
  --pink: #ff5c8a;
  --lime: #a9ff54;
  --blue: #6aa8ff;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 28px 80px rgba(6, 16, 22, 0.26);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  transform: translateX(-50%);
  background: rgba(16, 24, 32, 0.72);
  border: 1px solid rgba(248, 252, 248, 0.16);
  border-radius: 8px;
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.92);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: 194px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.92rem;
  color: rgba(248, 252, 248, 0.84);
}

.nav a,
.header-cta,
.button {
  text-decoration: none;
}

.nav a:hover {
  color: var(--cyan);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 54%, rgba(54, 242, 255, 0.2), transparent 26%),
    linear-gradient(90deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 0.84) 36%, rgba(16, 24, 32, 0.2) 72%, rgba(16, 24, 32, 0.36) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.35), rgba(16, 24, 32, 0.66));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 94px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #126a72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 540px;
  color: rgba(248, 252, 248, 0.82);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 10px 0 rgba(255, 92, 138, 0.9);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button-primary:hover {
  transform: translateY(3px);
  box-shadow: 0 7px 0 rgba(255, 92, 138, 0.9);
}

.button-secondary {
  color: var(--paper);
  border: 1px solid rgba(248, 252, 248, 0.32);
  background: rgba(248, 252, 248, 0.08);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  padding: 88px 0;
}

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

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 48px;
  align-items: end;
}

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

.service-card {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.cyan { border-top: 5px solid var(--cyan); }
.service-card.orange { border-top: 5px solid var(--orange); }
.service-card.pink { border-top: 5px solid var(--pink); }
.service-card.lime { border-top: 5px solid var(--lime); }

.minimal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.minimal-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.quote {
  padding: 96px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 15%, rgba(54, 242, 255, 0.2), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(255, 177, 59, 0.2), transparent 24%),
    var(--ink);
}

.quote-minimal {
  max-width: 760px;
}

.quote-minimal h2 {
  color: var(--paper);
}

.quote-minimal p {
  color: rgba(248, 252, 248, 0.76);
  font-size: 1.12rem;
  margin-bottom: 30px;
}

.site-footer {
  padding: 34px 0;
  background: #0b1116;
  color: rgba(248, 252, 248, 0.68);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-inner img {
  width: 172px;
}

.footer-inner p {
  max-width: 560px;
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 174px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.92) 0%, rgba(16, 24, 32, 0.82) 48%, rgba(16, 24, 32, 0.5) 100%),
      linear-gradient(90deg, rgba(16, 24, 32, 0.85), rgba(16, 24, 32, 0.34));
  }

  .hero-content {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .section-heading.split,
  .quote-minimal {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    display: grid;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 62px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta::after {
    content: "Contact";
    font-size: 0.88rem;
  }

  .hero {
    min-height: 790px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .services,
  .quote {
    padding: 72px 0;
  }
}
