:root {
  --black: #070707;
  --ink: #151515;
  --muted: #68625a;
  --gold: #b8945d;
  --gold-bright: #d8b76f;
  --cream: #f8f5ef;
  --white: #ffffff;
  --line: rgba(7, 7, 7, 0.11);
  --tech: #14c8ba;
  --shadow: 0 22px 70px rgba(7, 7, 7, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px 12px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(7, 7, 7, 0.08);
  backdrop-filter: blur(22px);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(7, 7, 7, 0.12);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 136px;
  height: 48px;
  overflow: hidden;
}

.brand img,
.site-footer img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  max-width: none;
  height: 360px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: #2b2925;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--black);
  background: rgba(184, 148, 93, 0.18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 58px;
  min-height: 100vh;
  padding: 150px 6vw 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 58vw;
  height: 58vw;
  min-width: 520px;
  min-height: 520px;
  background:
    radial-gradient(circle at 35% 35%, rgba(216, 183, 111, 0.42), transparent 34%),
    radial-gradient(circle at 62% 56%, rgba(20, 200, 186, 0.18), transparent 30%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.section-heading,
.split-copy,
.about-copy,
.contact-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  font-weight: 900;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-text,
.split-copy p,
.about-copy p,
.contact-card p,
.service-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 18px 36px rgba(7, 7, 7, 0.2);
}

.button.secondary {
  color: var(--black);
  background: rgba(184, 148, 93, 0.18);
}

.hero-visual {
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::after,
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 7, 0.38), transparent 54%);
  pointer-events: none;
}

.hero-visual img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.signal-card small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
}

.pulse {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--tech);
  box-shadow: 0 0 0 0 rgba(20, 200, 186, 0.62);
  animation: pulse 1.8s infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 6vw;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.stat {
  padding: 30px;
  background: rgba(255, 255, 255, 0.56);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.section,
.turnkey-section,
.split-section,
.contact-section {
  padding: 110px 6vw;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 285px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(7, 7, 7, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 148, 93, 0.42);
  box-shadow: 0 24px 58px rgba(7, 7, 7, 0.11);
}

.service-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.turnkey-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 200, 186, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(184, 148, 93, 0.14), transparent 36%),
    #ffffff;
}

.turnkey-section .section-heading {
  align-items: end;
}

.turnkey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.turnkey-item {
  min-height: 215px;
  padding: 24px;
  background: rgba(248, 245, 239, 0.78);
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 7, 7, 0.05);
}

.turnkey-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.turnkey-item h3::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 148, 93, 0.16);
}

.turnkey-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 52px;
  background: var(--black);
}

.image-panel {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.split-copy h2,
.split-copy p {
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translateY(-50%);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 48px;
  align-items: end;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability-strip span {
  padding: 22px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 36px;
  padding: clamp(28px, 5vw, 62px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(184, 148, 93, 0.2), transparent 36%),
    var(--black);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card p {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.contact-links a {
  min-width: 0;
  padding: 18px;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 900;
  transition: background 220ms ease, transform 220ms ease;
}

.contact-links a:hover {
  background: rgba(216, 183, 111, 0.22);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw 46px;
  color: var(--muted);
}

.site-footer img {
  position: relative;
  left: auto;
  top: auto;
  width: 118px;
  height: 44px;
  object-fit: contain;
  transform: scale(2.65);
  transform-origin: center;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(20, 200, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 200, 186, 0);
  }
}

@media (max-width: 1020px) {
  .hero,
  .split-section,
  .about,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 130px;
  }

  .hero-visual,
  .image-panel {
    min-height: 460px;
  }

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

@media (max-width: 760px) {
  .site-header {
    inset: 12px 12px auto;
    min-height: 66px;
    padding: 10px 10px 10px 16px;
  }

  .brand {
    width: 118px;
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(7, 7, 7, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(7, 7, 7, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 44px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .hero-visual,
  .image-panel {
    min-height: 380px;
    border-radius: 20px;
  }

  .stats,
  .service-grid,
  .capability-strip,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .stats {
    margin: 0 18px;
  }

  .section,
  .turnkey-section,
  .split-section,
  .contact-section {
    padding: 76px 18px;
  }

  .section-heading {
    display: block;
  }

  .service-card {
    min-height: auto;
  }

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

  .service-card span {
    margin-bottom: 34px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
