:root {
  --ink: #181816;
  --muted: #5d5a52;
  --paper: #fbf6ea;
  --white: #fffdf7;
  --line: #d9cbb0;
  --teal: #1f7a78;
  --teal-dark: #155c5b;
  --amber: #d8a33a;
  --rust: #8f3a31;
  --charcoal: #20211f;
  --moss: #566248;
  --sand: #e8dcc4;
  --shadow: 0 18px 50px rgba(24, 24, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
  padding: 0 4rem;
  color: var(--white);
  background: rgba(24, 24, 22, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 245px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: block;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(255, 253, 247, 0.82);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/freight-review-desk.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 12, 0.9) 0%, rgba(12, 13, 12, 0.78) 38%, rgba(12, 13, 12, 0.28) 72%, rgba(12, 13, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 13, 12, 0.42), rgba(12, 13, 12, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  padding: 5.4rem 0 4.6rem;
  margin-left: clamp(1rem, 6vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rust);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 620px;
  margin: 1.25rem 0 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-battle {
  margin: 0.5rem 0 0;
  color: #f2d88e;
  font-size: 1.08rem;
  font-weight: 750;
}

.hero-copy {
  max-width: 640px;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e6b64f;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.52);
  background: rgba(255, 253, 247, 0.08);
}

.button-secondary.light {
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.72);
}

.cred-line {
  margin: 1.25rem 0 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.95rem;
}

.band-light,
.band-white,
.ai-band,
.contact {
  padding: 5rem 0;
}

.band-light {
  background: var(--paper);
}

.band-white {
  background: var(--white);
}

.section-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.section-copy p,
.section-heading p,
.large-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.section-copy p + p {
  margin-top: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 + p {
  margin-top: 1rem;
}

.section-heading.compact {
  max-width: 660px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
}

.signal-item {
  min-height: 136px;
  padding: 1.6rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 253, 247, 0.14);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  max-width: 260px;
  margin-top: 0.65rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  min-height: 360px;
  padding: 1.45rem;
  background: #f8f0df;
  border: 1px solid var(--line);
  border-top: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(24, 24, 22, 0.08);
}

.review-card:nth-child(2) {
  border-top-color: var(--rust);
}

.review-card:nth-child(3) {
  border-top-color: var(--moss);
}

.card-kicker {
  margin: 0 0 0.65rem;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card p:not(.card-kicker) {
  color: var(--muted);
}

.review-card ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--ink);
}

.ai-band {
  color: var(--white);
  background: var(--teal-dark);
}

.ai-band .section-copy p {
  color: rgba(255, 253, 247, 0.82);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.fit-list div {
  min-height: 104px;
  padding: 1.1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: 8px;
  font-weight: 760;
}

.joseph-grid {
  align-items: stretch;
}

.proof-panel {
  display: grid;
  gap: 0.85rem;
}

.proof-panel div {
  min-height: 126px;
  padding: 1.25rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
}

.proof-panel div:nth-child(2) {
  background: var(--rust);
}

.proof-panel div:nth-child(3) {
  background: var(--teal-dark);
}

.proof-panel span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.proof-panel p {
  margin: 0.55rem 0 0;
  color: rgba(255, 253, 247, 0.84);
}

.quote-band {
  width: min(1160px, calc(100% - 2rem));
  padding: 1.4rem 0 0;
  margin: 2rem auto 0;
  border-top: 1px solid var(--line);
}

.quote-band p {
  margin: 0;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  min-height: 176px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 33, 31, 0.98), rgba(32, 33, 31, 0.9)),
    var(--charcoal);
}

.contact-inner {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.65rem;
}

.contact p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  color: rgba(255, 253, 247, 0.7);
  background: #101110;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 1rem;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .hero-content {
    margin-left: 1rem;
    padding: 4rem 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2,
  .contact h2 {
    font-size: 2.15rem;
  }

  .two-column,
  .card-grid,
  .fit-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 70svh;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 13, 12, 0.9) 0%, rgba(12, 13, 12, 0.78) 62%, rgba(12, 13, 12, 0.5) 100%),
      linear-gradient(0deg, rgba(12, 13, 12, 0.48), rgba(12, 13, 12, 0.1));
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding: 3rem 0 3.4rem;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p,
  .large-copy,
  .contact p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .band-light,
  .band-white,
  .ai-band,
  .contact {
    padding: 3.4rem 0;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  }

  .review-card {
    min-height: auto;
  }

  .quote-band p {
    font-size: 1.55rem;
  }

  .site-footer {
    padding: 1.25rem 1rem;
  }
}
