/* Windsor Group — design tokens
   Bold, mixed-case type; the real logo files (assets/img/Windsor_icon.svg,
   Windsor_logo.svg, and their _light variants for dark backgrounds) used
   at three scales — icon, compact header lockup, full footer lockup —
   plus the logo's own ink/gold colors as the site's tokens, and its
   parallelogram silhouette reused as a small "chip" motif throughout. */

:root {
  --ink: #231f20;
  --ink-soft: #2f2a2b;
  --paper: #f9f7f2;
  --paper-dim: #efece3;
  --steel: #4a5560;
  --steel-dim: #8a93a0;
  --line: #ded9cd;
  --line-on-ink: #3d3839;
  --signal: #febf40;
  --signal-ink: #cd8901;

  --body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --max: 1200px;
  --section-pad: 104px;
}

@media (max-width: 900px) {
  :root { --section-pad: 68px; }
}
@media (max-width: 560px) {
  :root { --section-pad: 48px; }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@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; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  color: var(--signal-ink);
}
.section--ink .eyebrow { color: var(--signal); }

.section { padding: var(--section-pad) 0; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--dim { background: var(--paper-dim); }
.rule { border: none; border-top: 1px solid var(--line); margin: 0; }
.section--ink .rule { border-top-color: var(--line-on-ink); }

/* Chip — the mark's parallelogram, reused as a small bullet/marker */
.chip {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
  background: var(--signal);
  border-radius: 3px;
  transform: skewX(-16deg);
}
.crosshair { /* kept as the HTML hook name; renders as a chip now */
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
  background: var(--signal);
  border-radius: 3px;
  transform: skewX(-16deg);
}

/* ===== Brand mark + lockups (real logo files, assets/img/Windsor_*.svg) ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__header {
  display: block;
  height: 32px;
  width: auto;
  aspect-ratio: 11346 / 1970.249985;
}
.brand__logo {
  display: block;
  height: 92px;
  width: auto;
  aspect-ratio: 3202.5 / 1861.5;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.nav__link:hover { background: var(--paper-dim); }
.nav__link[aria-current="page"] { color: var(--signal-ink); background: var(--paper-dim); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 8px 16px 16px;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 14px 16px; }
  .header__actions .btn { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.btn--primary:hover { background: var(--signal-ink); border-color: var(--signal-ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.section--ink .btn--outline { color: var(--paper); border-color: var(--paper); }
.section--ink .btn--outline:hover { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Hero ===== */
.hero {
  padding: 64px 0 var(--section-pad);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero__mark {
  display: block;
  height: 74px;
  width: auto;
  aspect-ratio: 1605.75 / 1861.5;
  margin-bottom: 28px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero__eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 22px;
}
.hero h1 em { color: var(--signal); font-style: normal; }
.hero__lede {
  font-size: 18px;
  color: var(--steel-dim);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__panel {
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.hero__panel-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  color: var(--steel-dim);
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.stat {
  border-top: 2px solid var(--signal);
  padding-top: 14px;
}
.stat__num {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 46px;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  display: block;
}
.stat__num .suffix { color: var(--signal); }
.stat__label {
  font-size: 13px;
  color: var(--steel-dim);
  letter-spacing: 0.01em;
}

/* ===== Section headings ===== */
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-top: 10px; }
.section-head p { font-size: 17px; color: var(--steel); margin-top: 14px; }
.section--ink .section-head p { color: var(--steel-dim); }

/* ===== Industry cards — spaced, rounded ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 172px;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.industry-card:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-3px); }
.industry-card:hover .industry-card__go { color: var(--signal); }
.industry-card__division {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-ink);
}
.industry-card:hover .industry-card__division { color: var(--signal); }
.industry-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-top: auto; }
.industry-card p { font-size: 14px; color: var(--steel); flex: 1; }
.industry-card:hover p { color: var(--steel-dim); }
.industry-card__go {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--signal-ink);
}

/* ===== Why us list ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-md);
}
.why-item .chip { margin-top: 5px; }
.why-item p { font-size: 16px; }

/* ===== People / team ===== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 14px;
}
.people-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }
.people-card__name { font-weight: 700; letter-spacing: -0.01em; font-size: 18px; }
.people-card__role { color: var(--steel); font-size: 14px; margin-top: 4px; }

/* ===== Network strip ===== */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.partner-strip__item {
  flex: 1 1 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: var(--steel);
}

/* ===== CTA band ===== */
.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band__cell {
  padding: 36px;
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-band__cell h3 { font-size: 24px; }
.cta-band__cell p { color: var(--steel-dim); }
.section:not(.section--ink) .cta-band__cell { border-color: var(--line); }
.section:not(.section--ink) .cta-band__cell p { color: var(--steel); }

.cta-band__media {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-dim);
}
.cta-band__media svg, .cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-band__media-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
}

/* ===== Quote block ===== */
.quote-block {
  border-left: 4px solid var(--signal);
  border-radius: var(--radius-sm);
  padding: 8px 8px 8px 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.3;
}
.quote-block cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Offices list ===== */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .offices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
.office-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
}
.office-card__flag {
  display: block;
  width: 46px;
  height: 31px;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.office-card__flag svg { display: block; width: 100%; height: 100%; }
.office-card__name { font-weight: 700; letter-spacing: -0.01em; font-size: 16px; }

/* ===== Form ===== */
.form {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: var(--steel);
}
.field input, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { border-color: var(--signal); }
.form__note { font-size: 13px; color: var(--steel-dim); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--paper); }
.title-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 14px;
  margin: var(--section-pad) 0 0;
}
@media (max-width: 860px) { .title-block { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .title-block { grid-template-columns: 1fr; } }
.title-block__cell {
  padding: 26px 24px;
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-lg);
}
.title-block__label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--steel-dim);
  margin-bottom: 14px;
}
.title-block__cell .brand--full { justify-content: center; margin-bottom: 14px; }
.title-block__cell p { color: var(--steel-dim); font-size: 14px; }
.footer-links a { text-decoration: none; color: var(--paper); font-size: 14px; display: block; padding: 6px 0; }
.footer-links a:hover { color: var(--signal); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.footer-social a { color: var(--paper); text-decoration: none; font-weight: 600; font-size: 14px; }
.footer-social a:hover { color: var(--signal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 8px;
  font-size: 13px;
  color: var(--steel-dim);
}

.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;
  left: 12px;
  top: -60px;
  background: var(--signal);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ===== Page intro (About / Industries) ===== */
.page-intro { background: var(--ink); color: var(--paper); padding: 56px 0 var(--section-pad); }
.page-intro .eyebrow { margin-bottom: 14px; display: block; }
.page-intro h1 { font-size: clamp(36px, 5vw, 54px); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--steel-dim); margin-bottom: 20px; }
.breadcrumb a { text-decoration: none; color: var(--steel-dim); }
.breadcrumb a:hover { color: var(--paper); }
