:root {
  --ink: #171716;
  --ink-soft: #3a3a37;
  --olive: #63624e;
  --olive-light: #8a8969;
  --paper: #faf9f6;
  --paper-dim: #f0efe9;
  --line: #e2e0d6;
  --white: #ffffff;
  --radius: 2px;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}

p { margin: 0 0 16px; color: var(--ink-soft); }

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

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 10px;
}
.section-title.light { color: var(--white); }
.section-sub {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 17px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--olive); border-color: var(--olive); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* Utility bar */
.utility-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
  padding: 6px 0;
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #9a9a8f;
  white-space: nowrap;
  overflow: hidden;
}
.utility-bar-inner span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.utility-bar-inner span:last-child { color: var(--olive-light); flex-shrink: 0; margin-left: 16px; }
@media (max-width: 620px) {
  .utility-bar-inner span:last-child { display: none; }
}
@media (max-width: 420px) {
  .utility-bar-inner { font-size: 9.5px; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-nav a:hover { color: var(--olive); }
.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--olive) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 96px;
  background:
    radial-gradient(1100px 460px at 82% -10%, rgba(99,98,78,0.30), transparent 60%),
    var(--ink);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}
.hero-reticle {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  color: rgba(196, 62, 48, 0.55);
  filter: drop-shadow(0 0 10px rgba(196, 62, 48, 0.25));
  pointer-events: none;
}
@media (max-width: 1100px) {
  .hero-reticle { width: 320px; height: 320px; right: -80px; }
}
@media (max-width: 720px) {
  .hero-reticle { display: none; }
}
.hero-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(255,255,255,0.28);
  pointer-events: none;
}
.hero-corner.tl { top: 28px; left: 24px; border-width: 1.5px 0 0 1.5px; }
.hero-corner.tr { top: 28px; right: 24px; border-width: 1.5px 1.5px 0 0; }
.hero-corner.bl { bottom: 28px; left: 24px; border-width: 0 0 1.5px 1.5px; }
.hero-corner.br { bottom: 28px; right: 24px; border-width: 0 1.5px 1.5px 0; }
@media (max-width: 720px) {
  .hero-corner { display: none; }
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 780px; }
.hero-verse {
  margin: 0 0 26px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--olive-light);
}
.hero-verse p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: #e4e3d8;
  margin-bottom: 6px;
  line-height: 1.5;
}
.hero-verse cite {
  font-family: var(--font-head);
  font-style: normal;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive-light);
}
.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hero-logo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
@media (max-width: 1100px) {
  .hero-logo img { max-width: 300px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-logo { order: -1; padding: 0 0 12px; }
  .hero-logo img { max-width: 240px; }
}
@media (max-width: 560px) {
  .hero-logo img { max-width: 170px; }
}
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--olive-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 22px;
  color: var(--white);
}
.hero-sub {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 34px;
  color: #cfcec2;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d8d7cb;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8bc98b;
  box-shadow: 0 0 0 3px rgba(139,201,139,0.22);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--olive-light);
  color: var(--ink);
  border-color: var(--olive-light);
}
.hero .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* Experience bar */
.experience-bar {
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.experience-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.experience-label {
  margin: 0;
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--olive);
}
.experience-names {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px 44px;
}
.experience-names img {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.82;
}

/* Tools bar */
.tools-bar {
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.tools-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tools-label {
  margin: 0;
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--olive);
}
.tools-names {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.tools-names img {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.82;
}

/* Services */
.services { padding: 96px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.service-icon {
  width: 34px;
  height: 34px;
  color: var(--olive);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.service-card p { margin-bottom: 18px; font-size: 15px; }
.service-card p:last-of-type { margin-bottom: 0; }

.tag-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list li {
  font-family: var(--font-head);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--olive);
  background: var(--paper-dim);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 3px;
}

/* Process */
.process {
  padding: 96px 0;
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 28px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 34px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--olive-light) 0, var(--olive-light) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--olive-light);
  transform: translateY(-50%);
  z-index: 0;
}
.process-step { position: relative; }
.process-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  z-index: 1;
}
.process-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon-circle svg { width: 26px; height: 26px; color: var(--olive); }
.step-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--paper-dim);
}
.process-step h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .process-steps::before, .process-steps::after { display: none; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Track record */
.track-record {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 80px 0;
}
.track-record::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/capabilities/us-network-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}
.track-record::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(23,23,22,0.72) 40%, var(--ink) 100%);
  z-index: 0;
}
.track-record-mark {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 420px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.track-record .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .track-record-mark { width: 260px; }
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 8px;
}
.stat-label {
  color: #c8c7bb;
  font-size: 14px;
  line-height: 1.5;
}

/* About */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  position: relative;
  padding: 14px;
}
.about-photo img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--olive);
  pointer-events: none;
}
.frame-corner.tl { top: 0; left: 0; border-width: 1.5px 0 0 1.5px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }
.about-copy p { font-size: 16px; }
.credentials {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.credentials li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 20px;
}
.credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  background: var(--olive);
}

/* Start steps */
.start { padding: 96px 0; }
.start-panel {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.start-step {
  position: relative;
  padding: 32px 30px;
}
.start-step:not(:first-child) {
  border-left: 1px solid var(--line);
}
.start-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}
.start-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper-dim);
  border: 1.5px solid var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-icon-circle svg { width: 26px; height: 26px; color: var(--olive); }
.start-step .step-badge { border-color: var(--white); }
.start-step h3 { font-size: 17px; margin-bottom: 8px; }
.start-step p { font-size: 14.5px; margin-bottom: 0; }
.start-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 0;
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--olive-light);
  z-index: 2;
}
@media (max-width: 720px) {
  .start-steps { grid-template-columns: 1fr; }
  .start-step:not(:first-child) { border-left: none; border-top: 1px solid var(--line); }
  .start-step:not(:last-child)::after { display: none; }
}

/* Contact */
.contact {
  padding: 96px 0 110px;
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-intro .section-title { margin-bottom: 18px; }
.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.contact-details li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.contact-details li:last-child { border-bottom: 1px solid var(--line); }
.contact-details span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--olive);
  width: 80px;
  flex-shrink: 0;
}
.contact-details a:hover { color: var(--olive); }

.book-call {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.book-call-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.book-call-sub { margin: 0; font-size: 14px; color: #55544a; }
.book-call .btn-outline { white-space: nowrap; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  margin-top: 18px;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.contact-form button { margin-top: 26px; }
.form-status {
  margin: 14px 0 0;
  font-size: 14px;
}
.form-status.success { color: #3f6b3f; }
.form-status.error { color: #a13d3d; }

/* Legal pages */
.legal { padding: 90px 0 100px; }
.legal-inner { max-width: 720px; }
.legal-updated {
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 19px;
  margin-top: 40px;
}
.legal p { font-size: 16px; }
.legal a { color: var(--olive); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-inner p {
  margin: 0;
  color: #a9a89c;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: #a9a89c;
  font-size: 13px;
}
.footer-links a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 260px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-cta { display: inline-block; }
  .hero { padding: 70px 0 60px; }
}
