:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --surface-alt: #eef1f5;
  --ink: #0f2540;
  --muted: #55657a;
  --line: #d8dde4;
  --brand: #0a3d62;
  --brand-deep: #082c48;
  --brand-soft: #e5edf4;
  --accent: #b38a46;
  --shadow: 0 20px 50px rgba(10, 61, 98, 0.09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.top-strip {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
}

.top-strip p {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 62px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.hero-card h2,
.leader-main h2,
.contact-wrap h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-copy small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

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

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

.site-nav .nav-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 612px) minmax(360px, 520px);
  gap: clamp(22px, 2.4vw, 28px);
  align-items: start;
  justify-content: center;
}

.hero-copy {
  max-width: 612px;
  justify-self: end;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-text,
.section-copy p,
.service-card li,
.why-card p,
.process-card p,
.leader-main p,
.contact-wrap p,
.category-card p,
.hero-points li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card,
.service-card,
.why-card,
.process-card,
.category-card,
.leader-wrap,
.contact-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 520px;
  justify-self: start;
}

.hero-card picture {
  display: block;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card-content {
  padding: 30px;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.trust-list article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--ink);
}

.trust-list span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 84px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.section-heading h2,
.leader-main h2,
.contact-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-copy p {
  margin: 0 0 16px;
}

.service-grid,
.why-grid,
.process-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

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

.service-card,
.why-card,
.process-card,
.category-card {
  padding: 26px;
  border-radius: var(--radius-md);
}

.service-card h3,
.why-card h3,
.process-card h3,
.category-card h3,
.process-showcase h3,
.contact-box h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
}

.service-card ul,
.contact-box ul {
  margin: 0;
  padding-left: 18px;
}

.service-card li + li,
.contact-box li + li {
  margin-top: 10px;
}

.why-section {
  background: #eaeff4;
  margin-top: 84px;
  padding-bottom: 84px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industry-list span {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--ink);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.process-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.process-showcase picture,
.process-showcase img {
  display: block;
  width: 100%;
  height: 100%;
}

.process-showcase img {
  min-height: 320px;
  object-fit: cover;
}

.process-showcase-copy {
  align-self: center;
  padding: 34px;
}

.process-showcase-copy h3 {
  max-width: 22ch;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.process-showcase-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.leader-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.leader-title {
  margin: 14px 0 10px;
  color: var(--brand);
  font-weight: 700;
}

.leader-meta {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.leader-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  align-content: start;
}

.leader-list li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}

.contact-box {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.contact-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

.contact-details dd {
  margin: 0;
  color: var(--muted);
}

.placeholder {
  color: #8e9bab;
  font-style: italic;
}

.site-footer {
  margin-top: 84px;
  padding: 36px 0 24px;
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 96px;
  height: 68px;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 10px;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-disclaimer p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.64);
}

.footer-credit-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.footer-credit {
  margin: 0;
  padding: 12px 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .split-section,
  .service-grid,
  .why-grid,
  .process-grid,
  .category-grid,
  .process-showcase,
  .leader-wrap,
  .contact-wrap,
  .industry-list,
  .hero-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 860px) {
  .header-row {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 10px;
  }

  .site-nav .nav-button {
    text-align: center;
  }

  .hero {
    padding-top: 36px;
  }

  .section,
  .why-section {
    padding-top: 68px;
  }

  .why-section {
    margin-top: 68px;
    padding-bottom: 68px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-card,
  .hero-card-content,
  .service-card,
  .why-card,
  .process-card,
  .category-card,
  .process-showcase-copy,
  .leader-wrap,
  .contact-wrap {
    padding: 22px;
  }

  .hero-card {
    padding: 0;
  }

  .process-showcase img {
    min-height: 230px;
  }

  .button {
    width: 100%;
  }
}
