:root {
  --red: #B4252D;
  --red-dark: #8f1d24;
  --black: #141414;
  --charcoal: #2a2a2a;
  --gray: #454545;
  --gray-light: #6f6f6f;
  --hairline: #e4e2e0;
  --bg: #ffffff;
  --bg-off: #faf9f8;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.masthead-bar {
  height: 4px;
  background: var(--red);
  width: 100%;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--hairline);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.site-nav nav a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--black);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--red) !important;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  background: var(--bg-off);
  isolation: isolate;
}

.hero-watermark {
  position: absolute;
  top: 12%;
  right: 60px;
  width: 640px;
  max-width: none;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-jet {
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 380px;
  height: 380px;
  color: var(--red);
  opacity: 0.07;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.18;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 52ch;
  margin: 0 0 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(180, 37, 45, 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 16px rgba(180, 37, 45, 0.38);
}

.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---------- Section shells ---------- */

section {
  padding: 5rem 0;
}

.section-head {
  max-width: 46ch;
  margin: 0 0 2.75rem;
}

.section-head .eyebrow {
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section-head p {
  color: var(--gray);
  margin: 0;
  font-size: 1.05rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* ---------- Stat band ---------- */

.stat-band {
  background: var(--black);
  padding: 3rem 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-tile {
  padding: 0.5rem 1rem;
}

.stat-number {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--red);
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #cfccc9;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- Client strip ---------- */

.client-strip {
  padding: 3.5rem 0;
  background: var(--bg-off);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.client-strip-eyebrow {
  text-align: center;
  margin-bottom: 1.75rem;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
}

.client-logos img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.9;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-grid p {
  margin: 0 0 1.15rem;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.about-grid p:last-child {
  margin-bottom: 0;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.about-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border-top: 3px solid var(--red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.credential-list {
  background: var(--bg-off);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 1.75rem;
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.credential-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
}

.credential-list li:last-child {
  border-bottom: none;
}

.credential-list .mark {
  color: var(--red);
  font-weight: 800;
}

/* ---------- Who we help ---------- */

.who-help {
  background: var(--black);
  color: #f2f0ee;
}

.who-help .section-head p {
  color: #c9c6c3;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: #1d1d1d;
  border: 1px solid #333;
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.pain-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.pain-card p {
  margin: 0;
  color: #b8b5b1;
  font-size: 0.94rem;
}

/* ---------- Services ---------- */

.services-list {
  display: grid;
  gap: 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}

.service-row:last-of-type {
  border-bottom: none;
}

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
}

.service-row h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.service-row p {
  margin: 0;
  color: var(--gray);
  max-width: 62ch;
}

.flex-note {
  margin-top: 2.5rem;
  background: var(--bg-off);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--red);
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.flex-note h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.flex-note p {
  margin: 0;
  color: var(--charcoal);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.cta-band p {
  margin: 0 0 2rem;
  color: #fce3e3;
  font-size: 1.05rem;
}

.cta-band .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

#contact-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #fde9e9;
  min-height: 1.2em;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--black);
  color: #9a9793;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-mark {
  height: 30px;
  width: 30px;
  border-radius: 6px;
}

.footer-inner small {
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .client-logos {
    gap: 1.75rem 2rem;
  }
  .client-logos img {
    height: 32px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .hero-watermark {
    width: 320px;
    top: 6%;
    right: -100px;
  }
  .hero-jet {
    width: 220px;
    height: 220px;
    left: -40px;
    bottom: -50px;
  }
}
