:root {
  --navy: #0F2D46;
  --navy-2: #143A59;
  --olive: #6B7F4D;
  --sage: #8FA8B5;
  --sand: #D6C8B1;
  --paper: #F4F2ED;
  --white: #FFFFFF;
  --ink: #162C3C;
  --muted: #61717C;
  --line: rgba(15, 45, 70, 0.16);
  --shadow: 0 24px 60px rgba(15, 45, 70, 0.10);
  --radius: 28px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

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

.section { padding: 92px 0; }
.section-muted { background: linear-gradient(180deg, var(--paper), #fff); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 260px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 650;
}

.main-nav a {
  opacity: .88;
  transition: opacity .18s ease, transform .18s ease;
}

.main-nav a:hover { opacity: 1; transform: translateY(-1px); }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}
.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;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(143, 168, 181, .30), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(107, 127, 77, .12), transparent 32%),
    linear-gradient(135deg, #fff 0%, var(--paper) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15,45,70,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15,45,70,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--navy);
  margin-bottom: 28px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--navy);
  margin-bottom: 22px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: #334756;
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 16px 30px rgba(15,45,70,.18); }
.button-secondary { color: var(--navy); background: rgba(255,255,255,.68); border: 1px solid var(--line); }

.hero-card {
  position: relative;
  padding: 42px 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,45,70,.10);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: var(--olive);
  opacity: .10;
  border-radius: 999px;
}

.hero-mark {
  width: 160px;
  opacity: .96;
  margin-bottom: 28px;
}

.hero-card h2 {
  font-family: var(--serif);
  letter-spacing: .14em;
  font-size: 36px;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.domain-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.rich-text {
  font-size: 20px;
  color: #334756;
}
.rich-text p { margin-bottom: 20px; }
.rich-text p:last-child { margin-bottom: 0; }

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.section-head-narrow { max-width: 740px; }

.value-strip-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15,45,70,.08);
  margin-bottom: 28px;
}

.value-strip-card img {
  width: 100%;
  border-radius: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.values-grid article {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--paper));
  min-height: 188px;
}

.values-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 18px;
}

.values-grid h3 { font-size: 16px; }
.values-grid p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-grid article,
.compact-workgroups article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(15,45,70,.06);
}

.audience-grid p,
.compact-workgroups p,
.workgroup-card p,
.process-list p,
.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.workgroup-grid { display: grid; gap: 18px; }
.primary-workgroups { grid-template-columns: repeat(2, 1fr); margin-bottom: 18px; }
.compact-workgroups { grid-template-columns: repeat(4, 1fr); }

.workgroup-card {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.22);
  background: var(--navy);
  color: var(--white);
  min-height: 280px;
  box-shadow: var(--shadow);
}
.workgroup-card h3 { color: var(--white); font-family: var(--serif); font-size: 34px; }
.workgroup-card p { color: rgba(255,255,255,.78); }
.workgroup-card .card-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: var(--sand);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.process-list {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-list li {
  position: relative;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.process-list span {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  color: rgba(107,127,77,.38);
  margin-bottom: 22px;
}

.contact-section { padding-bottom: 110px; }
.contact-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.78); }
.contact-panel {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.contact-domain {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: var(--white) !important;
  margin-bottom: 18px !important;
}

.contact-email-block {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--sand);
  font-weight: 800;
}

.contact-email-text {
  font-size: 18px;
  color: var(--white);
  word-break: break-word;
}

.contact-email-text span {
  color: var(--sand);
  font-weight: 700;
}

.copy-email-button {
  width: fit-content;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.copy-email-button:hover,
.copy-email-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.42);
}

.copy-email-button.is-copied {
  background: rgba(107,127,77,.55);
  border-color: rgba(255,255,255,.36);
}
.small-note { font-size: 14px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--paper);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img { width: 210px; }
.footer-inner p { color: var(--muted); font-size: 14px; margin: 0; text-align: right; }

@media (max-width: 1060px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .audience-grid, .compact-workgroups, .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 68px 0; }
  .brand img { width: 210px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav.is-open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid, .two-column, .contact-card { grid-template-columns: 1fr; gap: 30px; }
  .hero-card { padding: 30px; }
  .primary-workgroups { grid-template-columns: 1fr; }
  .workgroup-card h3 { font-size: 30px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner p { text-align: left; }
}

@media (max-width: 560px) {
  .values-grid, .audience-grid, .compact-workgroups, .process-list { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .value-strip-card { overflow-x: auto; }
  .value-strip-card img { min-width: 780px; }
  .contact-card { padding: 30px 22px; }
}
