/* Unmatched LLC — site stylesheet
   Palette, type, and the diagonal "cut" motif are pulled directly from
   Unmatched_Brand_Book_v1.pdf (04_Final Files/07_Brand Book). */

:root {
  --orange: #ff5933;   /* Burnt Orange — Pantone Orange 21C */
  --orange-deep: #e04620;
  --navy: #1f2e4d;      /* Navy — Pantone 540 C */
  --sky: #42667d;       /* Sky — Pantone 2149 C */
  --beige: #ebe5db;     /* Beige — Pantone 7527 C */
  --slate: #484848;     /* Slate — Pantone 405 C */
  --gold: #ba975c;      /* Gold — Pantone 7562 C */
  --paper: #ffffff;
  --line: #e2ddd2;
  --dark-fg: #f5f2ea;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#home, #services, #about { scroll-margin-top: 20px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
}

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

a { color: var(--orange); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Contact bar — orange text on navy, echoing the logo's own two-color pairing.
   Sticky so the phone number and email stay visible while scrolling. */
.contact-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--navy);
  color: var(--orange);
}
.contact-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 9px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.contact-bar a {
  color: inherit;
  text-decoration: none;
}
.contact-bar a:hover { text-decoration: underline; }

/* Hero — the brand's own diagonal-split image (Our_Services_Image_1) fills
   the whole band; the wordmark and headline sit directly on the photo,
   navy wash underneath for legibility. No separate header or nav — the
   sticky contact bar above is the only persistent chrome. */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 28px 88px;
  text-align: center;
  color: var(--dark-fg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(31,46,77,.35), rgba(31,46,77,.7));
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: min(38%, 320px);
  margin: 0 auto 40px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
.hero h1 {
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 46px);
  margin: 0 0 20px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero .tagline {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f0ede4;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* Sections */
.section {
  padding: 72px 0;
}
.section + .section {
  border-top: 1px solid var(--line);
}
.section-narrow {
  max-width: 700px;
  margin: 0 auto;
}
.section h2 {
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 22px;
  color: var(--navy);
}
.section h2.lede {
  font-weight: 400;
}
.section p {
  margin: 0 0 18px;
}
.eyebrow {
  display: block;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin: 0 0 14px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--sky);
  margin-top: 10px;
}
.linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.linkedin-badge:hover { background: #0955a5; }

/* Split layout (home intro) */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: 4px; }

/* Services grid — real brand illustrations from 02_Illustrations */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--beige);
  border-radius: 8px;
  padding: 26px 16px 22px;
}
.service-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.service-card span.name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
}

/* About / leadership */
.leader {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.leader img {
  border-radius: 6px;
}
.leader h2 { margin-bottom: 2px; }
.leader .role {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 18px;
}
.affiliations ul {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px 24px;
}
.affiliations li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  break-inside: avoid;
}

/* Bottom contact band */
.contact-band {
  background: var(--navy);
  color: var(--dark-fg);
  text-align: center;
  padding: 56px 28px;
}
.contact-band h2 {
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 10px;
  color: var(--dark-fg);
}
.contact-band p {
  color: #cfd0d6;
  margin: 0 0 26px;
}
.contact-band .buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-outline {
  border: 1px solid rgba(245,242,234,.4);
  color: var(--dark-fg);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #9aa4b5;
  font-size: 13px;
  padding: 28px 28px 34px;
}
.site-footer .wrap {
  text-align: center;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .split, .leader { grid-template-columns: 1fr; }
  .leader img { width: 160px; }
  .affiliations ul { columns: 1; }
  .contact-bar .wrap { gap: 18px; font-size: 12px; }
}
