/* Bedrock Talent Partners - site styles
   Clean corporate treatment. No external fonts or assets; fully self-contained. */

:root {
  --navy-900: #0d1e2d;
  --navy-800: #12293d;
  --navy-700: #17344c;
  --navy-600: #1f4463;
  --stone-700: #8a6224;
  --bronze: #b8813f;
  --bronze-dark: #9c6c2f;
  --ink: #1a2430;
  --slate: #47586a;
  --slate-light: #6b7c8e;
  --line: #e2e6ea;
  --line-strong: #cdd4db;
  --bg: #ffffff;
  --bg-soft: #f5f7f9;
  --bg-tint: #eef2f5;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 7px;
  --shadow-sm: 0 1px 2px rgba(13, 30, 45, 0.06), 0 1px 3px rgba(13, 30, 45, 0.05);
  --shadow-md: 0 6px 20px rgba(13, 30, 45, 0.08);
  --container: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bronze-dark);
  margin: 0 0 0.75rem;
}

.lead { font-size: 1.18rem; color: var(--slate); }

.muted { color: var(--slate-light); }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--bronze); color: #fff; }
.btn-primary:hover { background: var(--bronze-dark); color: #fff; }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy-800); background: var(--bg-soft); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; color: var(--navy-900); letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand .brand-mark { width: 34px; height: 34px; flex: none; }
.brand .brand-name { font-size: 1.12rem; line-height: 1.05; }
.brand .brand-name small { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-dark); }

.nav-links { display: flex; align-items: center; gap: 1.65rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy-800); font-weight: 600; font-size: 0.97rem; }
.nav-links a:hover { color: var(--bronze-dark); text-decoration: none; }
.nav-links a.active { color: var(--bronze-dark); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  color: var(--navy-800);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(184,129,63,0.22), transparent 55%),
    linear-gradient(118deg, rgba(11,26,40,0.94) 0%, rgba(18,41,61,0.85) 52%, rgba(20,53,80,0.62) 100%),
    url("/assets/img/hero-structure.jpg") center 38% / cover no-repeat,
    var(--navy-900);
  color: #e9eef3;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lead { color: #b9c6d3; max-width: 54ch; }
.hero .btn-outline-light { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 640px;
}
.hero-stats .num { font-size: 1.7rem; font-weight: 800; color: #fff; }
.hero-stats .label { font-size: 0.85rem; color: #a7b6c4; }

/* ---------- Sections ---------- */
section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-tint { background: var(--bg-soft); }
.section-navy { background: var(--navy-900); color: #dfe7ee; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 56ch; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }
.card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: var(--bg-tint);
  color: var(--bronze-dark);
  margin-bottom: 1rem;
}
.card .icon svg { width: 24px; height: 24px; }

.card-link { transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease; }
a.card-link:hover { text-decoration: none; border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
a.card-link { color: inherit; display: block; }
a.card-link .more { color: var(--bronze-dark); font-weight: 600; font-size: 0.95rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; margin: 0; padding: 0; }
.pill-list li {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  color: var(--navy-800);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: 0.85rem; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.35rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--bronze);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/0.85rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/0.85rem no-repeat;
}

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: -1; }

.stat-panel {
  background: linear-gradient(160deg, var(--navy-800), #143550);
  border-radius: var(--radius);
  padding: 2.2rem;
  color: #dfe7ee;
}
.stat-panel .row { display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.stat-panel .row:last-child { border-bottom: 0; }
.stat-panel .row .num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-panel .row .cap { color: #a7b6c4; font-size: 0.92rem; max-width: 22ch; text-align: right; }

/* ---------- Media figures (photography) ---------- */
.media-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--bg-tint);
}
.media-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.media-figure.tall img { aspect-ratio: 3 / 4; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.3rem; }
.step { position: relative; padding-left: 3.5rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: -0.15rem;
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint);
  color: var(--bronze-dark);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 800;
}
.step h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.step p { margin-bottom: 0; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 500px at 85% 120%, rgba(184,129,63,0.20), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: 14px;
  padding: clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c2cdd8; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy-800); }
.field label .req { color: var(--bronze-dark); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.72rem 0.85rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(184,129,63,0.15);
}
.field .hint { font-size: 0.82rem; color: var(--slate-light); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.85rem; color: var(--slate-light); margin-top: 0.5rem; }
.form-ok { display: none; margin-top: 1.1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); background: #eef6ee; border: 1px solid #cfe4cf; color: #24632c; }
.form-ok.show { display: block; }

/* ---------- Contact info ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-list .ci {
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px; background: var(--bg-tint); color: var(--bronze-dark);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list b { display: block; color: var(--navy-900); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aebccb; padding: 3.4rem 0 2rem; font-size: 0.94rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 1rem; }
.site-footer a { color: #aebccb; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; color: #fff; font-weight: 800; }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-blurb { max-width: 34ch; color: #93a4b5; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; align-items: center;
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  color: #7f92a4; font-size: 0.86rem;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    linear-gradient(118deg, rgba(11,26,40,0.96) 0%, rgba(18,41,61,0.90) 58%, rgba(20,53,80,0.78) 100%),
    url("/assets/img/hero-structure.jpg") center 42% / cover no-repeat,
    var(--navy-900);
  color: #e9eef3;
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lead { color: #bccad8; max-width: 60ch; }
.crumb { font-size: 0.85rem; color: #8ea0b1; margin-bottom: 0.9rem; }
.crumb a { color: #b9c6d3; }

/* ---------- Utility spacing ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { max-width: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 0.5rem 24px 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-cta .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
  .stat-panel .row .cap { max-width: 16ch; }
}
