:root {
  --bg: #070707;
  --surface: #111111;
  --surface-2: #181818;
  --text: #f5f1e8;
  --muted: #b7afa2;
  --dark-text: #16120d;
  --dark-muted: #5c5449;
  --gold: #c59b51;
  --gold-light: #f1d18d;
  --line: rgba(197, 155, 81, 0.22);
  --white: #ffffff;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f7f4ed;
  color: var(--dark-text);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--max), 92%);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 155, 81, 0.18);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 245px;
  height: 64px;
  display: flex;
  align-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(197, 155, 81, 0.48);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 155, 81, 0.4);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.34) 68%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 20% 40%, rgba(197, 155, 81, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding-top: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #9a6e28;
}

.eyebrow.gold {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 720px;
  color: rgba(245, 241, 232, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 112px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: start;
}

.section-text p,
.section-heading p,
.panel-content p,
.mission-card p,
.cta-box p {
  color: var(--dark-muted);
  font-size: 1.04rem;
  margin-top: 18px;
}

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

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

.section-heading.center .eyebrow {
  justify-content: center;
}

.image-band {
  height: clamp(360px, 55vw, 680px);
  overflow: hidden;
  background: var(--bg);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.why-card,
.value-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(154, 110, 40, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(25, 18, 10, 0.07);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #9a6e28;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3,
.why-card h3,
.value-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.why-card p,
.value-card p {
  color: var(--dark-muted);
}

.dark-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(197, 155, 81, 0.13), transparent 28%),
    linear-gradient(135deg, #050505, #14100b);
  color: var(--text);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.split-panel.light {
  background: #fffaf0;
  padding: 34px;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 22px 70px rgba(40, 27, 10, 0.08);
}

.panel-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.dark-section .panel-content p,
.dark-section .mission-card p {
  color: rgba(245, 241, 232, 0.75);
}

.check-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(245, 241, 232, 0.88);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

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

.industries-grid span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(154, 110, 40, 0.16);
  border-radius: 20px;
  color: #31271c;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(25, 18, 10, 0.05);
}

.why-section {
  background: #fffaf0;
}

.why-grid,
.values-grid,
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.mission-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.cta-section {
  padding: 105px 0;
  background:
    linear-gradient(rgba(4, 4, 4, 0.82), rgba(4, 4, 4, 0.82)),
    url("assets/hero-boardroom.jpg") center/cover;
  color: var(--text);
}

.cta-box {
  max-width: 900px;
  text-align: center;
}

.cta-box .eyebrow {
  justify-content: center;
}

.cta-box p {
  color: rgba(245, 241, 232, 0.78);
  max-width: 760px;
  margin-inline: auto;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.contact-details a,
.contact-details span {
  padding: 14px 18px;
  border: 1px solid rgba(197, 155, 81, 0.38);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(245, 241, 232, 0.78);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 60px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(197, 155, 81, 0.16);
}

.footer-grid img {
  width: 245px;
  height: 72px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin-bottom: 18px;
}

.footer-grid h4 {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  padding-top: 24px;
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.92rem;
}

.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 22% 48%, rgba(197, 155, 81, 0.18), transparent 32%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: 100px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.15rem;
}

.values-section {
  background: #f7f4ed;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1020px) {
  .cards-grid,
  .industries-grid,
  .why-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .panel-image img {
    height: 420px;
  }
}

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

  .site-nav {
    position: absolute;
    inset: 82px 0 auto 0;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid rgba(197, 155, 81, 0.18);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s ease;
  }

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

  .brand {
    width: 210px;
    height: 58px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.68));
  }

  .section {
    padding: 78px 0;
  }

  .cards-grid,
  .industries-grid,
  .why-grid,
  .values-grid,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid span {
    min-height: auto;
  }

  .split-panel.light {
    padding: 18px;
  }

  .contact-details a,
  .contact-details span {
    width: 100%;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .page-hero-content {
    padding-top: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .panel-image img {
    height: 320px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }
}
