/* Paceline Finance logo-based site styles */

:root {
  --navy: #061b49;
  --navy-2: #08275f;
  --steel: #4d5c73;
  --teal: #00a9bd;
  --yellow: #ffc928;
  --yellow-dark: #f2b600;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --text: #111827;
  --muted: #566274;
  --border: #dbe3ec;
  --shadow: 0 16px 40px rgba(6, 27, 73, 0.12);
  --radius: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
    display: block;
    max-width: 180px;
    height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  padding: 10px 8px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 3px;
  background: transparent;
  border-radius: 999px;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  background: var(--yellow);
}

.hero {
    min-height: 520px;
    background:
        linear-gradient(
            90deg,
            rgba(6,27,73,.95) 0%,
            rgba(6,27,73,.85) 35%,
            rgba(6,27,73,.40) 65%,
            rgba(6,27,73,.10) 100%
        ),
        url('../images/austin-skyline.jpg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  padding: 76px 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1, h2, h3 {
  line-height: 1.13;
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
}

.hero h1 {
    color: white;
}

h1 span {
  color: var(--yellow);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
  color: var(--navy);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.hero-text,
.page-hero p,
.section-heading p,
.cta p {
  font-size: 1.14rem;
  color: var(--muted);
}

.hero-text {
  max-width: 690px;
  color: rgba(255,255,255,0.93);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
}

.button.primary {
  background: var(--yellow);
  color: var(--navy);
}

.button.primary:hover {
  background: var(--yellow-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.60);
  background: transparent;
}

.section {
  padding: 74px 0;
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
}

.services-preview {
  background: #fff;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

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

.service-card,
.card,
.large-card,
.contact-card,
.service-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(6, 27, 73, 0.06);
}

.service-card {
  min-height: 100px;
  padding: 24px 18px;
  text-align: center;
}

.service-card .icon {
  margin: 0 auto 16px;
  color: var(--teal);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}

.service-card:nth-child(3n) .icon,
.service-card:nth-child(6n) .icon {
  color: var(--yellow-dark);
}

.service-card h3 {
  font-size: 1.04rem;
}

.service-card p,
.card p,
.large-card p,
.service-item p,
.timeline-item p,
.contact-card p,
.split p {
  color: var(--muted);
}

.quote-band {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 26px 34px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-mark {
  color: var(--teal);
  font-size: 5rem;
  line-height: 0.7;
  font-weight: 900;
}

.quote-band p {
  margin: 0;
  max-width: 900px;
  color: rgba(255,255,255,0.92);
  font-size: 1.12rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 900;
  color: var(--navy);
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cta {
  padding: 70px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 72%, #075c76 100%);
  color: white;
  border-radius: 14px;
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: white;
}

.cta-box p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  margin: 0 auto 26px;
}

.page-hero {
  padding: 78px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 189, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-bottom: 1px solid var(--border);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-item,
.card,
.large-card,
.contact-card {
  padding: 28px;
}

.large-card {
  padding: 34px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  background: white;
  border-left: 6px solid var(--teal);
  border-radius: 10px;
  padding: 24px;
}

.timeline-item:nth-child(even) {
  border-left-color: var(--yellow);
}

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

.contact-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: #07142f;
  color: white;
  padding: 48px 0 24px;
}

.footer-logo {
  display: block;
  width: min(280px, 70vw);
  background: white;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 18px;
}

.site-footer a {
  color: white;
}

.site-footer p {
  color: rgba(255,255,255,0.76);
}

.site-footer h3 {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .card-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-wrap,
  .split,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    justify-items: start;
    padding: 18px 0;
  }

  .logo img {
    width: min(300px, 86vw);
  }

  .site-nav {
    width: 100%;
  }

  .hero,
  .hero-overlay {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
  }

  .card-grid.six,
  .card-grid.three,
  .card-grid.two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }
}

.hero-home {
    background:
        linear-gradient(
            90deg,
            rgba(6,27,73,.95) 0%,
            rgba(6,27,73,.85) 35%,
            rgba(6,27,73,.60) 65%,
            rgba(6,27,73,.20) 100%
        ),
        url('../images/hero-home.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-hero {
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-hero h1,
.image-hero p {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.hero-services {
    background-image:
        linear-gradient(90deg, rgba(6,27,73,.94), rgba(6,27,73,.55)),
        url('../images/hero-services.jpg');
}

.hero-industries {
    background-image:
        linear-gradient(90deg, rgba(6,27,73,.94), rgba(6,27,73,.55)),
        url('../images/hero-industries.jpg');
}

.hero-about {
    background-image:
        linear-gradient(90deg, rgba(6,27,73,.94), rgba(6,27,73,.55)),
        url('../images/hero-about.jpg');
}

.hero-contact {
    background-image:
        linear-gradient(90deg, rgba(6,27,73,.94), rgba(6,27,73,.55)),
        url('../images/hero-contact.jpg');
}

.hero-opbud {
    background-image:
        linear-gradient(90deg, rgba(6,27,73,.94), rgba(6,27,73,.55)),
        url('../images/hero-opbud.jpg');
}