/* ===== Karlosan Design System ===== */
:root {
  /* Baby blue & white palette */
  --paper: #FFFFFF;
  --cream: #EAF3FC;
  --cream-deep: #D8E8F8;
  --sand: #B8D2EC;
  --rule: #CADCEF;
  --ochre: #7BB0E0;
  --terra: #2F6BB8;
  --terra-deep: #163B73;
  --olive: #4D6A8A;
  --ink: #0E2540;
  --ink-soft: #2A4566;
  --ink-mute: #6F839E;

  /* Typography */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Manrope", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Sizing */
  --container: 1360px;
  --gutter: 32px;
  --radius-sm: 4px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Type */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink-mute);
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 7vw, 132px); }
h2 { font-size: clamp(40px, 4.4vw, 78px); }
h3 { font-size: clamp(28px, 2.6vw, 44px); }
h4 { font-size: clamp(20px, 1.4vw, 26px); }
p { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.3vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 62ch; }
em, .italic { font-style: italic; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }
.section-pad { padding: clamp(80px, 9vw, 160px) 0; }
.section-pad-sm { padding: clamp(48px, 5vw, 96px) 0; }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: rgba(14, 37, 64, 0.08); }
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--ochre), var(--terra) 65%, var(--terra-deep));
  box-shadow: inset 0 0 0 1px rgba(14, 37, 64, 0.12);
  flex-shrink: 0;
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--terra);
}
.nav-sectors-wrap { position: relative; }
.nav-sectors-wrap .chev { font-size: 9px; margin-left: 4px; color: var(--ink-mute); }
.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--paper);
  border: 1px solid rgba(14, 37, 64, 0.1);
  border-radius: var(--radius);
  padding: 12px;
  width: 640px;
  box-shadow: 0 30px 60px -30px rgba(14, 37, 64, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.nav-sectors-wrap:hover .nav-mega,
.nav-sectors-wrap:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-mega__inner { display: contents; }
.nav-mega__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink) !important;
  transition: background .15s ease;
}
.nav-mega__item:hover { background: var(--cream); }
.nav-mega__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
}
.nav-mega__item.is-active { background: var(--cream); }
.nav-mega__item.is-active .nav-mega__num { color: var(--terra); }

.nav-divider {
  width: 1px; height: 22px;
  background: rgba(14, 37, 64, 0.14);
  margin: 0 10px;
}
.lang-toggle {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: transparent;
  border: 1px solid rgba(14, 37, 64, 0.16);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.lang-toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}
.btn-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, background .15s ease;
}
.btn-cta:hover { background: var(--terra); }
.btn-cta:hover .arrow { transform: translateX(3px); }
.arrow { transition: transform .2s ease; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost:hover { color: var(--terra); border-bottom-color: var(--terra); }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 90px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(123, 176, 224, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 30%, rgba(47, 107, 184, 0.10), transparent 50%),
    var(--paper);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.hero__title {
  font-size: clamp(64px, 9.5vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero__title em {
  color: var(--terra);
  font-style: italic;
  font-weight: 400;
}
.hero__sub-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 40px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero__sub-row { grid-template-columns: 1fr; gap: 32px; }
}
.hero__lead {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(14, 37, 64, 0.14);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat__num em { color: var(--terra); font-style: italic; }
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* World map */
.worldmap-wrap {
  position: relative;
  margin-top: clamp(40px, 6vw, 100px);
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.worldmap-wrap svg { width: 100%; height: auto; display: block; }
.worldmap-dot { fill: rgba(14, 37, 64, 0.18); }
.worldmap-hub { fill: var(--terra); }
.worldmap-hub-ring {
  fill: none;
  stroke: var(--terra);
  stroke-width: 1;
  opacity: 0.4;
  transform-origin: center;
  transform-box: fill-box;
  animation: hubpulse 3s ease-out infinite;
}
@keyframes hubpulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}
.worldmap-route {
  fill: none;
  stroke: var(--terra);
  stroke-width: 1.2;
  stroke-dasharray: 3 4;
  opacity: 0.5;
}
.worldmap-route--solid {
  stroke-dasharray: none;
  opacity: 0.7;
  stroke-width: 1.4;
}
.worldmap-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--ink-soft);
  letter-spacing: 0.06em;
}

/* ============== Sectors grid ============== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1000px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .sectors-grid { grid-template-columns: 1fr; } }
.sector-card {
  background: var(--paper);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: background .25s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.sector-card:hover { background: var(--cream); }
.sector-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.sector-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.02;
  color: var(--ink);
  margin-top: auto;
}
.sector-card__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 32ch;
}
.sector-card__cta {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sector-card__cta .arrow { transition: transform .2s ease; }
.sector-card:hover .sector-card__cta .arrow { transform: translateX(4px); }

/* Sector icon (top-right ornament) */
.sector-card__icon {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 36px;
  height: 36px;
  color: var(--terra);
  opacity: 0.85;
}

/* ============== Section: Capabilities (two-col) ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split__head h2 { font-size: clamp(42px, 5vw, 84px); line-height: 1; }

/* ============== Brands ============== */
.brands {
  background: var(--cream);
  padding: clamp(72px, 8vw, 130px) 0;
}
.brands__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(14, 37, 64, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -20px rgba(14, 37, 64, 0.3); }
.brand-card--feature { grid-column: span 6; min-height: 380px; padding: 40px; }
.brand-card--standard { grid-column: span 4; }
.brand-card--small { grid-column: span 3; min-height: 180px; padding: 24px; }
@media (max-width: 900px) {
  .brand-card--feature, .brand-card--standard, .brand-card--small { grid-column: span 6; }
}
@media (max-width: 560px) {
  .brand-card--feature, .brand-card--standard, .brand-card--small { grid-column: span 12; }
}
.brand-card__logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-card--feature .brand-card__logo { font-size: 56px; }
.brand-card__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.brand-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: auto;
  line-height: 1.5;
}
.brand-card__url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--terra);
  letter-spacing: 0.04em;
}
.brand-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  filter: saturate(0.7);
}
.brand-card--feature .brand-card__bg { opacity: 0.32; }
.brand-card > *:not(.brand-card__bg) { position: relative; z-index: 1; }

/* ============== Global presence ============== */
.global-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 700px) { .global-strip { grid-template-columns: repeat(2, 1fr); } }
.global-strip__cell {
  padding: 28px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.global-strip__cell:last-child { border-right: none; }
@media (max-width: 700px) {
  .global-strip__cell:nth-child(2n) { border-right: none; }
  .global-strip__cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
.global-strip__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
}
.global-strip__num em { color: var(--terra); font-style: italic; }
.global-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============== Story / about teaser ============== */
.story {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 9vw, 140px) 0;
}
.story h2 { color: var(--paper); }
.story em { color: var(--ochre); font-style: italic; }
.story .lead { color: rgba(255, 255, 255, 0.75); }
.story .btn-ghost { color: var(--paper); border-bottom-color: var(--paper); }
.story .btn-ghost:hover { color: var(--ochre); border-bottom-color: var(--ochre); }

/* ============== Contact CTA ============== */
.cta-block {
  padding: clamp(80px, 9vw, 140px) 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(123, 176, 224, 0.22), transparent 55%),
    var(--cream-deep);
  text-align: center;
}
.cta-block h2 {
  font-size: clamp(48px, 6vw, 96px);
  max-width: 18ch;
  margin: 0 auto;
}
.cta-block em { color: var(--terra); font-style: italic; }
.cta-block__actions {
  margin-top: 36px;
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============== Footer ============== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.85); }
.footer-grid a:hover { color: var(--ochre); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--paper);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-tag {
  color: rgba(255, 255, 255, 0.6);
  max-width: 36ch;
  line-height: 1.5;
}
.footer-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

/* ============== Sector page hero ============== */
.sector-hero {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0 clamp(40px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(123, 176, 224, 0.18), transparent 50%),
    var(--paper);
}
.sector-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 40px;
}
.sector-hero__breadcrumb a { color: var(--ink-mute); }
.sector-hero__breadcrumb a:hover { color: var(--ink); }
.sector-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
@media (max-width: 900px) { .sector-hero__grid { grid-template-columns: 1fr; gap: 40px; } }
.sector-hero__num {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  color: var(--terra);
  font-style: italic;
}
.sector-hero__title {
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 1;
}
.sector-hero__title em { color: var(--terra); font-style: italic; }
.sector-hero__lead {
  margin-top: 24px;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* Sector image strip */
.image-strip {
  margin-top: clamp(48px, 5vw, 80px);
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 37, 64, 0.32));
  pointer-events: none;
}
.image-strip__caption {
  position: absolute;
  left: 28px; bottom: 24px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-cell {
  padding: 36px 32px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.cap-cell:nth-child(2n) { border-right: none; }
@media (max-width: 700px) { .cap-cell { border-right: none; } }
.cap-cell__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--terra);
  margin-bottom: 16px;
}
.cap-cell h3 {
  font-size: clamp(22px, 1.8vw, 30px);
  margin-bottom: 12px;
}
.cap-cell p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Sub-sector / related band */
.related {
  background: var(--cream);
  padding: clamp(60px, 7vw, 120px) 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.related-card:hover { background: var(--paper); transform: translateY(-2px); }
.related-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Utility */
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none; } }

.divider {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 0;
}

/* Page intro (for static pages: about, contact, brands listing) */
.page-intro {
  padding: clamp(60px, 7vw, 120px) 0 clamp(40px, 4vw, 70px);
  background: var(--paper);
}
.page-intro__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 40px;
}
.page-intro__breadcrumb a:hover { color: var(--ink); }
.page-intro h1 {
  font-size: clamp(56px, 7vw, 132px);
  line-height: 1;
  max-width: 14ch;
}
.page-intro__lead {
  margin-top: 24px;
  font-size: clamp(17px, 1.3vw, 22px);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__item {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.2;
  color: var(--ink);
}
.contact-info__value a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream);
  padding: clamp(28px, 3vw, 48px);
  border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.field input, .field textarea, .field select {
  font: inherit;
  background: var(--paper);
  border: 1px solid rgba(14, 37, 64, 0.12);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terra);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
