:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --body: #3a3a3a;
  --gold: #ffd700;
  --bright-gold: #ffff00;
  --sand: #fff9e6;
  --paper: #f5f5f0;
  --line: rgba(10, 10, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

img {
  max-width: 100%;
}

.font-serif {
  font-family: "Libre Baskerville", Georgia, serif;
}

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

.bg-sand {
  background: var(--sand);
}

.text-gold {
  color: var(--gold);
}

.container-xl {
  max-width: 1280px;
  padding-right: 52px;
  padding-left: 52px;
}

.site-header {
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 215, 0, 0.08);
}

.header-inner {
  min-height: 104px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand-logo img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.primary-nav {
  gap: 2rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 0.25s ease;
}

.primary-nav a:hover,
.mobile-panel a:hover {
  color: #fff;
}

.primary-nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
}

.mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 33, 27, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.mobile-panel nav {
  gap: 1rem;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-section {
  min-height: 760px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.72) 38%, rgba(10, 10, 10, 0.28) 72%, rgba(10, 10, 10, 0.12) 100%);
}

.hero-content {
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 0;
}

.hero-copy-wrap {
  max-width: 900px;
}

.eyebrow,
.section-label,
.pillar-title,
.approach-number,
.contact-list span,
.site-footer p,
.form-label {
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
}

.hero-title {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  line-height: 1.78;
}

.cta-row {
  margin-top: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-primary {
  border-color: var(--bright-gold);
  background: var(--bright-gold);
  color: #000;
}

.hero-cta-primary:hover {
  background: #e6e600;
}

.hero-cta-secondary {
  background: transparent;
  color: #fff;
}

.hero-cta-secondary:hover {
  background: #fff;
  color: #10211b;
}

.hero-note {
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.pillars-section {
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  border-color: rgba(255, 255, 255, 0.1);
}

.pillar-item {
  min-height: 134px;
  padding: 2rem;
}

.pillar-item + .pillar-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-title {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
}

.pillar-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.7;
}

.section-pad {
  padding: 7rem 0;
}

.section-label {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.section-rule {
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 1.25rem;
  background: var(--gold);
}

.section-title {
  max-width: 680px;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.body-copy {
  max-width: 690px;
  margin-top: 1.75rem;
  margin-bottom: 0;
  color: var(--body);
  font-size: 1rem;
  line-height: 2;
}

.about-quote {
  margin: 2.5rem 0 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
  color: #000;
  font-size: 1.25rem;
  line-height: 1.6;
}

.about-image-wrap {
  min-height: 420px;
  height: 100%;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gold-block {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 96px;
  background: var(--gold);
}

.section-intro {
  max-width: 760px;
}

.sector-grid {
  margin-top: 3.5rem;
}

.service-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.service-image {
  height: 288px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.75rem;
}

.service-meta {
  margin-bottom: 1.25rem;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.service-meta i {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  color: var(--body);
  font-size: 0.875rem;
  line-height: 1.85;
}

.approach-grid {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-number {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
}

.approach-grid h3 {
  margin-top: 1.25rem;
  color: #fff;
  font-size: 1.5rem;
}

.approach-grid p:not(.approach-number) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
  line-height: 1.85;
}

.contact-list {
  margin-top: 2rem;
}

.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-list i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
}

.contact-list span {
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.contact-form {
  padding: 2rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(10, 10, 10, 0.14);
}

.form-label {
  margin-bottom: 0.5rem;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.form-control {
  min-height: 50px;
  border: 1px solid #e6d9cc;
  border-radius: 0.25rem;
  background: var(--sand);
  color: #000;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.2);
}

.submit-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
  background: var(--ink-2);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.site-footer p:first-child {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.24em;
}

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

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

@media (max-width: 991.98px) {
  .header-inner {
    min-height: 92px;
  }

  .container-xl {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .brand-logo img {
    height: 58px;
  }

  .hero-section,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .pillar-item + .pillar-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575.98px) {
  .header-inner {
    min-height: 84px;
  }

  .container-xl {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-logo img {
    height: 52px;
  }

  .hero-section,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    align-items: center;
    padding: 96px 1rem 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-cta {
    width: 80px;
  }

  .hero-note {
    font-size: 10px;
    line-height: 1.8;
  }

  .section-pad {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
