:root {
  --pico-font-family: "Montserrat", Arial, Helvetica, sans-serif;
  --pico-primary: #c5a028;
  --pico-primary-hover: #e2bd45;
  --pico-primary-background: #c5a028;
  --pico-primary-border: #c5a028;
  --pico-border-radius: 0;
  --black: #000000;
  --black-soft: #08090b;
  --gold: #c5a028;
  --gold-bright: #e2bd45;
  --gray: #a5a5a5;
  --white: #f5f5f2;
  --line: rgba(197, 160, 40, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
}

body,
p,
li,
a {
  letter-spacing: 0;
}

a {
  color: var(--gold-bright);
}

strong {
  color: var(--gold-bright);
  font-weight: 800;
}

.container {
  width: min(1040px, calc(100% - 2rem));
}

.hero {
  min-height: 88vh;
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.82)),
    url("assets/Lebaku-Enterprises-Banner-Tech.png") center / cover;
  filter: blur(2px);
  opacity: 0.7;
  transform: scale(1.02);
}

.top-nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  font-family: "Syncopate", var(--pico-font-family);
  font-size: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  color: var(--black);
  background: var(--gold);
  border: 3px solid var(--gold);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta:hover,
.primary-cta:hover {
  color: var(--black);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.hero-content {
  max-width: 740px;
  padding: 7rem 0 6rem;
}

.kicker {
  margin-bottom: 0.85rem;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--white);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: "Syncopate", var(--pico-font-family);
  max-width: 100%;
  line-height: 1;
}

.brand-title {
  display: grid;
  gap: 0.18em;
}

.brand-title span {
  display: block;
  font-size: clamp(2.25rem, 8vw, 5.2rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.brand-title span:last-child {
  font-size: clamp(1.55rem, 5.5vw, 3.55rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.tagline {
  margin: 1rem 0;
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

.intro-copy,
.appointment p,
.statement p,
article p,
footer p {
  color: #d5d5d0;
}

.intro-copy {
  max-width: 610px;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

.services,
.appointment {
  padding: 5rem 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.75rem;
}

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

article {
  margin: 0;
  padding: 1.3rem;
  background: var(--black-soft);
  border: 3px solid var(--line);
  box-shadow: none;
}

article span {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--gold-bright);
  font-family: "Syncopate", var(--pico-font-family);
  font-size: 1.2rem;
  font-weight: 700;
}

.statement {
  padding: 4rem 0;
  background: #0d0d0c;
  border-top: 3px solid rgba(165, 165, 165, 0.45);
  border-bottom: 3px solid rgba(165, 165, 165, 0.45);
}

.statement-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.statement img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 4px solid var(--gold);
}

.appointment {
  max-width: 760px;
  text-align: center;
}

.appointment .primary-cta {
  margin-top: 0.8rem;
}

footer {
  padding: 2rem 0;
  background: #050505;
  border-top: 4px solid var(--gold);
}

.footer-inner {
  display: grid;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(165, 165, 165, 0.72);
  font-size: 0.9rem;
}

.footer-inner strong {
  color: rgba(226, 189, 69, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a,
.back-link {
  color: rgba(226, 189, 69, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.back-link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.simple-page {
  min-height: 100vh;
  background: var(--black);
}

.policy-page {
  max-width: 780px;
  padding: 4rem 0;
}

.policy-page h1 {
  margin-top: 1rem;
  font-family: "Syncopate", var(--pico-font-family);
  font-size: clamp(2rem, 6vw, 4rem);
}

.policy-page p {
  color: #d5d5d0;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .service-list,
  .statement-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    align-items: flex-start;
  }

  .brand span {
    max-width: 13rem;
    line-height: 1.3;
  }

  .nav-cta,
  .primary-cta {
    width: 100%;
  }

  .top-nav .nav-cta {
    display: none;
  }
}
