/* ==========================================================================
   CybrWzrds platform — site stylesheet (single file, mobile-first)
   Re-theme a site by editing the custom properties below.
   ========================================================================== */

:root {
  /* Kuk Trucking brand palette */
  --c-primary: #4a90e2;
  --c-primary-dark: #2f6cb5;
  --c-accent: #ffb400;
  --c-accent-dark: #dd9c00;
  --c-navy: #0a2a43;
  --c-charcoal: #2a2a2a;
  --c-ink: #2a2a2a;
  --c-ink-soft: #55606a;
  --c-bg: #ffffff;
  --c-bg-alt: #f7f7f7;
  --c-line: #dfdfdf;
  --c-error: #b23a3a;
  --c-error-bg: #fbeaea;
  --c-success: #23713f;
  --c-success-bg: #e8f6ec;

  --font-body: 'Arimo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 18px rgba(10, 42, 67, 0.10);
  --container: 1120px;
}

/* ---- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); }
a:hover { color: var(--c-primary-dark); }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; font-family: var(--font-head); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
code { background: var(--c-bg-alt); padding: 0.1em 0.35em; border-radius: 4px; font-size: 0.92em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section-alt { background: var(--c-bg-alt); }
.prose { max-width: 46rem; }
.prose ul { padding-left: 1.25rem; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  border: 2px solid transparent;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-accent); color: var(--c-charcoal); }
.btn-accent { background: var(--c-accent); color: var(--c-charcoal); }
.btn-accent:hover { background: var(--c-accent-dark); color: var(--c-charcoal); }
.btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.brand { font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--c-ink); display: flex; align-items: center; gap: 0.4rem; }
.brand-mark { color: var(--c-accent); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--c-ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { text-decoration: none; color: var(--c-ink-soft); font-weight: 600; }
.site-nav a:hover { color: var(--c-primary); }
.nav-cta {
  background: var(--c-primary); color: #fff !important;
  padding: 0.45rem 1rem; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--c-primary-dark); }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-bg); border-bottom: 1px solid var(--c-line);
    padding: 0.5rem 1.25rem 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--c-line); }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 0.6rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(10, 42, 67, 0.78), rgba(10, 42, 67, 0.82)), url('/assets/img/hero-truck.jpg') center 40% / cover no-repeat;
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
}
.hero h1 { margin: 0 auto 0.75rem; max-width: 56rem; text-transform: uppercase; letter-spacing: 0.02em; }
.hero-kicker {
  display: inline-block; background: var(--c-accent); color: var(--c-charcoal);
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; padding: 0.35rem 0.9rem; margin-bottom: 1.1rem;
}
.hero-sub { font-size: 1.2rem; max-width: 42rem; margin: 0 auto 1.9rem; opacity: 0.95; }
.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--c-navy); }

.page-hero { background: var(--c-navy); color: #fff; padding: 3rem 0; }
.page-hero h1 { margin: 0; text-transform: uppercase; letter-spacing: 0.02em; }
.page-hero .page-hero-sub { margin: 0.6rem 0 0; max-width: 46rem; opacity: 0.9; font-size: 1.05rem; }

/* ---- Cards --------------------------------------------------------------- */
.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 1.5rem; }
.card {
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); text-decoration: none; color: inherit;
}
.card h3 { margin-top: 0; color: var(--c-primary); }
a.card:hover { border-color: var(--c-primary); }
.cta-band { text-align: center; }

/* ---- Forms ---------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.form-card {
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 1rem; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.lead-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%; padding: 0.65rem 0.8rem; font: inherit;
  border: 1px solid var(--c-line); border-radius: 6px; background: var(--c-bg);
  color: var(--c-ink);
}
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--c-primary); border-color: var(--c-primary); }
.captcha-field { max-width: 220px; }

/* Honeypot — visually removed but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.alert { border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.alert ul { margin: 0; padding-left: 1.2rem; }
.alert-error { background: var(--c-error-bg); color: var(--c-error); border: 1px solid var(--c-error); }
.alert-success { background: var(--c-success-bg); color: var(--c-success); border: 1px solid var(--c-success); }

/* ---- 404 ------------------------------------------------------------------ */
.notfound { text-align: center; }
.notfound-code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; color: var(--c-line); margin: 0; line-height: 1; }
.notfound-sub { max-width: 36rem; margin: 0.75rem auto 0; }
.notfound-links { text-align: left; margin: 2rem 0; }

/* ---- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--c-ink); color: #d6ddda; margin-top: 3rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding: 2.75rem 1.25rem; }
.footer-brand { font-weight: 800; font-size: 1.15rem; color: #fff; margin-top: 0; }
.footer-social a { display: inline-flex; margin-right: 0.75rem; color: #d6ddda; }
.footer-social a:hover { color: var(--c-accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1rem; padding-bottom: 1rem; font-size: 0.9rem; }

/* ---- Events: calendar ------------------------------------------------------ */
.calendar { margin-bottom: 3rem; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.cal-title { margin: 0; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
}
.cal-dow { background: var(--c-bg-alt); font-weight: 700; text-align: center; padding: 0.5rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--c-line); }
.cal-cell { min-height: 84px; border-top: 1px solid var(--c-line); border-left: 1px solid var(--c-line); padding: 0.3rem 0.4rem; font-size: 0.85rem; position: relative; }
.cal-cell:nth-child(-n+7) { border-top: 0; }
.cal-cell.other { background: var(--c-bg-alt); color: var(--c-ink-soft); }
.cal-cell.today .cal-day { background: var(--c-accent); color: #fff; border-radius: 50%; }
.cal-day { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; font-weight: 600; }
.cal-event {
  display: block; margin-top: 0.25rem; padding: 0.15rem 0.35rem;
  background: var(--c-primary); color: #fff; border-radius: 4px;
  font-size: 0.75rem; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cal-event:hover { background: var(--c-primary-dark); color: #fff; }
@media (max-width: 640px) {
  .cal-cell { min-height: 56px; }
  .cal-event { font-size: 0; padding: 0; width: 8px; height: 8px; border-radius: 50%; margin: 0.25rem auto 0; }
}

.upcoming-title { margin-top: 0; }
.event-list { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.event-card {
  border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit; background: var(--c-bg); box-shadow: var(--shadow);
}
.event-card:hover { border-color: var(--c-primary); }
.event-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.event-card-body { padding: 1rem 1.25rem 1.25rem; }
.event-date { color: var(--c-accent); font-weight: 700; font-size: 0.9rem; margin: 0 0 0.25rem; }
.event-card h3 { margin: 0 0 0.25rem; }
.event-venue { color: var(--c-ink-soft); margin: 0 0 0.5rem; }

.badge { display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.badge-live { background: var(--c-success-bg); color: var(--c-success); }
.badge-muted { background: var(--c-bg-alt); color: var(--c-ink-soft); }

/* ---- Events: detail -------------------------------------------------------- */
.event-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.event-detail-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .event-detail-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.breadcrumbs { font-size: 0.9rem; color: var(--c-ink-soft); margin-bottom: 0.5rem; }
.event-date-big { color: var(--c-accent); font-weight: 700; font-size: 1.1rem; }
.venue-block {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--c-bg-alt); border-radius: var(--radius); padding: 1.25rem; margin-top: 2rem;
}
.venue-block h2 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.venue-logo { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; }
.order-card { position: sticky; top: 84px; }
.ticket-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--c-line); }
.ticket-row input[type="number"] { width: 74px; }
.ticket-list { list-style: none; padding: 0; }
.ticket-list li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--c-line); }
.low-stock { color: var(--c-error); font-style: normal; font-size: 0.85rem; }
.pay-note { font-size: 0.9rem; color: var(--c-ink-soft); }

/* ---- Tickets (printable) ---------------------------------------------------- */
.ticket-container { max-width: 720px; }
.ticket-toolbar { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.ticket-master {
  border: 2px solid var(--c-ink); border-radius: var(--radius); padding: 2rem; background: var(--c-bg);
}
.ticket-brand { text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--c-primary); margin: 0; }
.ticket-head h1 { margin: 0.25rem 0; }
.ticket-when { font-weight: 700; margin: 0.25rem 0; }
.ticket-venue { color: var(--c-ink-soft); margin: 0.25rem 0 0; }
.ticket-code-box { text-align: center; border: 2px dashed var(--c-ink); border-radius: var(--radius); margin: 1.5rem 0; padding: 1rem; }
.ticket-code-label { margin: 0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.ticket-code { font-size: clamp(2rem, 8vw, 3.2rem); font-weight: 800; letter-spacing: 0.2em; margin: 0.25rem 0 0; font-family: ui-monospace, monospace; }
.ticket-items { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.ticket-items th, .ticket-items td { text-align: left; padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--c-line); }
.ticket-holder { color: var(--c-ink-soft); }
.stub-heading { margin-top: 2.5rem; }
.ticket-stubs { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: 1rem; }
.ticket-stub {
  border: 2px dashed var(--c-ink); border-radius: var(--radius); padding: 1rem 1.25rem;
  break-inside: avoid; background: var(--c-bg);
}
.stub-brand { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; font-weight: 700; color: var(--c-primary); margin: 0; }
.stub-event { font-weight: 800; margin: 0.2rem 0; }
.stub-when, .stub-type, .stub-venue { margin: 0.15rem 0; font-size: 0.85rem; }
.stub-code { font-family: ui-monospace, monospace; font-weight: 800; font-size: 1.25rem; letter-spacing: 0.15em; margin: 0.4rem 0 0.15rem; }

@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  .section { padding: 0; }
  body { background: #fff; }
  .ticket-master, .ticket-stub { box-shadow: none; }
}

/* ==========================================================================
   Kuk Trucking custom components
   ========================================================================== */

/* ---- Header ---- */
.brand-logo { width: 44px; height: 44px; border-radius: 4px; }
.brand-text { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1; }
.brand-sub { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; color: var(--c-ink-soft); }
.header-phone { display: none; align-items: center; gap: 0.4rem; text-decoration: none; font-family: var(--font-head); font-weight: 700; color: var(--c-navy); }
.header-phone svg { color: var(--c-accent); }
.site-nav a:hover { color: var(--c-primary); }
.nav-cta { background: var(--c-accent); color: var(--c-charcoal) !important; font-family: var(--font-head); border-radius: 2px; }
.nav-cta:hover { background: var(--c-accent-dark); }
@media (max-width: 800px) {
  .header-phone { display: inline-flex; margin-left: auto; margin-right: 0.75rem; }
  .site-nav .nav-cta { display: none; } /* phone already in header + call bar */
}

/* ---- Sticky mobile tap-to-call bar ---- */
.mobile-call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--c-accent); color: var(--c-charcoal);
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  text-align: center; padding: 0.9rem 1rem; text-decoration: none;
  align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.18);
}
@media (max-width: 800px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 3.4rem; }
  .site-footer { margin-bottom: 0; }
}

/* ---- Sections ---- */
.section-dark { background: var(--c-navy); color: #e8eef4; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a:not(.btn) { color: var(--c-accent); }
.section-title { text-transform: uppercase; letter-spacing: 0.03em; }
.section-lead { max-width: 46rem; color: var(--c-ink-soft); }
.section-dark .section-lead { color: #b9c7d4; }

/* ---- Trust strip / stats ---- */
.trust-strip { background: var(--c-charcoal); color: #fff; padding: 1.6rem 0; }
.trust-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); text-align: center; }
.trust-item .trust-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--c-accent); line-height: 1.1; }
.trust-item .trust-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }

/* ---- Cards ---- */
.card h3 { font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0.03em; }
.card .card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; margin-bottom: 1rem; }
a.card { display: block; }
a.card .card-more { color: var(--c-primary); font-weight: 700; font-family: var(--font-head); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; }
a.card:hover .card-more { color: var(--c-accent-dark); }

/* ---- Testimonials ---- */
.testimonials { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1.5rem; }
.testimonial { background: var(--c-bg); border: 1px solid var(--c-line); border-left: 4px solid var(--c-accent); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); }
.testimonial p { margin: 0 0 0.75rem; font-style: italic; }
.testimonial cite { font-style: normal; font-weight: 700; font-family: var(--font-head); }
.stars { color: var(--c-accent); letter-spacing: 0.15em; font-size: 1rem; }

/* ---- FAQ accordion (native details/summary) ---- */
.faq { max-width: 52rem; }
.faq details { border: 1px solid var(--c-line); border-radius: var(--radius); margin-bottom: 0.6rem; background: var(--c-bg); }
.faq summary {
  cursor: pointer; padding: 0.9rem 1.1rem; font-weight: 700; font-family: var(--font-head);
  list-style: none; position: relative; padding-right: 2.4rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  color: var(--c-accent); font-size: 1.4rem; font-weight: 800; line-height: 1;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details > div { padding: 0 1.1rem 1rem; color: var(--c-ink-soft); }

/* ---- Service page split sections ---- */
.split { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.15fr 1fr; }
  .split.split-flip > .split-img { order: 2; }
}
.split-img img { width: 100%; height: auto; max-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { columns: 2; gap: 2rem; padding-left: 1.25rem; }
.check-list li { margin-bottom: 0.35rem; break-inside: avoid; }
@media (max-width: 560px) { .check-list { columns: 1; } }

/* ---- Fleet table ---- */
.fleet-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.fleet-table th, .fleet-table td { text-align: left; padding: 0.6rem 0.7rem; border-bottom: 1px solid var(--c-line); }
.fleet-table th { font-family: var(--font-head); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--c-ink-soft); }
.table-scroll { overflow-x: auto; }

/* ---- Portfolio ---- */
.project-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 1.5rem; }
.project { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-body { padding: 1.2rem 1.4rem 1.4rem; }
.project-loc { color: var(--c-primary); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.1em; margin: 0 0 0.3rem; }
.project h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.project p { margin: 0; color: var(--c-ink-soft); }

/* ---- Calculator ---- */
.calc-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1.1fr 1fr; } }
.calc-card { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.calc-card .field label { display: block; font-weight: 700; font-family: var(--font-head); margin-bottom: 0.3rem; }
.calc-card input, .calc-card select { width: 100%; padding: 0.65rem 0.8rem; font: inherit; border: 1px solid var(--c-line); border-radius: 2px; background: var(--c-bg); color: var(--c-ink); }
.calc-card input:focus, .calc-card select:focus { outline: 2px solid var(--c-primary); border-color: var(--c-primary); }
.calc-row { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .calc-row { grid-template-columns: 1fr; } }
.depth-presets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.depth-presets button {
  font: inherit; font-size: 0.82rem; padding: 0.3rem 0.7rem; cursor: pointer;
  border: 1px solid var(--c-line); background: var(--c-bg-alt); border-radius: 999px;
}
.depth-presets button:hover { border-color: var(--c-primary); color: var(--c-primary); }
.calc-results { background: var(--c-navy); color: #fff; border-radius: var(--radius); padding: 1.75rem; }
.calc-results h2 { margin-top: 0; }
.calc-out { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin: 1.25rem 0; }
.calc-out-box { background: rgba(255, 255, 255, 0.08); border-radius: var(--radius); padding: 1rem; text-align: center; }
.calc-out-num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--c-accent); line-height: 1.1; }
.calc-out-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.calc-loads { margin: 0 0 1rem; color: #cfdae4; }
.calc-note { font-size: 0.85rem; color: #9fb2c2; }
.calc-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* ---- Contact info panel ---- */
.info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.info-list li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; }
.info-list svg { flex-shrink: 0; color: var(--c-accent); margin-top: 0.2rem; }
.info-list a { color: var(--c-primary); font-weight: 700; }
.big-phone { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }

/* ---- Footer ---- */
.site-footer { background: var(--c-navy); color: #c8d4de; }
.footer-brand { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--c-accent); }
.footer-usdot { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.08em; color: var(--c-accent); }

/* ---- CTA band ---- */
.cta-band h2 { text-transform: uppercase; }
.cta-band .btn { margin: 0.25rem; }
