:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.12);
  --text: #f8f5ef;
  --muted: rgba(248,245,239,0.74);
  --gold: #d6aa5d;
  --gold-soft: rgba(214,170,93,0.18);
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214,170,93,0.09), transparent 30%),
    radial-gradient(circle at left center, rgba(214,170,93,0.05), transparent 25%),
    linear-gradient(180deg, #060606, #0c0c0c 35%, #090909 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-dark {
  background: rgba(255,255,255,0.02);
}

.section-divider {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(6,6,6,0.82);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}

.brand img {
  height: clamp(72px, 10vw, 120px);
  width: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.header-email {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.header-email:hover {
  color: var(--text);
}

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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


/* =========================
   HERO
   ========================= */

.hero {
  padding-top: 94px;
  padding-bottom: 94px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  margin: 0 0 14px;
}

.hero h1,
.section-heading h2,
.contact-grid h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  max-width: 8ch;
}

.lead {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.1rem;
  margin-top: 22px;
}

.hero-note {
  color: var(--gold);
  font-size: 1.15rem;
  margin-top: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

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

.button-primary {
  background: var(--gold);
  color: #1a1510;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.full-width {
  width: 100%;
}


/* =========================
   CARDS
   ========================= */

.card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.03)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-glow {
  background:
    radial-gradient(
      circle at top right,
      rgba(214,170,93,0.12),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );
}

.hero-panel-header,
.column-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
}

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}


/* =========================
   SECTION HEADINGS
   ========================= */

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

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.contact-grid h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.contact-grid p {
  color: var(--muted);
  margin-top: 16px;
}


/* =========================
   HOW WE WORK
   ========================= */

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.flow-card {
  min-height: 260px;
}

.flow-card-featured {
  background:
    radial-gradient(
      circle at top center,
      rgba(214,170,93,0.18),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.04)
    );
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(214,170,93,0.35);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.flow-card h3,
.industry-card h3,
.service-card h4 {
  margin: 0 0 10px;
}

.flow-card p,
.industry-card p,
.service-card p,
.contact-card p {
  color: var(--muted);
  margin: 0;
}

.flow-arrow {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
}


/* =========================
   INDUSTRIES
   ========================= */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.industry-card {
  min-height: 170px;
}


/* =========================
   SERVICES
   ========================= */

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  min-height: 154px;
}


/* =========================
   VALUES + CONTACT
   ========================= */

.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--gold);
}

.contact-email {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.95rem, 2vw, 1.45rem);
  font-weight: 700;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-email:hover {
  color: var(--gold);
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 42px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: clamp(60px, 7vw, 88px);
  width: auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1120px) {

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

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

  .flow-arrow {
    display: none;
  }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 860px) {

  .nav-wrap {
    padding: 16px 0;
    gap: 16px;
  }

  .header-right {
    align-items: flex-end;
  }

  .header-email {
    font-size: clamp(0.72rem, 3vw, 0.88rem);
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .service-columns,
  .values-grid,
  .contact-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: clamp(62px, 12vw, 84px);
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contact-email {
    font-size: clamp(0.9rem, 4.5vw, 1.3rem);
  }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 520px) {

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    gap: 10px;
  }

  .brand img {
    height: 58px;
  }

  .header-email {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .contact-card {
    padding: 20px 14px;
  }

  .contact-email {
    font-size: clamp(0.78rem, 4.1vw, 1rem);
    white-space: nowrap;
  }
}