:root {
  --gold: #ffd700;
  --black: #111111;
  --text: #2b2b2b;
  --muted: #666666;
  --line: #e8e8e8;
  --light: #fafafa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

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

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 188px;
  height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: #7a6500;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  min-width: 286px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: var(--light);
  color: #7a6500;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border: 44px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-home {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 88px 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.2) 64%, rgba(255, 255, 255, 0) 100%),
    url("images/hero-home.png");
  background-position: center center;
  background-size: cover;
  color: var(--black);
  border-bottom: 0;
}

.hero-home::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: center;
}

.hero-home .hero-grid {
  display: block;
}

.hero-copy {
  width: min(100%, 700px);
  padding: 34px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-home .eyebrow {
  color: var(--gold);
  font-size: 0.95rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 870px;
  font-size: clamp(2.35rem, 6vw, 4.55rem);
}

.hero-home h1 {
  max-width: 760px;
  color: var(--black);
  font-size: clamp(2.55rem, 5.6vw, 4.5rem);
  line-height: 1.16;
}

.hero-home h1 span {
  color: var(--gold);
}

.hero-subtitle {
  margin: 22px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
}

.hero-home .hero-subtitle {
  color: var(--black);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
}

.lead {
  max-width: 740px;
  margin: 18px 0 0;
  color: #4f4f4f;
  font-size: 1.08rem;
}

.hero-home .lead {
  max-width: 650px;
  color: #444444;
  font-size: 1.12rem;
}

.hero-panel {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-width: 360px;
  margin-bottom: 30px;
}

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

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.hero-panel li::before,
.check-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-secondary {
  background: var(--white);
}

.hero-home .btn {
  min-width: 168px;
  min-height: 58px;
  font-size: 1rem;
}

.hero-home .btn-primary {
  gap: 16px;
}

.hero-home .btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
  border-color: var(--gold);
}

.hero-home .btn-secondary:hover {
  background: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.section {
  padding: 78px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.section-title {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  margin: 12px 0 0;
  color: #555555;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.industry-chip {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.industry-chip:hover {
  border-color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 700;
}

.cta {
  padding: 70px 0;
  background: var(--light);
  color: var(--black);
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta p {
  color: #555555;
  margin: 12px 0 0;
}

.page-hero {
  padding: 78px 0 58px;
  background: var(--light);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-hero {
  background:
    linear-gradient(120deg, rgba(255, 215, 0, 0.16), rgba(255, 255, 255, 0) 42%),
    var(--light);
}

.solutions-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.05), rgba(255, 215, 0, 0.16)),
    var(--white);
}

.about-story-section {
  padding-top: 86px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: stretch;
}

.about-statement {
  padding: 42px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

.about-statement .eyebrow,
.about-statement h2 {
  color: var(--white);
}

.about-statement h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.about-statement p {
  color: #e7e7e7;
}

.about-proof {
  display: grid;
  border-top: 1px solid var(--line);
}

.about-proof div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.about-proof strong {
  color: var(--gold);
  font-size: 1.7rem;
}

.about-proof span {
  color: var(--black);
  font-weight: 800;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.vision-mission article {
  padding: 38px;
}

.vision-mission article + article {
  border-left: 1px solid var(--line);
}

.vision-mission span {
  display: inline-block;
  margin-bottom: 18px;
  color: #7a6500;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vision-mission h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.vision-mission p {
  color: #555555;
}

.capability-section {
  background: var(--white);
}

.capability-rows {
  border-top: 1px solid var(--line);
}

.capability-rows article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.capability-rows strong {
  font-size: 1.05rem;
}

.capability-rows p {
  margin: 0;
  color: #555555;
}

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

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

.why-band li {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.why-band strong {
  color: var(--black);
}

.why-band span {
  color: #555555;
}

.solutions-overview {
  padding-bottom: 46px;
}

.solution-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.solution-index a {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.solution-index a:last-child {
  border-right: 0;
}

.solution-index a:hover {
  background: var(--light);
}

.solution-index span {
  color: #7a6500;
  font-size: 0.9rem;
}

.solution-block {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.solution-block-alt {
  background: var(--light);
}

.solution-block-inner {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.solution-marker {
  position: sticky;
  top: 110px;
  color: rgba(17, 17, 17, 0.12);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
}

.solution-copy h2 {
  max-width: 650px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.solution-copy p {
  max-width: 680px;
  color: #555555;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-tags span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #555555;
  font-weight: 800;
  font-size: 0.9rem;
}

.solution-deliverables {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-deliverables li {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.solution-deliverables li:last-child {
  border-bottom: 0;
}

.service-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.service-section:last-child {
  border-bottom: 0;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: #7a6500;
}

.contact-item + .contact-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 215, 0, 0.55);
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #2f6b2f;
  font-weight: 800;
}

.site-footer {
  background: var(--light);
  color: var(--black);
  border-top: 1px solid var(--line);
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: #555555;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #666666;
  font-size: 0.92rem;
}

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

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 6px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    box-shadow: none;
    border-radius: 6px;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-bottom: 8px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero-grid,
  .split,
  .about-story,
  .why-band,
  .service-content,
  .solution-block-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: 720px;
    background-position: 64% center;
  }

  .hero-home .hero-copy {
    width: min(100%, 680px);
  }

  .grid-3,
  .grid-4,
  .solution-index,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-marker {
    position: static;
  }

  .solution-index a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-index a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
    height: 52px;
  }

  .hero,
  .section {
    padding: 58px 0;
  }

  .hero-home {
    min-height: 660px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.44) 100%),
      url("images/hero-home.png");
    background-position: 64% center;
  }

  .hero-home h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-home .lead {
    font-size: 1rem;
  }

  .hero-panel {
    padding: 24px;
  }

  .button-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .vision-mission,
  .capability-rows article,
  .why-band li,
  .solution-index,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-statement,
  .vision-mission article {
    padding: 26px;
  }

  .about-proof div {
    grid-template-columns: 54px 1fr;
  }

  .vision-mission article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .solution-index a,
  .solution-index a:nth-child(odd) {
    border-right: 0;
  }

  .solution-index a {
    min-height: 96px;
  }

  .solution-block {
    padding: 44px 0;
  }

  .card,
  .form,
  .contact-card {
    padding: 22px;
  }
}
