/* Champion Crane Service, Inc. — site styles
   Brand: black #0D0B0A + yellow #FDB813 (Pantone 130 exact #FDB813) */

:root {
  --yellow: #FDB813; /* Pantone 130 */
  --yellow-hover: #FFC933;
  --yellow-dim: #C98A00;
  --black: #0D0B0A;
  --charcoal: #12100F;
  --dark: #1A1715;
  --gray-900: #222;
  --gray-800: #2E2E2E;
  --gray-700: #3D3D3D;
  --gray-500: #6B6B6B;
  --gray-400: #8A8A8A;
  --gray-300: #B0B0B0;
  --gray-100: #F2F2F2;
  --white: #FFFFFF;
  --header-h: 76px;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 8px 28px rgba(0,0,0,.35);
  --font-display: "Helvetica Neue", Helvetica, "Arial Black", Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::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: #222;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow-dim); text-decoration: none; }
a:hover { color: var(--yellow); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: .75rem 1rem;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: oblique;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 .6em;
  font-stretch: condensed;
}
h1 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: 0.06em; }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); letter-spacing: 0.05em; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.125rem; color: var(--gray-500); max-width: 42rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.section { padding: 4rem 0; }
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark .lead { color: var(--gray-300); }
.section--yellow {
  background: var(--yellow);
  color: var(--black);
}
.section--muted { background: var(--gray-100); }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .75rem;
}
.section--yellow .section-label { color: var(--black); }
.section-head { margin-bottom: 2.25rem; }
.section-head p { max-width: 40rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-hover);
  color: var(--black);
  border-color: var(--yellow-hover);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn--outline-yellow {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn--outline-yellow:hover {
  background: var(--yellow);
  color: var(--black);
}
.btn--dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--gray-900);
  color: var(--yellow);
}
.btn--sm { padding: .65rem 1rem; font-size: .75rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.96);
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--white);
  line-height: 0;
}
.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: .15rem;
}
.nav-desktop a {
  color: var(--gray-300);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: .55rem .65rem;
  border-radius: 4px;
  text-decoration: none;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--yellow);
}
.header-actions {
  display: none;
  align-items: center;
  gap: .75rem;
}
.header-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  line-height: 1.15;
}
.header-phones--mobile {
  align-items: center;
}
.header-phone {
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.header-phone:hover { color: var(--yellow) !important; }
.header-phone-tf {
  color: var(--gray-400) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-phone-tf:hover { color: var(--yellow) !important; }
.muted-inline {
  color: var(--gray-500);
  font-size: .85em;
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gray-700);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 1rem 0 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  color: var(--gray-300);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: .85rem 0;
  border-bottom: 1px solid var(--gray-900);
  text-decoration: none;
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] { color: var(--yellow); }
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1rem;
}
.nav-mobile-actions .header-phone {
  text-align: center;
  padding: .5rem;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(460px, 78vh, 720px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* favor boom + Capitol dome, keep clear of left copy */
  object-position: 68% 28%;
}
.hero__overlay {
  display: none; /* photo stays clear — readability via text stroke */
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 1.5rem;
  max-width: 30rem; /* keep copy left; leave boom/Capitol open on the right */
}
.hero__eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: .4rem .7rem;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  -webkit-text-stroke: 2.25px rgba(0, 0, 0, 0.95);
  paint-order: stroke fill;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(0, 0, 0, 0.55);
}
.hero h1 span {
  color: var(--yellow);
  -webkit-text-stroke: 2.25px rgba(0, 0, 0, 0.95);
  paint-order: stroke fill;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(0, 0, 0, 0.55);
}
.hero p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 30rem;
  -webkit-text-stroke: 1.1px rgba(0, 0, 0, 0.92);
  paint-order: stroke fill;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(0, 0, 0, 0.5);
}
/* CTAs sit in a bar under the copy so they don't cover the boom */
.hero-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  background: rgba(13, 11, 10, 0.82);
  border-top: 3px solid var(--yellow);
  padding: 1rem 0;
}
.hero-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.hero-cta .btn--outline {
  background: transparent;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 0 2.75rem;
  border-bottom: 3px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border: 40px solid rgba(247,168,0,.08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-300); margin: 0; max-width: 40rem; }

/* Cards / grids */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { 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); }
}

.card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}
.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .5rem; color: var(--black); }
.card__body p { color: var(--gray-500); flex: 1; font-size: .95rem; }
.card__link {
  margin-top: .75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dim);
}
.card:hover .card__link { color: var(--yellow-dim); }

.feature {
  background: var(--dark);
  border: 1px solid var(--gray-800);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
}
.feature h3 { color: var(--yellow); margin-bottom: .5rem; }
.feature p { color: var(--gray-300); margin: 0; font-size: .95rem; }
.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: .85rem;
  color: var(--yellow);
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (min-width: 700px) {
  .photo-strip { grid-template-columns: repeat(4, 1fr); }
}
.photo-strip figure {
  margin: 0;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark);
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .65rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Why / capabilities */
.cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}
.cap-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--dark);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-300);
}
.cap-list li strong {
  color: var(--white);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: .15rem;
}
.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .75rem;
}

/* Split layouts */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split--reverse > :first-child { order: 2; }
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  min-height: 320px;
}
@media (min-width: 860px) {
  .split-media img { aspect-ratio: 4/5; max-height: 520px; }
}
.split-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: .55rem .8rem;
}

/* Testimonials / capability statements */
.quote-cards { display: grid; gap: 1rem; }
@media (min-width: 800px) { .quote-cards { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  background: var(--dark);
  border: 1px solid var(--gray-800);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
}
.quote-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 1rem;
}
.quote-card p {
  color: var(--gray-300);
  font-size: .95rem;
  margin: 0;
}
.quote-card .tag {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* CTA band */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { margin: 0 0 .4rem; color: var(--white); }
.cta-band p { margin: 0; color: var(--gray-300); max-width: 36rem; }

/* Forms */
.form {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.field .req { color: var(--yellow-dim); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: .75rem .85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fafafa;
  color: #111;
  transition: border-color .15s, background .15s;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #999; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--yellow);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: .9rem;
  color: var(--gray-500);
  margin: 1rem 0 0;
}
.form-success {
  display: none;
  background: #0f2a12;
  color: #c8f0cc;
  border: 1px solid #2d6a35;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--yellow); margin-bottom: .35rem; }
.form-success p { margin: 0; color: #d8f5db; }

/* Contact specifics */
.contact-panel {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--yellow);
}
.contact-panel h2 { color: var(--yellow); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.contact-list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--gray-800);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .25rem;
}
.contact-list a { color: var(--white); }
.contact-list a:hover { color: var(--yellow); }
.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  min-height: 340px;
  background: var(--gray-100);
  filter: grayscale(.15) contrast(1.05);
}

/* Safety / content blocks */
.content-block { max-width: 48rem; }
.content-block h2 { margin-top: 2rem; }
.content-block ul {
  padding-left: 1.15rem;
  color: var(--gray-500);
}
.content-block li { margin-bottom: .45rem; }
.safety-grid .feature { height: 100%; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 3.5rem 0 0;
  border-top: 3px solid var(--yellow);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 22rem; }
.footer-col h4 {
  color: var(--yellow);
  font-size: .8rem;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: .95rem;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--gray-900);
  padding: 1.15rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--yellow); }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-yellow { color: var(--yellow); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.accent-bar {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin: 0 0 1.25rem;
}

@media (max-width: 480px) {
  .hero__content { padding: 2.5rem 0 2.75rem; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}


/* About — heritage OG logo */
.og-logo-band {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: center;
}
.og-logo {
  margin: 0;
  text-align: center;
  background: #fff;
  padding: 1.25rem 1.5rem 1rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
  max-width: 280px;
}
.og-logo img {
  margin: 0 auto 0.75rem;
  width: min(220px, 100%);
  height: auto;
}
.og-logo figcaption {
  font-size: 0.85rem;
  color: var(--gray-600, #666);
  letter-spacing: 0.02em;
}
