/* G.L. Hunt - Landing Page styles (shared between LP-B and LP-C) */

:root {
  --glh-blue-deep: #003566;
  --glh-blue: #0a4d8c;
  --glh-blue-mid: #0e6cb0;
  --glh-blue-bright: #1a8ad1;
  --glh-orange: #f26b21;
  --glh-orange-soft: #f8a877;
  --glh-ink: #0c1626;
  --glh-ink-mute: #4a5566;
  --glh-paper: #f4ede0;
  --glh-paper-cool: #eef2f6;
  --glh-line-light: rgba(255,255,255,0.22);
  --glh-line-dark: rgba(12,22,38,0.14);

  --font-display: 'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Inter Tight', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--glh-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-size: 16px;
  line-height: 1.5;
}

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

/* Display headlines */
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* Eyebrow / kicker labels */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--glh-orange);
  margin: 0 0 12px;
}
.slash { color: var(--glh-orange); font-weight: 800; }

/* Container */
.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky top nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glh-line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--glh-blue-deep);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glh-orange);
  font-weight: 700;
  margin-right: 6px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--glh-orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-cta:hover { background: #ff7a2a; }

@media (max-width: 640px) {
  .nav-phone-label, .nav-cta { display: none; }
  .nav-phone { font-size: 18px; }
}

/* Hero - full bleed */
.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-eyebrow-row .rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero h1 {
  font-size: clamp(42px, 4.6vw, 62px);
  margin: 0;
}
.hero h1 .accent { color: var(--glh-orange); }
.hero h1 .italic { font-style: italic; font-weight: 400; }
.hero-sub {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero-sub .accent {
  color: var(--glh-orange);
  font-style: normal;
  font-weight: 900;
  margin-left: 8px;
}
.hero-body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}
.hero-bullets {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 580px;
  padding: 22px 4px 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.hero-bullets li {
  list-style: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  padding-left: 26px;
  position: relative;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 9px;
  border-left: 2.5px solid var(--glh-orange);
  border-bottom: 2.5px solid var(--glh-orange);
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 24px; }
}

/* Lead form card */
.form-card {
  background: #fff;
  color: var(--glh-ink);
  border-radius: 0;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  border-top: 6px solid var(--glh-orange);
}
.form-card .form-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glh-orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--glh-blue-deep);
  margin: 0 0 6px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--glh-ink-mute);
  margin: 0 0 22px;
  line-height: 1.4;
}
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.form-row > * { flex: 1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.form-field label {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--glh-blue-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--glh-line-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--glh-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--glh-blue);
  box-shadow: 0 0 0 3px rgba(10,77,140,0.12);
}
.form-field textarea { min-height: 80px; resize: vertical; }
.form-submit {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--glh-orange);
  color: #fff;
  border: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
  margin-top: 10px;
}
.form-submit:hover { background: #ff7a2a; }
.form-submit:active { transform: translateY(1px); }
.form-fineprint {
  margin: 14px 0 0;
  font-size: 11px;
  color: var(--glh-ink-mute);
  line-height: 1.4;
}

/* Trust strip (full width section) */
.trust {
  background: var(--glh-paper);
  padding: 28px 0;
  border-top: 1px solid var(--glh-line-dark);
  border-bottom: 1px solid var(--glh-line-dark);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 12px 14px;
  border-left: 1px solid var(--glh-line-dark);
}
.trust-item:first-child { border-left: 0; }
.trust-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: var(--glh-blue-deep);
  line-height: 1;
}
.trust-label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--glh-ink-mute);
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--glh-line-dark); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--glh-line-dark); }
  .trust-item { padding: 18px 14px; }
  .trust-num { font-size: 28px; }
}

/* Section */
.section {
  padding: 88px 0;
}
.section--paper { background: var(--glh-paper); }
.section--blue {
  background: var(--glh-blue-deep);
  color: #fff;
}
.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  color: var(--glh-blue-deep);
  margin: 0;
}
.section--blue .section-header h2 { color: #fff; }
.section-header .accent { color: var(--glh-orange); }
.section-header p {
  margin: 16px auto 0;
  font-size: 17px;
  color: var(--glh-ink-mute);
  max-width: 580px;
  line-height: 1.55;
}
.section--blue .section-header p { color: rgba(255,255,255,0.8); }

/* Service mix grid */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1.5px solid var(--glh-blue-deep);
  border-bottom: 1.5px solid var(--glh-blue-deep);
  margin-top: 0;
}
.service {
  display: flex;
  gap: 16px;
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid var(--glh-line-dark);
  align-items: flex-start;
}
.service:nth-child(odd) { border-right: 1px solid var(--glh-line-dark); padding-right: 32px; }
.service:nth-child(even) { padding-left: 32px; padding-right: 0; }
.service:nth-last-child(-n+2) { border-bottom: 0; }
.service-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.05em;
  color: var(--glh-orange);
  line-height: 0.9;
  flex: 0 0 auto;
  margin-top: 4px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--glh-blue-deep);
  margin: 0 0 6px;
  line-height: 1.1;
}
.service-body p {
  margin: 0;
  font-size: 14px;
  color: var(--glh-ink-mute);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; border-bottom: 0; }
  .service { padding: 20px 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--glh-line-dark) !important; }
  .service:last-child { border-bottom: 0 !important; }
}

/* Process / steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--glh-blue-deep);
}
.step {
  padding: 32px 28px;
  border-left: 1px solid var(--glh-line-dark);
  position: relative;
}
.step:first-child { border-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.06em;
  color: var(--glh-orange);
  line-height: 0.85;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--glh-blue-deep);
  margin: 0 0 10px;
  line-height: 1.1;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--glh-ink-mute);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--glh-line-dark); }
  .step:first-child { border-top: 0; }
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  padding: 28px 28px 24px;
  border-left: 4px solid var(--glh-orange);
  box-shadow: 0 1px 0 var(--glh-line-dark), 0 0 0 1px var(--glh-line-dark);
}
.section--blue .review {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--glh-orange);
  box-shadow: none;
  color: #fff;
}
.section--blue .review .review-text { color: #fff; }
.section--blue .review .review-meta { color: rgba(255,255,255,0.65); }
.review-stars {
  color: var(--glh-orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--glh-blue-deep);
  margin: 0 0 14px;
}
.review-meta {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--glh-ink-mute);
  font-weight: 600;
}
@media (max-width: 800px) {
  .reviews { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--glh-line-dark);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--glh-blue-deep);
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--glh-orange);
  font-weight: 400;
  transition: transform 0.15s;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--glh-ink-mute);
}

/* Coverage strip */
.coverage {
  background: var(--glh-blue-deep);
  color: #fff;
  padding: 28px 0;
}
.coverage-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.coverage-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--glh-orange-soft);
}
.coverage-cities {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
}
.coverage-cities .dot {
  color: var(--glh-orange);
  margin-right: 12px;
}

/* Final CTA */
.final-cta {
  background: var(--glh-blue-deep);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-watermark {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  opacity: 0.06;
  pointer-events: none;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.final-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0;
  letter-spacing: -0.03em;
}
.final-cta .accent { color: var(--glh-orange); }
.final-cta p {
  margin: 18px 0 28px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 520px;
}
.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--glh-orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: #ff7a2a; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 800px) {
  .final-cta-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: #0a1525;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--glh-orange);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-grid ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-grid a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-logo {
  height: 50px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-meta {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero variants */
.hero-b .hero-image img {
  object-position: 70% 50%;
  filter: saturate(0.85) contrast(1.05);
}
.hero-b .hero-scrim {
  background: linear-gradient(95deg, rgba(0,20,45,0.98) 0%, rgba(0,20,45,0.92) 20%, rgba(0,30,60,0.65) 50%, rgba(0,30,60,0.2) 78%, rgba(0,30,60,0) 95%);
}

.hero-c { background: #001428; }
.hero-c .hero-image img {
  mask-image: linear-gradient(95deg, transparent 0%, transparent 12%, black 65%, black 100%);
  -webkit-mask-image: linear-gradient(95deg, transparent 0%, transparent 12%, black 65%, black 100%);
}
.hero-c .hero-scrim {
  background: linear-gradient(180deg, rgba(0,20,40,0.45) 0%, rgba(0,20,40,0.1) 15%, transparent 30%, transparent 70%, rgba(0,20,40,0.45) 100%);
}

/* Sticky CTA bar (mobile) */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  background: var(--glh-blue-deep);
  border-top: 3px solid var(--glh-orange);
  padding: 10px 16px;
  gap: 10px;
  z-index: 60;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
}
.mobile-cta .cta-call {
  background: var(--glh-orange);
  color: #fff;
}
.mobile-cta .cta-book {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
@media (max-width: 640px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* Utility */
.show-mobile { display: none; }
@media (max-width: 800px) { .show-mobile { display: block; } .hide-mobile { display: none; } }
