/* Alexander Path — professional design system */
:root {
  --navy-950: #061a26;
  --navy-900: #0a2433;
  --navy-800: #0f3347;
  --navy-700: #164a63;
  --navy-600: #1d6280;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cc7a;
  --teal-500: #1a7a8c;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --shadow-xs: 0 1px 2px rgba(6, 26, 38, 0.04);
  --shadow-sm: 0 4px 12px rgba(6, 26, 38, 0.06);
  --shadow-md: 0 12px 32px rgba(6, 26, 38, 0.08);
  --shadow-lg: 0 24px 48px rgba(6, 26, 38, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 162, 39, 0.22);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1180px;
  --nav-h: 76px;
  --section-y: clamp(4.5rem, 8vw, 6.5rem);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-break: 992px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 3000;
  padding: 0.625rem 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

.container--narrow {
  width: min(100% - (var(--gutter) * 2), 920px);
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--slate-100);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ——— Section headers ——— */
.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate-600);
}

section {
  padding-block: var(--section-y);
}

.hero .container > *,
.about-grid > *,
.services-grid > *,
.sectors-grid > *,
.contact-grid > *,
.corridor-flow > *,
.process-steps > * {
  min-width: 0;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  padding-block: clamp(5rem, 12vw, 7.5rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(26, 122, 140, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero .btn-group {
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  padding-right: 1rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-route {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-route-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-route-item--hub {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.06));
  border-color: rgba(201, 162, 39, 0.25);
}

.hero-route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

.hero-route-item--hub .hero-route-dot {
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}

.hero-route-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.hero-route-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-route-connector {
  width: 2px;
  height: 16px;
  background: linear-gradient(var(--teal-500), var(--gold-400));
  margin-left: 1.4rem;
  opacity: 0.5;
}

/* ——— About ——— */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-highlight strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 0.2rem;
}

.about-highlight span {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  opacity: 0.12;
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ——— Services ——— */
.services-section {
  background: var(--slate-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: grid;
  place-items: center;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  flex-grow: 1;
}

/* ——— Process ——— */
.process-section {
  background: var(--white);
}

.process-explainer {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
}

.process-explainer h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.process-explainer p {
  color: var(--slate-600);
  font-size: 0.9875rem;
}

.process-explainer p + p {
  margin-top: 0.875rem;
}

.process-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s;
}

.process-card:hover {
  box-shadow: var(--shadow-sm);
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.625rem;
}

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

.process-card p + p {
  margin-top: 0.625rem;
}

.process-card ul {
  margin-top: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 0.4rem;
}

.process-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 0.8rem;
}

.process-why {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  text-align: center;
}

.process-why h3 {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}

.process-why > p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.features span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ——— Corridor ——— */
.corridor-section {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.corridor-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.corridor-node {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.corridor-node--hub {
  background: var(--navy-900);
  border-color: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.corridor-node-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.35rem;
}

.corridor-node--hub .corridor-node-label {
  color: var(--gold-300);
}

.corridor-node-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.corridor-node--hub .corridor-node-title {
  color: var(--white);
}

.corridor-node-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.country-tag {
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: var(--slate-100);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-700);
}

.corridor-node--hub .country-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.corridor-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.25rem;
  opacity: 0.7;
}

.corridor-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--slate-600);
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  max-width: 720px;
  margin-inline: auto;
}

/* ——— Sectors ——— */
.sectors-section {
  background: var(--navy-950);
  color: var(--white);
}

.sectors-section .section-eyebrow {
  color: var(--gold-400);
}

.sectors-section .section-title {
  color: var(--white);
}

.sectors-section .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sector-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.sector-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-3px);
}

.sector-photo-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.sector-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 38, 0.85));
}

.sector-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-card-body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.sector-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.sector-card ul {
  list-style: none;
}

.sector-card li {
  position: relative;
  padding-left: 0.875rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.sector-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-400);
}

.note-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  text-align: center;
}

/* ——— Contact ——— */
.contact-section {
  background: var(--slate-50);
}

.contact-section .section-title {
  color: var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--slate-100);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.contact-item > div {
  min-width: 0;
}

.contact-item span,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--navy-900);
  text-decoration: none;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--teal-500);
}

.contact-panel {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-panel > p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-actions .btn {
  width: 100%;
  justify-content: center;
}

.contact-actions .btn-primary {
  background: var(--gold-500);
}

.contact-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-phone-large {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
}

.contact-phone-large:hover {
  color: var(--gold-300);
}

.contact-phone-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.45);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-copyright {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}

/* ——— Responsive ——— */

/* Tablet landscape — stack multi-column layouts */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }

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

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

  .corridor-flow {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-inline: auto;
  }

  .corridor-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    max-width: 36rem;
    margin-inline: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-y: clamp(3.25rem, 10vw, 5rem);
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-image-wrap {
    order: -1;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }

  .about-image-wrap::before {
    inset: -8px -8px 8px 8px;
  }

  .about-image-wrap img {
    aspect-ratio: 5 / 4;
  }

  .services-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .hero-stat {
    padding-right: 0;
    text-align: center;
  }

  .hero-stat strong {
    font-size: 1.25rem;
  }

  .hero-stat span {
    font-size: 0.72rem;
  }

  .process-explainer {
    padding: 1.5rem 1.25rem;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .process-why {
    padding: 2rem 1.5rem;
    margin-top: 2.25rem;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .contact-phone-large {
    font-size: 1.25rem;
  }

  .btn-group .btn {
    flex: 1 1 auto;
    min-width: min(100%, 14rem);
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
  }

  .hero {
    padding-block: clamp(3.5rem, 14vw, 5rem);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .hero-stat {
    text-align: left;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .service-card,
  .corridor-node {
    padding: 1.375rem;
  }

  .sector-photo-wrap {
    height: 140px;
  }

  .features {
    gap: 0.5rem;
  }

  .features span {
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
  }

  .note-box,
  .corridor-note {
    padding: 1rem 1.125rem;
    font-size: 0.875rem;
  }

  .contact-item {
    padding: 1rem;
    gap: 0.875rem;
  }

  .site-footer {
    padding-block: calc(0.75rem + env(safe-area-inset-bottom, 0px)) 0.75rem;
  }

  .footer-copyright {
    font-size: 0.7rem;
    padding-inline: 0.5rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .logo-wordmark strong {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

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

  .hero h1 {
    font-size: 2rem;
  }
}

/* Large screens — cap hero visual size */
@media (min-width: 1025px) {
  .hero-visual {
    max-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
