/* Grapple Service — global stylesheet. Single file, custom properties, mobile-first. */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f7;
  --color-ink: #14181b;
  --color-ink-soft: #43494d;
  --color-border: #dfe4e6;
  --color-teal: #1aa7b8;
  --color-teal-dark: #12818f;
  --color-teal-ink: #063a41;
  --color-overlay: rgba(10, 20, 22, 0.62);
  --color-overlay-strong: rgba(6, 12, 14, 0.78);
  --color-danger: #b3261e;
  --color-success: #1f7a3d;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 3px rgba(20, 24, 27, 0.08), 0 8px 24px rgba(20, 24, 27, 0.06);
  --shadow-pop: 0 12px 32px rgba(6, 20, 22, 0.28);
  --header-h: 68px;
  --bottom-bar-h: 60px;
  --container: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bottom-bar-h);
}
img { max-width: 100%; display: block; }
a { color: var(--color-teal-dark); }
a:hover { color: var(--color-teal); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

:focus-visible {
  outline: 3px solid var(--color-teal-dark);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-teal-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-teal); color: #062226; }
.btn-primary:hover { background: var(--color-teal-dark); color: #fff; }
.btn-dark { background: var(--color-ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
.btn-outline { background: transparent; border-color: currentColor; color: var(--color-ink); }
.btn-outline:hover { background: var(--color-ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small { font-weight: 600; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-ink-soft); }

.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-bottom-color: var(--color-teal); color: var(--color-teal-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.call-btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-teal);
  color: #062226;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.call-btn-header:hover { background: var(--color-teal-dark); color: #fff; }
.call-btn-header svg { flex-shrink: 0; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
}
.nav-toggle svg { pointer-events: none; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 8px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.mobile-nav .mobile-call {
  margin: 18px 20px 0;
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Sticky bottom mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--bottom-bar-h);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-bar .bar-call { background: var(--color-teal); color: #062226; }
.mobile-bar .bar-quote { background: var(--color-ink); color: #fff; }
@media (min-width: 900px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-overlay-strong) 0%, var(--color-overlay) 55%, var(--color-overlay-strong) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
  color: #8fe3ec;
  margin-bottom: 12px;
}
.hero h1 { margin-bottom: 14px; text-wrap: balance; }
.hero-sub { font-size: 1.15rem; max-width: 46ch; color: #f1f6f7; margin-bottom: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-form-card {
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-pop);
  max-width: 460px;
}
.hero-form-card h2 { font-size: 1.3rem; margin-bottom: 4px; }
.hero-form-card .form-note { color: var(--color-ink-soft); font-size: 0.9rem; margin-bottom: 16px; }

@media (min-width: 980px) {
  .hero .container { grid-template-columns: 1.1fr 0.9fr; align-items: center; padding-top: 72px; padding-bottom: 72px; }
}

/* Page header (non-home) */
.page-hero {
  position: relative;
  color: #fff;
  padding: 64px 0 48px;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: var(--color-overlay-strong); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 60ch; color: #f1f6f7; font-size: 1.08rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.85rem; margin-bottom: 14px; color: #dce8ea; }
.breadcrumbs a { color: #dce8ea; text-decoration: underline; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: rgba(255,255,255,0.5); }

/* Sections */
section { padding: 56px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-ink); color: #fff; }
.section-dark a { color: #8fe3ec; }
.section-head { max-width: 68ch; margin-bottom: 34px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-teal-dark);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: #8fe3ec; }
.lede { font-size: 1.1rem; color: var(--color-ink-soft); }

/* Grid helpers */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.card h3 { margin-bottom: 10px; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(26, 167, 184, 0.12);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-link { display: inline-block; margin-top: 10px; font-weight: 700; text-decoration: none; }

.service-card { display: flex; flex-direction: column; }
.service-card img { border-radius: var(--radius); margin-bottom: 16px; aspect-ratio: 4/3; object-fit: cover; }

/* Two-col media/content */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-card); }
.split.reverse .split-media { order: 2; }

/* Process steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #062226;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Gallery */
.gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery a:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.82rem;
  padding: 22px 10px 8px;
}

/* Trust / why-choose list */
.trust-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
@media (min-width: 760px) { .trust-list { grid-template-columns: repeat(3, 1fr); } }
.trust-list li { display: flex; gap: 14px; align-items: flex-start; }
.trust-list .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(26,167,184,0.15); color: var(--color-teal-dark); display: flex; align-items: center; justify-content: center; }
.section-dark .trust-list .icon { background: rgba(143,227,236,0.15); color: #8fe3ec; }

/* What we hire us for / haul list */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--color-teal-dark); }
.x-list li svg { color: var(--color-danger); }

/* Band / CTA strip */
.band {
  background: var(--color-teal-ink);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.band h2 { color: #fff; }
.band p { color: #d8eef1; font-size: 1.05rem; }
.band .btn-primary { color: #062226; }

/* Forms */
.form-grid { display: grid; gap: 10px; }
@media (min-width: 560px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-weight: 600; font-size: 0.88rem; }
.field .req { color: var(--color-danger); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--color-teal-dark); }
.field textarea { resize: vertical; min-height: 64px; }
.field-error { color: var(--color-danger); font-size: 0.8rem; margin: 0; }
.field-error:empty { display: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--color-danger); }
.field-hint { color: var(--color-ink-soft); font-size: 0.82rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-status {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  margin-top: 4px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #e6f4ea; color: var(--color-success); }
.form-status.error { background: #fbe9e7; color: var(--color-danger); }
.form-legal { font-size: 0.78rem; color: var(--color-ink-soft); margin-top: 10px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-teal-dark);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding: 0 20px 20px; color: var(--color-ink-soft); }

/* City list chips */
.city-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.city-list a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.city-list a:hover { border-color: var(--color-teal); color: var(--color-teal-dark); }

/* Footer */
.site-footer { background: var(--color-ink); color: #cfd6d9; padding: 52px 0 26px; }
.footer-grid { display: grid; gap: 32px; margin-bottom: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer a { color: #cfd6d9; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 34px; filter: brightness(0) invert(1); }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #9aa4a8;
}
.footer-bottom .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.tag {
  display: inline-block;
  background: rgba(26,167,184,0.12);
  color: var(--color-teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 6px 6px 0;
}
.note-box {
  background: #fff7e6;
  border: 1px solid #f0dfb4;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: #6b5217;
}
