/* West Consulting LLC — site styles */

:root {
  --navy: #12284C;
  --navy-700: #0D1E3A;
  --navy-900: #081328;
  --ink: #1B2330;
  --muted: #5B6676;
  --line: #DCE3EC;
  --bg: #FFFFFF;
  --bg-alt: #F3F6FA;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(18, 40, 76, .25);
  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }

a { color: var(--navy); }
a:hover { color: var(--navy-700); }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

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

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .75;
  margin-bottom: .9rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 10px; border: 2px solid var(--navy);
  background: var(--navy); color: #fff; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: .55em 1.1em; font-size: .92rem; }

/* 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 transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(18, 40, 76, .5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand img { height: 64px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  color: var(--ink); text-decoration: none; position: relative;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.site-nav a:not(.btn):hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .btn { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-toggle .bar { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(4) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(900px 500px at 85% 10%, #E4ECF6 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(18, 40, 76, .05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(18, 40, 76, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-points li { position: relative; padding-left: 30px; font-weight: 500; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 18px; height: 18px; border-radius: 5px;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11.5 12.5 5' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/14px no-repeat;
}
.hero-art img { width: 100%; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Strip */
.strip { background: var(--navy); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid > div { padding: 30px 22px; border-left: 1px solid rgba(255, 255, 255, .14); }
.strip-grid > div:first-child { border-left: 0; padding-left: 0; }
.strip strong { display: block; font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; }
.strip span { font-size: .93rem; opacity: .78; }

/* Sections */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

/* Services */
.icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--navy);
  display: grid; place-items: center; margin-bottom: 20px;
}
.icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Approach */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.steps h3 { margin-bottom: .25em; }
.steps p { margin: 0; color: var(--muted); font-size: .98rem; }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 12px; height: 56px; display: grid; place-items: center;
}
.approach-art { margin: 0; }
.approach-art figcaption { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 14px; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry { border-top: 3px solid var(--navy); padding-top: 24px; }
.industry-art { width: 120px; height: 80px; margin-bottom: 18px; fill: var(--navy); stroke: var(--navy); }
.industry-art [fill="none"] { fill: none; }
.industry p { color: var(--muted); font-size: .98rem; }

/* Services */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; transition: box-shadow .25s, border-color .25s;
}
.service:hover { box-shadow: var(--shadow); border-color: transparent; }
.service-head { display: flex; gap: 18px; align-items: center; margin-bottom: 16px; }
.service-head .icon { margin: 0; flex: none; }
.service-head h3 { margin: 0; }
.service-tag { margin: 2px 0 0; font-size: .85rem; font-weight: 600; color: var(--muted); }
.service > p { color: var(--muted); font-size: .98rem; }
.service-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.service-meta h4 { font-family: var(--font-head); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin: 0 0 8px; }
.service-meta ul { margin: 0; padding-left: 1.1em; font-size: .92rem; display: grid; gap: 4px; }
.service-meta li::marker { color: var(--navy); }
.service-retained { background: var(--navy); border-color: var(--navy); color: #E6ECF4; justify-content: center; }
.service-retained h3 { color: #fff; font-size: 1.4rem; }
.service-retained > p { color: #C9D4E3; }
.text-link { color: #fff; font-family: var(--font-head); font-weight: 700; text-decoration: none; }
.text-link:hover { color: #fff; text-decoration: underline; }

/* When to call */
.triggers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: trig; }
.trigger { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; position: relative; }
.trigger::before {
  counter-increment: trig; content: counter(trig, decimal-leading-zero);
  position: absolute; top: 18px; right: 20px; font-family: var(--font-head); font-weight: 800; color: var(--navy); opacity: .15; font-size: 1.6rem;
}
.trigger-when { display: block; font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem; margin-bottom: 10px; padding-right: 36px; line-height: 1.3; }
.trigger p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Fit and roles */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.fit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 18px; height: 18px; border-radius: 5px;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11.5 12.5 5' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/14px no-repeat;
}
.roles { margin: 0; display: grid; }
.roles > div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.roles > div:last-child { border-bottom: 0; }
.roles dt { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.roles dd { margin: 0; color: var(--muted); }

.broker {
  margin-top: 24px; background: var(--navy); color: #E6ECF4; border-radius: var(--radius);
  padding: 36px 40px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.broker .eyebrow, .broker h3 { color: #fff; }
.broker h3 { font-size: 1.4rem; }
.broker p:last-child { margin: 0; color: #C9D4E3; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; white-space: nowrap; }
.btn-light:hover { background: #E6ECF4; color: var(--navy); }

/* About */
.section-dark {
  background:
    radial-gradient(700px 400px at 10% 0%, rgba(255, 255, 255, .07), transparent 60%),
    var(--navy);
  color: #E6ECF4;
}
.section-dark h2, .section-dark .eyebrow { color: #fff; }
.about { padding-top: 0; }
.photo-band { position: relative; margin: 0 0 56px; height: clamp(260px, 36vw, 540px); overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.photo-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 40, 76, 0) 45%, rgba(18, 40, 76, .6) 78%, var(--navy) 100%);
}
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
.about-mark {
  aspect-ratio: 1; border-radius: 28px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
}
.about-mark img { width: 82%; }
.engagement {
  margin-top: 32px; padding: 24px 28px; border-left: 4px solid #fff;
  background: rgba(255, 255, 255, .06); border-radius: 0 var(--radius) var(--radius) 0;
}
.engagement-label { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: .6em; }
.engagement-note { margin: 0; font-family: var(--font-head); font-weight: 600; color: #fff; }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px; margin-top: -9px;
  border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy); transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

blockquote {
  margin: 32px 0 0; padding: 24px 28px; border-left: 4px solid #fff;
  background: rgba(255, 255, 255, .06); border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: #fff; }
blockquote footer { font-size: .92rem; opacity: .8; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.contact-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.send-list { margin: 0 0 1em; padding-left: 1.2em; display: grid; gap: 6px; font-weight: 500; }
.send-list li::marker { color: var(--navy); }
.optional { font-weight: 400; color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.contact-list svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px;
  box-shadow: var(--shadow); display: grid; gap: 18px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(18, 40, 76, .12);
}
.contact-form .invalid { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(18, 40, 76, .18); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { justify-self: start; }
.form-note { margin: 0; font-size: .95rem; color: var(--muted); min-height: 1.4em; }

/* Footer */
.site-footer { background: var(--navy-900); color: #C3CDDB; padding: 48px 0; }
.site-footer .footer-inner > img { height: 72px; width: auto; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.site-footer nav { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.site-footer a { color: #E6ECF4; text-decoration: none; font-weight: 500; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.copyright { margin: 0; font-size: .9rem; }
.footer-meta { text-align: right; font-size: .9rem; }
.footer-meta p { margin: 0 0 4px; }
.disclaimer { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .82rem; color: #8F9CB0; }

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .triggers { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .strip-grid > div { border-top: 1px solid rgba(255, 255, 255, .14); }
  .strip-grid > div:nth-child(-n+2) { border-top: 0; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 84px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    box-shadow: 0 20px 30px -20px rgba(18, 40, 76, .4);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { margin-top: 16px; }

  .hero { padding: 48px 0 64px; }
  .hero-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { max-width: 560px; margin: 0 auto; }
  .about-mark { max-width: 220px; }
  .section { padding: 76px 0; }
  .about { padding-top: 0; }
  .photo-band { margin-bottom: 40px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-meta { text-align: center; }
  .services, .fit-grid { grid-template-columns: 1fr; }
  .broker { grid-template-columns: 1fr; padding: 30px 28px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .brand img { height: 56px; }
  .site-nav { padding: 8px 16px 20px; }
  .triggers, .field-row, .service-meta { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .industry-art { width: 84px; height: 56px; }
  .industry h3 { font-size: 1rem; }
  .industry p { font-size: .9rem; }
  .service, .fit { padding: 24px 20px; }
  .roles > div { grid-template-columns: 1fr; gap: 2px; }
  .broker .btn { justify-self: stretch; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > div { border-left: 0; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
  .strip-grid > div:first-child { border-top: 0; }
  .contact-form { padding: 24px 20px; }
  .steps li { grid-template-columns: 48px 1fr; padding: 18px; }
  .step-num { height: 48px; font-size: 1.2rem; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art img { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

@media print {
  .site-header, .nav-toggle, .contact-form, .hero-art { display: none; }
  .section { padding: 24px 0; }
}
