@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  --color-primary: #17212d;
  --color-primary-soft: #24364a;
  --color-primary-muted: #5e738a;
  --color-accent: #f36a21;
  --color-accent-strong: #d95b13;
  --color-support: #c89d32;
  --color-support-soft: #f5ebcf;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f3ec;
  --color-surface-muted: #ede6dc;
  --color-bg: #f3efe8;
  --color-border: #d8d0c5;
  --color-border-strong: #bbb1a4;
  --color-text: #16202a;
  --color-text-soft: #55606d;
  --color-text-muted: #7f8790;
  --color-success: #276749;
  --shadow-sm: 0 18px 40px rgba(16, 24, 32, 0.08);
  --shadow-md: 0 24px 56px rgba(16, 24, 32, 0.12);
  --shadow-lg: 0 40px 80px rgba(10, 18, 26, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --container: 1200px;
  --transition-fast: 180ms ease;
  --transition-slow: 340ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(243, 106, 33, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, var(--color-bg) 38%, #f9f6f0 100%);
  color: var(--color-text);
  font-family: "Manrope", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.is-scrolled .site-header {
  background: rgba(248, 245, 239, 0.92);
  box-shadow: 0 10px 30px rgba(19, 30, 42, 0.08);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #ffffff;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    var(--color-surface-alt);
  border-top: 1px solid rgba(23, 33, 45, 0.06);
  border-bottom: 1px solid rgba(23, 33, 45, 0.06);
}

.section-dark {
  color: #f6f4ef;
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(94, 115, 138, 0.28), transparent 26%),
    linear-gradient(135deg, #17212d 0%, #1d2c3c 56%, #22384c 100%);
}

.section-dark .step-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .eyebrow,
.section-dark .step-card p,
.section-dark .step-card h3,
.section-dark .step-number {
  color: inherit;
}

.section-dark .metric-label {
  color: rgba(246, 244, 239, 0.72);
}

.section-dark .icon-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #f6f4ef;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-heading h2,
h1,
.split-copy h2,
.cta-band h2,
.leadership-copy h2,
.contact-sidebar h2,
.service-module-copy h2,
.achievement-panel h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: -0.03em;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.leadership-copy h2,
.contact-sidebar h2,
.achievement-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  max-width: 11.5ch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-intro,
.hero-copy p,
.page-hero-copy p,
.split-copy p,
.leadership-copy p,
.service-module-copy p,
.contact-sidebar p,
.cta-band p,
.footer-brand p,
.page-aside p,
.note,
.achievement-panel p {
  color: var(--color-text-soft);
}

.section-intro {
  max-width: 62ch;
  margin: 18px 0 0;
}

.hero-home,
.page-hero {
  padding: 2rem 0 0;
}

.hero-shell,
.page-hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(23, 33, 45, 0.08);
  border-radius: clamp(28px, 4vw, 38px);
  box-shadow: var(--shadow-md);
}

.hero-shell {
  color: #f7f5f0;
  background:
    radial-gradient(circle at top right, rgba(200, 157, 50, 0.18), transparent 26%),
    radial-gradient(circle at 12% 12%, rgba(243, 106, 33, 0.22), transparent 24%),
    linear-gradient(135deg, #17212d 0%, #203246 52%, #253f54 100%);
}

.hero-shell::before,
.page-hero-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.page-hero-shell {
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.08), transparent 24%),
    radial-gradient(circle at left top, rgba(200, 157, 50, 0.16), transparent 26%),
    linear-gradient(180deg, #fdfbf7 0%, #f3ede4 100%);
}

.page-hero-shell-dark {
  color: #f7f5f0;
  background:
    radial-gradient(circle at top right, rgba(200, 157, 50, 0.16), transparent 24%),
    radial-gradient(circle at 14% 14%, rgba(243, 106, 33, 0.18), transparent 24%),
    linear-gradient(135deg, #17212d 0%, #213448 56%, #284257 100%);
}

.page-hero-shell-dark::before {
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-grid,
.page-hero-grid,
.split-layout,
.contact-layout,
.leadership-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
}

.hero-copy,
.page-hero-copy {
  max-width: 700px;
}

.hero-copy p,
.hero-copy .eyebrow,
.page-hero-shell-dark .page-hero-copy p,
.page-hero-shell-dark .page-hero-copy .eyebrow,
.hero-proof li,
.hero-microcopy,
.showcase-card p,
.showcase-card li,
.showcase-footer p {
  color: rgba(247, 245, 240, 0.84);
}

.hero-copy .section-intro,
.page-hero-copy .section-intro {
  margin-top: 20px;
  font-size: 1.05rem;
}

.page-hero-shell-dark .page-hero-copy h1,
.page-hero-shell-dark .page-note,
.page-hero-shell-dark .page-note strong,
.page-hero-shell-dark .page-note span {
  color: #f7f5f0;
}

.page-hero-shell-dark .page-note {
  background: rgba(255, 255, 255, 0.08);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
input:focus,
textarea:focus {
  outline: 3px solid rgba(243, 106, 33, 0.24);
  outline-offset: 2px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 20px 30px rgba(243, 106, 33, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 34px rgba(243, 106, 33, 0.28);
}

.button-secondary {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(23, 33, 45, 0.14);
}

.hero-shell .button-secondary {
  color: #f7f5f0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-proof,
.inline-list,
.contact-cues,
.service-focus,
.meta-list,
.page-aside-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
}

.hero-proof li {
  position: relative;
  padding-left: 16px;
  font-size: 0.93rem;
}

.hero-proof li::before,
.inline-list li::before,
.service-focus li::before,
.page-aside-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-support);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
}

.showcase-card,
.page-aside,
.proof-card,
.stat-card,
.info-card,
.service-card,
.step-card,
.case-card,
.experience-card,
.achievement-card,
.contact-panel,
.contact-form,
.cta-band,
.quote-card,
.leadership-portrait,
.service-module,
.achievement-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(23, 33, 45, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.showcase-card {
  display: grid;
  gap: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 157, 50, 0.18), transparent 70%);
}

.showcase-header,
.showcase-columns,
.proof-strip,
.card-grid,
.metrics-grid,
.experience-strip,
.timeline-grid,
.services-grid,
.contact-cue-grid {
  display: grid;
  gap: 18px;
}

.showcase-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.brand-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

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

.showcase-kicker,
.showcase-title,
.showcase-footer strong,
.page-aside-title,
.metric-number,
.achievement-number {
  font-family: "Source Serif 4", Georgia, serif;
}

.showcase-kicker,
.page-aside .eyebrow,
.card-label,
.metric-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-title {
  margin: 10px 0 0;
  font-size: 1.9rem;
  line-height: 1.08;
}

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

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card p {
  margin: 0;
}

.showcase-footer {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.showcase-footer strong {
  font-size: 1.15rem;
  color: #ffffff;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.proof-card {
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 242, 0.96));
}

.proof-card strong,
.metric-number,
.achievement-number {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 1.85rem;
  line-height: 1.02;
}

.proof-card p,
.metric-card p,
.experience-card p,
.service-card p,
.case-card p,
.achievement-card p,
.step-card p {
  margin: 0;
  color: var(--color-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 245, 239, 0.8);
  border-bottom: 1px solid rgba(23, 33, 45, 0.06);
  backdrop-filter: blur(18px);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

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

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 28px rgba(22, 32, 42, 0.08);
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span:last-child {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

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

.site-nav a {
  position: relative;
  color: var(--color-text-soft);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--color-accent), var(--color-support));
  transition: transform var(--transition-fast);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.button-nav::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(23, 33, 45, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-weight: 800;
}

.split-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.split-copy {
  max-width: 720px;
}

.inline-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.inline-list li,
.service-focus li,
.page-aside-list li {
  position: relative;
  padding-left: 16px;
  color: var(--color-text-soft);
}

.page-aside {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(200, 157, 50, 0.18), transparent 24%),
    linear-gradient(180deg, #fdfaf4 0%, #f5efe3 100%);
}

.page-hero-shell-dark .page-aside {
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.page-aside-title {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 1.7rem;
  line-height: 1.1;
}

.page-hero-shell-dark .page-aside-title,
.page-hero-shell-dark .page-aside p,
.page-hero-shell-dark .page-aside .eyebrow,
.page-hero-shell-dark .page-aside-list li {
  color: #f7f5f0;
}

.page-aside-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quote-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f2e8 100%);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.3;
  color: var(--color-primary);
}

.quote-card p {
  margin: 16px 0 0;
}

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

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

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

.service-card,
.experience-card,
.case-card,
.achievement-card,
.metric-card,
.step-card,
.info-card,
.contact-panel,
.contact-form,
.achievement-panel {
  padding: 28px;
}

.service-card::before,
.experience-card::before,
.case-card::before,
.achievement-card::before,
.metric-card::before,
.contact-panel::before,
.service-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-support));
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(243, 106, 33, 0.12), rgba(200, 157, 50, 0.2));
  color: var(--color-primary);
}

.line-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.experience-card h3,
.case-card h3,
.achievement-card h3,
.metric-card h3,
.step-card h3,
.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--color-primary);
}

.metric-card {
  min-height: 180px;
}

.metric-label {
  margin: 0 0 8px;
  color: var(--color-primary-muted);
}

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

.experience-card {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--color-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 242, 0.95));
}

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

.achievement-card {
  min-height: 220px;
}

.achievement-number {
  color: var(--color-accent-strong);
  font-size: 2.1rem;
}

.page-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 33, 45, 0.05);
  color: var(--color-text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-note strong {
  color: var(--color-primary);
}

.leadership-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.leadership-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 233, 0.96));
}

.leadership-portrait img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center center;
}

.leadership-copy {
  padding: 12px 0;
}

.leadership-title {
  margin: 12px 0 18px;
  color: var(--color-primary-muted);
  font-weight: 800;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.meta-list li {
  padding: 16px 18px;
  border: 1px solid rgba(23, 33, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.meta-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.service-module-stack {
  display: grid;
  gap: 22px;
}

.service-module {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.service-module.alt {
  background:
    radial-gradient(circle at left top, rgba(94, 115, 138, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f3ede4 100%);
}

.service-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.service-module.alt .service-module-grid {
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
}

.service-module-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.service-focus {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-module-aside {
  display: grid;
  gap: 16px;
}

.info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.96));
}

.info-card p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-panel {
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff, #f6f0e5);
}

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

.contact-details div {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 45, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--color-primary);
  font-weight: 800;
}

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

.contact-cues li {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 45, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-soft);
}

.contact-cues strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 239, 0.98));
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(243, 106, 33, 0.1);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: var(--color-success);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--color-accent-strong);
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f5efe4 100%);
}

.cta-band .eyebrow {
  margin-bottom: 10px;
}

.site-footer {
  margin-top: clamp(4rem, 7vw, 6rem);
  color: rgba(246, 244, 239, 0.82);
  background:
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.18), transparent 28%),
    linear-gradient(135deg, #17212d 0%, #1d2d3d 54%, #22384c 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 28px;
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
}

.footer-brand .brand img,
.brand-footer img {
  background: rgba(255, 255, 255, 0.94);
}

.site-footer .brand-copy strong {
  color: #ffffff;
}

.site-footer .brand-copy span:last-child,
.site-footer h3,
.site-footer a,
.site-footer p {
  color: rgba(246, 244, 239, 0.82);
}

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

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

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

.reveal-delay {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .leadership-layout,
  .contact-layout,
  .service-module-grid,
  .service-module.alt .service-module-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .services-grid,
  .timeline-grid,
  .contact-cue-grid,
  .metrics-grid.metrics-grid-wide,
  .experience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 13ch;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(23, 33, 45, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a::after {
    display: none;
  }

  .site-nav .button-nav {
    width: 100%;
  }

  .card-grid,
  .services-grid,
  .timeline-grid,
  .metrics-grid,
  .metrics-grid.metrics-grid-wide,
  .experience-strip,
  .contact-cue-grid {
    grid-template-columns: 1fr;
  }

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

  .brand {
    min-width: 0;
  }

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

  .brand-copy strong {
    font-size: 1.25rem;
  }
}

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

  .section {
    padding: 4rem 0;
  }

  .hero-shell,
  .page-hero-shell,
  .service-card,
  .experience-card,
  .case-card,
  .achievement-card,
  .metric-card,
  .step-card,
  .info-card,
  .contact-panel,
  .contact-form,
  .cta-band,
  .quote-card,
  .leadership-portrait,
  .service-module,
  .achievement-panel {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .button,
  .button-nav {
    width: 100%;
  }

  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
  }

  .showcase-header {
    grid-template-columns: 1fr;
  }

  .page-note {
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
}
