:root {
  --paper-50: #FCFAF6;
  --paper-100: #F7F4EF;
  --ink-900: #0F1720;
  --slate-600: #5B6775;
  --navy-900: #0B1B2B;
  --navy-800: #10263A;
  --gold-500: #B89B5E;
  --line-200: #DED7CB;

  --font-heading: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --max-width: 1120px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-900);
  background-color: var(--paper-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-500);
}

a:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
  line-height: 1.6;
}

.text-secondary {
  color: var(--slate-600);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-align: center;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--navy-900);
  color: var(--paper-50);
  border-color: var(--navy-900);
}

.btn-primary:hover {
  background-color: var(--navy-800);
  border-color: var(--gold-500);
  color: var(--paper-50);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}


/* =========================================
   Header
   ========================================= */

.site-header {
  background-color: var(--paper-50);
  border-bottom: 1px solid var(--line-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo img {
  height: 72px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-500);
  border-bottom-color: var(--gold-500);
}

.nav-cta {
  margin-left: var(--space-sm);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--ink-900);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}


/* =========================================
   Logo Splash
   ========================================= */

.logo-splash {
  background-color: var(--navy-900);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-splash::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 155, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.logo-splash-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.logo-diamond {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold-500);
  transform: rotate(45deg);
  position: relative;
}

.logo-diamond::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 155, 94, 0.4);
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.logo-divider {
  width: 64px;
  height: 2px;
  background-color: var(--gold-500);
  margin: 0 auto var(--space-md);
}

.logo-fullname {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: rgba(252, 250, 246, 0.85);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.logo-descriptor {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}


/* =========================================
   Hero
   ========================================= */

.hero {
  background-color: var(--paper-50);
  padding: var(--space-xl) 0 var(--space-2xl);
  text-align: center;
  border-bottom: 1px solid var(--line-200);
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto var(--space-md);
}

.hero .subhead {
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


/* =========================================
   Section shared
   ========================================= */

.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background-color: var(--paper-50);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header p {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  color: var(--slate-600);
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold-500);
  margin: var(--space-sm) auto 0;
  border: none;
}


/* =========================================
   Services cards
   ========================================= */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.services-grid > * {
  flex: 0 0 calc((100% - var(--space-md) * 2) / 3);
}

.service-card {
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--gold-500);
}

.service-card .card-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  display: block;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* =========================================
   Process / How we work
   ========================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.process-step {
  text-align: center;
  padding: var(--space-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  margin-bottom: var(--space-xs);
}

.process-step p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* =========================================
   Proof / Case studies
   ========================================= */

.proof-carousel {
  position: relative;
  overflow: hidden;
}

.proof-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proof-slide {
  flex: 0 0 calc(33.333% - var(--space-md) * 2 / 3);
  margin-right: var(--space-md);
  min-width: 0;
}

.proof-slide:last-child {
  margin-right: 0;
}

.proof-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.proof-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-200);
  background: var(--paper-50);
  color: var(--navy-700);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.proof-arrow:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.proof-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--paper-50);
  color: var(--navy-700);
  border-color: var(--line-200);
}

.proof-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-200);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.proof-dot.is-active {
  background: var(--navy-900);
  transform: scale(1.25);
}

.proof-card {
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  background-color: var(--paper-50);
}

.proof-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-xs);
  display: block;
}

.proof-card h3 {
  margin-bottom: var(--space-sm);
}

.proof-card .outcome {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy-900);
  margin-bottom: var(--space-xs);
}

.proof-card p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* =========================================
   Insights
   ========================================= */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.insight-card {
  border-bottom: 1px solid var(--line-200);
  padding-bottom: var(--space-md);
}

.insight-card .meta {
  font-size: 0.8125rem;
  color: var(--slate-600);
  margin-bottom: var(--space-xs);
}

.insight-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.insight-card h3 a {
  color: var(--ink-900);
}

.insight-card h3 a:hover {
  color: var(--gold-500);
}

.insight-card p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}


/* =========================================
   Contact strip
   ========================================= */

.contact-strip {
  background-color: var(--navy-900);
  color: var(--paper-50);
  padding: var(--space-xl) 0;
}

.contact-strip h2 {
  color: var(--paper-50);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: rgba(252, 250, 246, 0.7);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.contact-info a {
  color: var(--gold-500);
}

.contact-info a:hover {
  color: var(--paper-50);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}


/* =========================================
   Forms
   ========================================= */

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--paper-50);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-900);
  background-color: var(--paper-50);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.page-form .form-group label {
  color: var(--ink-900);
}

.page-form .form-group input,
.page-form .form-group textarea,
.page-form .form-group select {
  background-color: var(--paper-50);
}

.honeypot {
  display: none;
}


/* =========================================
   Footer
   ========================================= */

.site-footer {
  background-color: var(--navy-900);
  color: rgba(252, 250, 246, 0.6);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(184, 155, 94, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--paper-50);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a {
  color: rgba(252, 250, 246, 0.6);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(252, 250, 246, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  color: rgba(252, 250, 246, 0.6);
}

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


/* =========================================
   Clients / Logos
   ========================================= */

.clients-section {
  background-color: var(--paper-50);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg) var(--space-md);
  align-items: center;
  justify-items: center;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: var(--space-xs);
  filter: grayscale(100%);
  opacity: 0.6;
  transform: scale(1);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.35s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.12);
}

.client-logo img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}

.client-name {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy-700);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease 0.05s, transform 0.5s ease 0.05s;
  text-align: center;
  white-space: nowrap;
}

.client-logo:hover .client-name {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   Page header (inner pages)
   ========================================= */

.page-hero {
  background-color: var(--navy-900);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 155, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero .page-diamond {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.page-hero .page-diamond-shape {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold-500);
  transform: rotate(45deg);
  position: relative;
}

.page-hero .page-diamond-shape::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(184, 155, 94, 0.4);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.page-hero .page-hero-divider {
  width: 64px;
  height: 2px;
  background-color: var(--gold-500);
  margin: 0 auto var(--space-md);
}

.page-hero p {
  color: rgba(252, 250, 246, 0.7);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}


/* =========================================
   Services detail page
   ========================================= */

.service-detail {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--line-200);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.service-detail .detail-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
  display: block;
}

.service-detail h2 {
  font-size: 1.625rem;
}

.service-detail-body p {
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.service-detail-body ul {
  list-style: none;
  margin-top: var(--space-sm);
}

.service-detail-body li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--slate-600);
  font-size: 0.9375rem;
}

.service-detail-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background-color: var(--gold-500);
}


/* =========================================
   About page
   ========================================= */

.about-section {
  padding: var(--space-xl) 0;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
}

.value-item h3 {
  margin-bottom: var(--space-xs);
}

.value-item p {
  color: var(--slate-600);
  font-size: 0.9375rem;
}


/* =========================================
   Contact page
   ========================================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.contact-page-info h2 {
  margin-bottom: var(--space-md);
}

.contact-page-info p {
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.contact-page-info a {
  color: var(--gold-500);
}

.response-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  background-color: var(--paper-50);
}

.response-note h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.response-note p {
  font-size: 0.9375rem;
}


/* =========================================
   Responsive
   ========================================= */

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid > * {
    flex: 0 0 calc((100% - var(--space-md)) / 2);
  }

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

  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  .logo-wordmark {
    font-size: 2.75rem;
    letter-spacing: 0.25em;
  }

  .logo-fullname {
    font-size: 1.0625rem;
  }

  .logo-splash {
    padding: var(--space-xl) var(--space-md);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--paper-50);
    border-bottom: 1px solid var(--line-200);
    padding: var(--space-md);
    flex-direction: column;
    gap: 0;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--line-200);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: var(--space-xl) 0;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .services-grid > * {
    flex: 0 0 100%;
  }

  .insights-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .proof-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }

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

  .page-hero h1 {
    font-size: 2.75rem;
    letter-spacing: 0.25em;
  }

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

  .contact-strip-inner,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }

  .logo-wordmark {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }

  .logo-fullname {
    font-size: 0.9375rem;
  }

  .logo-diamond,
  .page-diamond-shape {
    width: 36px;
    height: 36px;
  }

  .page-hero h1 {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }

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

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}
