/* ========================================================================
   RD Heartland Hauling LLC — Shared Stylesheet
   ======================================================================== */

:root {
  --charcoal: #1F2933;
  --charcoal-deep: #14191F;
  --gold: #B08D3F;
  --gold-light: #D4B26A;
  --cream: #F5F1E8;
  --grey: #9AA5B1;
  --grey-light: #E4E7EB;
  --white: #FFFFFF;
  --max: 1200px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ========== Navigation ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 25, 31, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(176, 141, 63, 0.2);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--white); flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.brand span { color: var(--gold); }
/* Split logo in nav: horse mark sized independently from the wordmark text */
.brand-mark {
  height: 52px;   /* the RD horse mark — intentionally larger */
  width: auto;
  display: block;
}
.brand-text {
  height: 32px;   /* "Heartland Hauling LLC" wordmark */
  width: auto;
  display: block;
}
/* On mobile: brand row spans the FULL WIDTH — RD horse mark on the left,
   "Heartland Hauling LLC" wordmark stretches across the rest of the row. */
@media (max-width: 900px) {
  .brand {
    width: 100%;
    gap: 10px;
    align-items: center;
  }
  .brand-mark { height: 48px; flex-shrink: 0; }
  .brand-text {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    max-height: 56px;
    min-width: 0;
  }
}
@media (max-width: 420px) {
  .brand-mark { height: 42px; }
  .brand-text { max-height: 48px; }
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: var(--grey-light); font-size: 15px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Nav CTA button — rightmost, always visible */
.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 26px; cursor: pointer;
  padding: 4px 8px; line-height: 1;
}

/* ========== Breadcrumbs ========== */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--grey-light);
  padding: 10px 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 4px;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  font-size: 13px;
}
.breadcrumb li {
  display: flex; align-items: center; gap: 4px;
  color: var(--charcoal); opacity: 0.65;
}
.breadcrumb li + li::before {
  content: "›"; opacity: 0.5; font-size: 15px;
}
.breadcrumb a {
  color: var(--charcoal); opacity: 0.65;
  text-decoration: underline; text-underline-offset: 2px;
  transition: opacity 0.2s, color 0.2s;
}
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb li:last-child { opacity: 1; font-weight: 600; }

/* ========== Hero ========== */
.hero {
  background: linear-gradient(170deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative; overflow: hidden;
}
/* Algorithmic art: radial glow accent */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 78% 30%, rgba(176,141,63,0.13), transparent 55%);
  pointer-events: none;
}
/* Rolling hills SVG sits at bottom of hero */
.hero-hills {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; display: block;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; }
.hero .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.3px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero .lede {
  font-size: 18px; color: var(--grey-light);
  max-width: 560px; margin-bottom: 36px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Inner-page hero (smaller) */
.page-hero {
  background: linear-gradient(170deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 72px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(176,141,63,0.10), transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; max-width: 760px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.4px;
  margin-bottom: 22px;
}
.page-hero h1 .accent { color: var(--gold); font-style: italic; }
.page-hero .lede {
  font-size: 18px; color: var(--grey-light);
  max-width: 620px; line-height: 1.7;
}
.page-hero .eyebrow {
  color: var(--gold);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 3px;
  cursor: pointer; transition: all 0.22s;
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal-deep); transform: translateY(-2px); }

/* ========== Sections ========== */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.3px;
  margin-bottom: 22px;
}
.section-lede {
  font-size: 17px; color: var(--charcoal); opacity: 0.75;
  max-width: 660px; margin-bottom: 44px; line-height: 1.75;
}

.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-charcoal .section-title { color: var(--white); }
.bg-charcoal .section-lede { color: var(--grey-light); opacity: 0.9; }

/* ========== Hero photo band ========== */
.hero-photo { padding: 24px 20px; background: var(--charcoal); }
.hero-photo-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(31, 41, 51, 0.78);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.3px;
  border-left: 2px solid var(--gold);
}
@media (max-width: 700px) {
  .hero-photo { padding: 28px 16px; }
  .hero-photo-caption { font-size: 12px; bottom: 12px; left: 12px; padding: 6px 10px; }
}

/* ========== Pillars / Three-up ========== */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 32px; }
.pillar {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,41,51,0.08); }
.pillar h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 14px; }
.pillar p { color: var(--charcoal); opacity: 0.8; font-size: 15px; line-height: 1.7; }

/* ========== Horseshoe divider (algorithmic art) ========== */
.section-divider {
  text-align: center;
  padding: 12px 0 4px;
  color: var(--gold);
  opacity: 0.35;
}

/* ========== About / Profile blocks ========== */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.profile {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 36px;
}
.profile .role {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.profile h3 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500; margin-bottom: 18px;
}
.profile p { color: var(--charcoal); opacity: 0.8; margin-bottom: 14px; font-size: 15px; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story p { font-size: 16px; margin-bottom: 16px; opacity: 0.85; line-height: 1.75; }
.story .story-stat {
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 22px;
  margin: 28px 0;
}
.story .story-stat strong {
  font-family: var(--serif);
  font-size: 34px; color: var(--gold); display: block; margin-bottom: 4px;
}
.story-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
  aspect-ratio: 4/5; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.story-visual::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(176,141,63,0.25); pointer-events: none;
}

/* ========== Services ========== */
.service-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid var(--grey-light);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  align-items: start;
  transition: box-shadow 0.25s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(31,41,51,0.07); }
.service-card .label {
  font-family: var(--serif);
  font-size: 30px; font-weight: 500;
  color: var(--charcoal);
}
.service-card .label .num {
  display: block; color: var(--gold); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  margin-bottom: 8px; font-family: var(--sans);
}
.service-card p { opacity: 0.8; margin-bottom: 14px; font-size: 15px; }
.service-card ul { list-style: none; padding: 0; }
.service-card li { padding: 5px 0 5px 22px; position: relative; opacity: 0.82; font-size: 15px; }
.service-card li::before {
  content: "✓"; position: absolute; left: 0; top: 5px;
  color: var(--gold); font-weight: 700;
}
.service-card .card-cta { margin-top: 20px; }

/* Service detail pages */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.service-detail-aside {
  position: sticky; top: 100px;
}
.aside-box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.aside-box h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.aside-box p { font-size: 14px; opacity: 0.8; margin-bottom: 12px; }
.aside-box ul { list-style: none; }
.aside-box li { padding: 4px 0 4px 18px; position: relative; font-size: 14px; opacity: 0.8; }
.aside-box li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }

/* ========== Includes grid ========== */
.includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.include-item {
  padding: 24px 18px;
  background: var(--white); border: 1px solid var(--grey-light);
  text-align: center;
}
.include-item .icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px; font-weight: 700;
}
.include-item h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 7px; font-weight: 600; }
.include-item p { font-size: 13px; opacity: 0.72; }

/* ========== Service Area Cards ========== */
.area-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 32px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 3px solid var(--gold);
  padding: 32px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: var(--charcoal); display: block;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,41,51,0.08); }
.area-card .state-abbr {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.area-card .state-name {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin-bottom: 12px;
}
.area-card p { font-size: 14px; opacity: 0.72; line-height: 1.65; }
.area-card .card-link {
  display: inline-block; margin-top: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
}

/* ========== Blog Cards ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  display: block; text-decoration: none; color: var(--charcoal);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,41,51,0.08); }
.blog-card-img {
  background: var(--charcoal); height: 140px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(176,141,63,0.3); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: var(--sans);
}
.blog-card-body { padding: 24px; }
.blog-card .category {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { font-size: 14px; opacity: 0.72; margin-bottom: 14px; line-height: 1.65; }
.blog-card .read-more {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
}
.blog-stub-badge {
  display: inline-block; background: var(--grey-light);
  color: var(--charcoal); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}

/* ========== Testimonial Cards ========== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: 36px 28px; position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--serif); font-size: 72px;
  color: var(--gold); opacity: 0.2;
  position: absolute; top: 6px; left: 22px; line-height: 1;
}
.testimonial-card blockquote {
  font-size: 15px; line-height: 1.75; opacity: 0.85;
  margin-bottom: 20px; padding-top: 24px; font-style: italic;
}
.testimonial-card cite {
  font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
}
.testimonial-placeholder {
  background: var(--cream);
  border: 1px dashed var(--grey);
  padding: 32px 28px; text-align: center;
}
.testimonial-placeholder p { opacity: 0.5; font-size: 13px; font-style: italic; }

/* ========== FAQ Accordion ========== */
.faq-list { margin-top: 40px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--charcoal); transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px;
}
.faq-icon {
  width: 26px; height: 26px; border: 2px solid currentColor;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--gold);
  transition: transform 0.3s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 48px 24px 0;
  font-size: 15px; line-height: 1.8; opacity: 0.82;
}
.faq-item.open .faq-answer { display: block; }

/* ========== Quote Form ========== */
.quote-section { background: var(--charcoal); color: var(--white); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.quote-info h2 { font-family: var(--serif); font-size: 42px; line-height: 1.1; margin-bottom: 18px; font-weight: 500; }
.quote-info p { color: var(--grey-light); opacity: 0.85; margin-bottom: 18px; font-size: 15px; }
.quote-info .info-line {
  display: flex; gap: 14px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.quote-info .info-line strong {
  color: var(--gold); min-width: 90px; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
}

.quote-steps { margin-top: 36px; }
.quote-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.quote-step-num {
  width: 32px; height: 32px; background: var(--gold);
  color: var(--charcoal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.quote-step-text strong { display: block; font-size: 14px; margin-bottom: 4px; }
.quote-step-text span { font-size: 13px; opacity: 0.7; }

form.quote-form {
  background: var(--white); color: var(--charcoal);
  padding: 44px; border-top: 4px solid var(--gold);
}
form.quote-form h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 22px; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--grey-light);
  font-size: 15px; font-family: inherit;
  background: var(--white); color: var(--charcoal);
  transition: border-color 0.2s; border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; }
.form-checkbox input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--gold); }
.form-checkbox label { font-size: 14px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--charcoal); color: var(--white);
  border: none; cursor: pointer;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.25s; border-radius: 2px;
}
.form-submit:hover { background: var(--gold); color: var(--charcoal); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  display: none; background: var(--cream); padding: 22px; text-align: center;
  border-left: 4px solid var(--gold); margin-top: 14px; font-size: 15px;
}
.form-success.show { display: block; }
.form-note { font-size: 12px; opacity: 0.6; margin-top: 10px; text-align: center; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--grey-light);
  opacity: 0.88;
  line-height: 1.4;
}
.trust-item::before {
  content: "✓"; color: var(--gold); font-weight: 700;
  flex-shrink: 0;
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: var(--gold);
  text-align: center; padding: 80px 0;
}
.cta-banner h2 {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 42px);
  font-weight: 500; color: var(--charcoal); margin-bottom: 20px;
}
.cta-banner p { color: var(--charcoal); opacity: 0.85; margin-bottom: 30px; font-size: 17px; }

/* ========== Photo placeholder ========== */
.photo-placeholder {
  background: var(--charcoal);
  border: 2px dashed rgba(176,141,63,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 20px; text-align: center; color: var(--grey);
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600; gap: 8px; border-radius: 2px;
}
.photo-placeholder .ph-label { color: var(--gold); font-size: 10px; letter-spacing: 2px; }

/* ========== Blog Article ========== */
.article-header { padding: 72px 0 48px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
  margin-bottom: 28px;
}
.article-meta .category {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  background: rgba(176,141,63,0.12);
  padding: 4px 10px; border-radius: 2px;
}
.article-meta .date { font-size: 13px; opacity: 0.6; }
.article-content { max-width: 740px; }
.article-content h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin: 36px 0 16px;
}
.article-content h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin: 28px 0 12px;
}
.article-content p { font-size: 16px; line-height: 1.8; opacity: 0.85; margin-bottom: 18px; }
.article-content ul, .article-content ol {
  padding-left: 24px; margin-bottom: 18px; opacity: 0.85;
}
.article-content li { margin-bottom: 8px; font-size: 16px; line-height: 1.75; }
.article-content .stub-notice {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 32px 0; font-size: 14px; opacity: 0.8;
}
.article-sidebar { position: sticky; top: 100px; }

/* ========== Footer ========== */
footer {
  background: var(--charcoal-deep); color: var(--grey-light);
  padding: 60px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr 0.9fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand-col .footer-brand {
  font-family: var(--serif); font-size: 21px; color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-col .footer-tagline { opacity: 0.6; font-size: 13px; line-height: 1.65; margin-bottom: 12px; }
.footer-brand-col .footer-email a {
  color: var(--gold); font-size: 13px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
}
footer h5 {
  color: var(--gold); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { opacity: 0.7; font-size: 13px; transition: opacity 0.2s, color 0.2s; }
footer a:hover { opacity: 1; color: var(--gold); }
footer .legal {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; opacity: 0.55;
}

/* ========== Page-specific: Stat row ========== */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px; text-align: center;
}
.stat { padding: 32px 20px; border: 1px solid var(--grey-light); }
.stat .num {
  font-family: var(--serif); font-size: 48px; color: var(--gold);
  font-weight: 500; display: block; margin-bottom: 6px;
}
.stat .label { font-size: 13px; opacity: 0.7; letter-spacing: 0.5px; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-aside { position: static; }
}
@media (max-width: 900px) {
  /* Nav: keep logo + all links visible on mobile. Links wrap below the logo
     when they don't fit on one line. No hamburger. */
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .nav-links {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    padding: 0 !important;
    gap: 10px 16px !important;
    border-bottom: none !important;
    width: 100%;
    justify-content: center;
  }
  .nav-links a { font-size: 12px !important; letter-spacing: 0.6px !important; }
  .nav-cta {
    width: auto !important;
    text-align: center;
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
  .nav-toggle { display: none !important; }
  .three-up,
  .profile-grid,
  .quote-grid,
  .story,
  .includes-grid,
  .area-grid,
  .testimonial-grid,
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  form.quote-form { padding: 28px 20px; }
  .stat-row { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  /* Shrink hero headline so it wraps cleanly on narrow phones */
  .hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .page-hero h1 { font-size: clamp(26px, 7.5vw, 36px); }
  .hero, .page-hero { padding-left: 4px; padding-right: 4px; }
}

/* ============================================================
   SHARED HAULS — added 2026-05-14
   ============================================================ */

/* NEW badge — used in nav, service cards, and pillar headings */
.new-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* Pillar variant — NEW pillar gets a subtle gold accent border */
.pillar-new {
  position: relative;
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}

/* Four-up pillar grid (home page now has 4 service pillars instead of 3) */
.four-up {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .four-up { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .four-up { grid-template-columns: 1fr; }
}

/* Shared Hauls 3-step explainer */
.shared-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.shared-step {
  background: var(--cream);
  padding: 28px 24px 24px;
  border-top: 3px solid var(--gold);
  position: relative;
}
.shared-step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
.shared-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.shared-step p {
  font-size: 14.5px;
  opacity: 0.82;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .shared-steps { grid-template-columns: 1fr; gap: 18px; }
}

/* Card-button choice groups (quote form: trip type, trailer arrangement) */
.choice-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.choice-grid-2 { grid-template-columns: 1fr 1fr; }
.choice-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
  border: 2px solid var(--grey-light);
  background: white;
  border-radius: 6px;
  padding: 0;
  transition: all 0.15s ease;
  font-weight: normal;
}
.choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card-inner {
  padding: 14px 16px 12px;
}
.choice-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.choice-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}
.choice-card-body {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.75;
  margin: 0;
}
.choice-card:hover {
  border-color: var(--gold);
}
.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(176, 141, 63, 0.08);
  box-shadow: 0 0 0 1px var(--gold);
}
.choice-card:has(input:checked) .choice-card-title {
  color: var(--gold);
}
.choice-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: var(--grey-light) !important;
  background: var(--grey-light) !important;
  box-shadow: none !important;
}
.choice-card.disabled .choice-card-title { color: var(--charcoal) !important; }
.choice-card.auto-selected {
  border-color: var(--gold);
  background: rgba(176, 141, 63, 0.08);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: not-allowed;
}
.choice-card.auto-selected .choice-card-title { color: var(--gold); }

/* Small badges shown on choice-card head */
.choice-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.badge-gold { background: var(--gold); color: var(--charcoal); }
.badge-grey { background: var(--grey-light); color: var(--charcoal); opacity: 0.75; }

@media (max-width: 600px) {
  .choice-grid-2, .choice-grid-3 { grid-template-columns: 1fr; }
}

/* Pricing comparator (Private vs Shared) */
.pricing-comparator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0 8px;
}
.pricing-col {
  background: white;
  border: 1px solid var(--grey-light);
  padding: 22px 22px 20px;
  border-radius: 4px;
}
.pricing-col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-light);
}
.pricing-shared {
  border-color: var(--gold);
  background: rgba(176, 141, 63, 0.05);
}
.pricing-shared .pricing-col-label { color: var(--gold); }
.pricing-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14.5px;
}
.pricing-line.pricing-total {
  border-top: 1px solid var(--grey-light);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 17px;
}
.pricing-savings {
  margin-top: 14px;
  padding: 12px;
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
}
@media (max-width: 700px) {
  .pricing-comparator { grid-template-columns: 1fr; }
}

/* ========== Floating "Call" button (mobile only) ========== */
.call-fab {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--gold); color: var(--charcoal);
  padding: 13px 20px;
  border-radius: 999px;
  display: none;
  align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(20, 25, 31, 0.35), 0 2px 6px rgba(20, 25, 31, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.call-fab:hover, .call-fab:active {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(20, 25, 31, 0.4), 0 4px 10px rgba(20, 25, 31, 0.25);
}
.call-fab svg { width: 16px; height: 16px; fill: currentColor; }

/* Only show on mobile — desktop already has Get a Quote button in nav */
@media (max-width: 900px) {
  .call-fab { display: inline-flex; }
}

@media print {
  .call-fab { display: none !important; }
}
