:root {
  --ink: #111111;
  --muted: #111111;
  --blue: #111111;
  --blue-dark: #111111;
  --accent: #111111;
  --warm: #f5f5f2;
  --white: #ffffff;
  --line: #dedede;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--blue-dark); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #9baab5;
  border-radius: 50%;
}
.brand-mark span { color: #111; font-size: 12px; }
.brand > span:last-child { display: flex; align-items: baseline; gap: 4px; }
.brand strong { font-family: inherit; font-size: 20px; }
.brand small { font-size: 8px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.main-nav { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 600; }
.main-nav a:hover, .language:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; }
.header-contacts { display: flex; align-items: center; gap: 7px; margin-right: 12px; }
.header-contacts a { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid #d2d2ce; border-radius: 50%; }
.header-contacts a:hover { background: #f0f0ed; }
.header-contacts svg { width: 14px; height: 14px; fill: none; stroke: #111; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.language {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: url("assets/american-landmarks-collage.png") center/cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 42%, rgba(255,255,255,.35) 72%, rgba(255,255,255,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  padding: 90px 0 150px;
}
.eyebrow, .kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow span { display: none; }
h1, h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -.7px;
}
h1 { max-width: none; margin-top: 18px; font-size: clamp(42px, 5.2vw, 68px); line-height: 1.1; }
h1 > span { display: block; white-space: nowrap; }
h1 em, h2 em { color: #111; font-style: normal; font-weight: inherit; }
.hero-content > p { max-width: 650px; margin: 25px 0 30px; color: #111; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button {
  display: inline-block;
  padding: 14px 23px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}
.button-primary { color: #111; background: transparent; border: 1px solid #111; }
.button-primary:hover { background: #f0f0ed; }
.text-link { color: #111; font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.hero-proof {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  transform: translateX(-50%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(35,67,91,.15);
}
.hero-proof div { padding: 20px 25px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: #111; font-family: inherit; font-size: 18px; }
.hero-proof span { margin-top: 3px; color: #111; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; }

/* Shared sections */
.section { width: min(1160px, calc(100% - 40px)); margin: auto; padding: 95px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 45px; }
.kicker { display: block; margin-bottom: 15px; }
h2 { font-size: clamp(38px, 4.2vw, 56px); line-height: 1.12; }
.section-heading h2 { font-size: clamp(25px, 3.7vw, 50px); white-space: nowrap; }
.section-heading > p, .contact-intro > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* Services */
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 290px; padding: 30px 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card:nth-child(3n) { border-right: 0; }
.card-number { color: #111; font-size: 11px; }
.card-icon { margin: 20px 0 18px; color: var(--accent); font-size: 18px; }
.service-card h3 { margin: 0 0 12px; color: var(--blue-dark); font-family: inherit; font-size: 21px; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.assessment-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 12px;
  color: #111;
  border: 1px solid #111;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}
.assessment-link:hover { background: #f0f0ed; }

/* Approach */
.approach { width: 100%; max-width: none; padding: 0; background: var(--warm); }
.approach-panel { width: min(1160px, calc(100% - 40px)); margin: auto; padding: 95px 0; display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: center; }
.approach-copy { padding: 0; }
.kicker-light { color: var(--accent); }
.approach-copy > p { max-width: 620px; margin: 25px 0 32px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.steps { border-top: 1px solid #d7d2ca; }
.steps > div { display: grid; grid-template-columns: 45px 1fr; padding: 15px 0; border-bottom: 1px solid #d7d2ca; }
.steps span { color: var(--accent); font-size: 12px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; }
.steps strong { display: block; color: var(--ink); font-size: 14px; }
.approach-quote {
  min-height: 390px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background: url("assets/professional-handshake.png") center 42%/cover no-repeat;
}
.approach-quote blockquote {
  width: 100%;
  margin: 0;
  padding: 20px 22px;
  color: #111;
  background: rgba(255,255,255,.9);
  font-family: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}
.seal { display: none; }

/* Contact */
.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-intro > p { max-width: 410px; margin-top: 20px; }
.quick-form { display: grid; gap: 13px; max-width: 430px; margin-top: 30px; }
.quick-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.quick-form input, .quick-form textarea { width: 100%; padding: 11px 12px; color: #111; background: #fff; border: 1px solid #cfcfca; border-radius: 2px; font: inherit; font-size: 14px; resize: vertical; }
.quick-form input:focus, .quick-form textarea:focus { outline: 2px solid #111; outline-offset: 1px; }
.quick-form button { justify-self: start; padding: 12px 18px; color: #111; background: #fff; border: 1px solid #111; border-radius: 2px; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.quick-form button:hover { background: #f0f0ed; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.contact-list a { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 14px; padding: 19px 12px; border-bottom: 1px solid var(--line); }
.contact-list a:nth-child(odd) { border-right: 1px solid var(--line); }
.contact-list a:hover { background: var(--warm); }
.contact-icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue); border: 1px solid #b9c0c5; border-radius: 50%; font-size: 13px; font-weight: 700; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.contact-list strong { margin-top: 2px; font-size: 14px; overflow-wrap: anywhere; }

/* Footer */
footer {
  padding: 35px max(20px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: 200px 1fr 2fr auto;
  align-items: center;
  gap: 30px;
  color: #111;
  background: #f1f1ef;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
footer p { margin: 0; }
.disclaimer { max-width: 520px; }

.reveal { opacity: 1; }

@media (max-width: 850px) {
  .main-nav { gap: 15px; }
  .section-heading, .contact, .approach-panel { grid-template-columns: 1fr; gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .approach-quote { min-height: 300px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-wrap { min-height: 66px; }
  .main-nav { display: none; }
  .header-contacts { gap: 4px; margin-right: 7px; }
  .header-contacts a { width: 27px; height: 27px; }
  .hero { min-height: 700px; background-position: 58% center; }
  .hero-shade { background: rgba(255,255,255,.88); }
  .hero-content { padding: 70px 0 190px; }
  h1 { font-size: clamp(25px, 8.2vw, 38px); }
  .section-heading h2 { font-size: 21px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { padding: 12px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-proof strong { font-size: 15px; }
  .section { padding: 70px 0; }
  .service-grid, .contact-list { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(3n), .service-card:nth-child(2n) { min-height: 0; border-right: 0; }
  .contact-list a:nth-child(odd) { border-right: 0; }
  .approach-panel { padding: 70px 0; }
  .approach-quote { padding: 28px; }
  footer { grid-template-columns: 1fr; padding-top: 35px; padding-bottom: 35px; }
}

/* EB-1 assessment pages */
.assessment-page { background: #f7f7f4; }
.assessment-main { width: min(900px, calc(100% - 40px)); margin: auto; padding: 70px 0 100px; }
.assessment-intro { max-width: 760px; margin-bottom: 55px; }
.assessment-intro .back-link { display: inline-block; margin-bottom: 40px; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.assessment-intro .kicker { margin-bottom: 14px; }
.assessment-intro h1 { max-width: none; margin: 0; font-size: clamp(40px, 6vw, 64px); line-height: 1.1; }
.assessment-intro > p { max-width: 700px; margin: 24px 0; font-size: 17px; }
.assessment-note { padding: 15px 18px; background: #ecece8; border-left: 2px solid #111; font-size: 13px; }
.assessment-form { display: grid; gap: 22px; }
.assessment-form fieldset { min-width: 0; margin: 0; padding: 34px; background: #fff; border: 1px solid #d7d7d2; }
.assessment-form legend { padding: 0 12px 0 0; font-size: 18px; font-weight: 700; }
.assessment-form legend span { margin-right: 12px; font-size: 12px; font-weight: 500; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.assessment-form label { display: grid; align-content: start; gap: 8px; font-size: 14px; font-weight: 600; }
.assessment-form label.full { grid-column: 1 / -1; }
.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: #111;
  background: #fafaf8;
  border: 1px solid #cfcfca;
  border-radius: 2px;
  font: inherit;
  font-weight: 400;
}
.assessment-form textarea { resize: vertical; line-height: 1.5; }
.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus { outline: 2px solid #111; outline-offset: 1px; }
.fieldset-help { max-width: 720px; margin: 0 0 25px; font-size: 14px; }
.criteria-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.criteria-list label { padding-top: 20px; border-top: 1px solid #ddd; }
.criteria-list strong { font-size: 14px; }
.criteria-list label > span { min-height: 58px; font-size: 13px; font-weight: 400; line-height: 1.5; }
.consent { display: flex !important; grid-template-columns: none; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 16px; margin-top: 2px; }
.form-submit { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.form-submit button { padding: 15px 22px; color: #fff; background: #111; border: 1px solid #111; border-radius: 2px; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.form-submit button:hover { color: #111; background: #fff; }
.form-submit p { margin: 0; font-size: 11px; }
.assessment-footer { grid-template-columns: 1fr auto; }
.assessment-footer a { text-decoration: underline; }

@media (max-width: 650px) {
  .assessment-main { padding: 45px 0 70px; }
  .assessment-intro .back-link { margin-bottom: 30px; }
  .assessment-intro h1 { font-size: 39px; }
  .assessment-form fieldset { padding: 24px 18px; }
  .form-grid, .criteria-list { grid-template-columns: 1fr; }
  .criteria-list label > span { min-height: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .assessment-footer { grid-template-columns: 1fr; }
}
