:root {
  --gold: #ccab62;
  --gold-light: #e6c06e;
  --ink: #1b1b1b;
  --ink-soft: #232b35;
  --muted: #7b8490;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1120px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: 2px;
  background: var(--gold);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 27, 27, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding-block: 0.85rem;
  gap: 1rem;
}

.logo img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204, 171, 98, 0.16), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(35, 43, 53, 0.9), transparent 50%),
    linear-gradient(160deg, #1b1b1b 0%, #232b35 55%, #1b1b1b 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  max-width: 38rem;
  animation: rise 0.9s ease both;
}

.lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.15);
}

.about-copy p {
  color: #3a424c;
}

.logos {
  background: var(--ink-soft);
  color: var(--white);
  text-align: center;
}

.logo-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 1rem;
  align-items: center;
}

.logo-grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.logo-grid img {
  max-height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.process {
  background: var(--paper);
}

.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.steps li {
  padding: 1.5rem 1.25rem 1.5rem;
  background: var(--white);
  border-top: 3px solid var(--gold);
}

.step-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.steps p {
  margin: 0;
  color: #4a5360;
  font-size: 0.98rem;
}

.testimonials {
  background: var(--white);
}

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

.quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--paper);
}

.quote img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.quote blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: #3a424c;
}

.quote figcaption {
  display: grid;
  gap: 0.15rem;
}

.quote figcaption strong {
  color: var(--ink);
}

.quote figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(204, 171, 98, 0.18), transparent 50%),
    var(--ink);
  color: var(--white);
}

.contact-inner {
  max-width: 36rem;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-details h3 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.65);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner img {
  width: 120px;
  opacity: 0.85;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .about-grid,
  .quotes,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps li:nth-child(n + 3),
  .quotes figure:last-child {
    grid-column: span 2;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .btn {
    margin-top: 0.75rem;
    border: 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-copy {
    padding-bottom: 3rem;
  }

  .about-grid,
  .quotes,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li:nth-child(n + 3),
  .quotes figure:last-child {
    grid-column: auto;
  }

  .about-visual {
    max-width: 280px;
  }

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