/* ===== Recruit Yard — V1 ===== */
:root {
  --navy: #102E52;
  --navy-900: #0b2038;
  --orange: #D5481A;
  --orange-600: #bd3d13;
  --teal: #62908D;
  --teal-700: #4f7876;
  --ink: #1a2433;
  --muted: #5b6675;
  --line: #e4e8ee;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --radius: 14px;
  --maxw: 1120px;
  --shadow: 0 10px 30px rgba(16, 46, 82, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.accent { color: var(--orange); white-space: nowrap; }

/* ===== Logo ===== */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-img { height: 54px; width: auto; display: block; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) { color: var(--navy); font-weight: 500; }
.site-nav a:not(.btn):hover { color: var(--orange); text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: .18s ease; text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-nav { background: var(--navy); color: #fff; padding: 10px 20px; }
.btn-nav:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(98,144,141,.35), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; padding: clamp(64px, 9vw, 120px) 0;
}
.hero-inner { max-width: 860px; }
.hero h1 { color: #fff; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
  font-weight: 600; color: var(--teal); margin-bottom: 18px;
}
.hero-sub { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  list-style: none; margin: 56px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 40px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Archivo Black', sans-serif; font-size: 2.4rem; color: var(--orange); line-height: 1; }
.hero-stats span { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 6px; }

/* ===== Sections ===== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }
.section-tag {
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  font-weight: 700; color: var(--orange); margin-bottom: 12px;
}
.section-tag.light { color: var(--teal); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.lead { font-size: 1.2rem; color: var(--muted); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.about-body p { color: var(--muted); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.card-icon { color: var(--orange); font-size: 1.1rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ===== Sectors ===== */
.sector-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.sector-grid li {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal);
  border-radius: 10px; padding: 20px 22px; font-weight: 600; color: var(--navy);
  transition: .18s ease;
}
.sector-grid li:hover { border-left-color: var(--orange); transform: translateX(3px); box-shadow: var(--shadow); }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
}
.service::before {
  content: ""; position: absolute; top: 0; left: 26px; width: 40px; height: 4px;
  background: var(--orange); border-radius: 0 0 4px 4px;
}
.service h3 { margin: 10px 0 8px; }
.service p { color: var(--muted); margin: 0; }

/* ===== Reach ===== */
.reach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.reach-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reach-list li {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  background: var(--bg-alt);
}
.reach-list strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.reach-list span { color: var(--muted); font-size: .93rem; }

/* ===== Contact ===== */
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-lead p { color: rgba(255,255,255,.8); }
.contact-meta { list-style: none; margin: 28px 0 0; padding: 0; }
.contact-meta li { display: flex; flex-direction: column; margin-bottom: 16px; }
.contact-meta span { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--teal); margin-bottom: 3px; }
.contact-meta a { color: #fff; }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--navy); font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(98,144,141,.2);
}
.hp { position: absolute; left: -9999px; }

.form-message { border-radius: 10px; padding: 14px 16px; font-size: .9rem; line-height: 1.5; margin-top: 16px; }
.form-message strong { display: block; margin-bottom: 3px; }
.form-message--success { background: rgba(98,144,141,.12); border: 1px solid var(--teal); color: var(--navy); }
.form-message--success strong { color: var(--teal-700); }
.form-message--error { background: rgba(197,48,48,.08); border: 1px solid #c53030; color: var(--navy); }
.form-message--error strong { color: #c53030; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.logo-footer .logo-img { height: 60px; }
.footer-tag { font-family: 'Archivo Black', sans-serif; color: #fff; margin: 6px 0 0; }
.footer-copy { font-size: .88rem; margin: 0; }
.footer-links { font-size: .88rem; margin: 0; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: underline; }
.footer-links a:hover { color: #fff; }

/* ===== Mobile nav ===== */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .reach-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 18px 24px 26px; gap: 6px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a.btn { border: 2px solid transparent; text-align: center; margin-top: 8px; }
  body.nav-open .site-nav { transform: translateY(0); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .sector-grid, .cards, .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .hero-actions .btn { flex: 1 1 100%; }
}
