/* Trent Neumann Construction — flatheadcranes.com
   Static rebuild, August 2026. Single stylesheet, no framework. */

:root {
  --blue: #1e73be;          /* phone button / links */
  --band-blue: #036499;     /* footer CTA band */
  --card-light: #dbedf6;    /* light blue cards */
  --card-dark: #33579f;     /* fleet spec cards (rgba(0,45,135,.8) over white) */
  --slate: #1c3345;         /* dark slate band */
  --ink: #404040;           /* body text */
  --nav: #8baab9;           /* nav links */
  --hero-overlay: rgba(47, 72, 120, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  background: #0c0c0c;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header .logo img { height: 58px; width: auto; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.site-header nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nav);
  text-decoration: none;
}
.site-header nav a:hover, .site-header nav a.active { color: #fff; }
.phone-btn {
  background: var(--blue);
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none !important;
  padding: 12px 22px;
  border-radius: 4px;
}
.phone-btn:hover { background: #1a65a8; text-decoration: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0c0c0c;
    flex-direction: column;
    padding: 18px 22px 26px;
    gap: 20px;
  }
  .site-header nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero .wrap { position: relative; width: 100%; }
.hero h1, .hero .h1 {
  font-size: 54px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}
.hero .btn-outline {
  display: inline-block;
  margin-top: 46px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 13px 34px;
  text-decoration: none;
}
.hero .btn-outline:hover { background: rgba(255,255,255,.12); }

/* Page-title hero (cranes / helical) */
.hero.page-hero { text-align: center; min-height: 330px; }
.hero.page-hero .title-lg {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.hero.page-hero .title-sub {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c7ccd4;
}

/* ---------- Bands ---------- */
.band {
  text-align: center;
  padding: 46px 22px;
  color: #fff;
}
.band.slate { background: var(--slate); }
.band.black { background: #000; }
.band img.lion { height: 44px; width: auto; margin: 0 auto 14px; }
.band p { max-width: 620px; margin: 0 auto; font-size: 17px; }

.band.gray {
  background: #7f7f7f;
  padding: 60px 22px;
}
.band.gray h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 24px;
}
.btn-solid {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-solid:hover { background: #1a65a8; text-decoration: none; }

/* ---------- Cards / grids ---------- */
.cards-3 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.card {
  background: var(--card-light);
  padding: 44px 34px;
  text-align: center;
}
.card h3 { font-size: 18px; font-weight: 900; color: #000; margin-bottom: 14px; }
.card p { font-size: 15px; }

/* Fleet grid (cranes page + homepage) */
.fleet {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.fleet .photo-cell {
  min-height: 340px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fleet .spec-cell {
  background: var(--card-dark);
  color: #fff;
  text-align: center;
  padding: 56px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fleet .spec-cell h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.fleet .spec-cell ul { list-style: none; }
.fleet .spec-cell li { font-size: 15px; margin: 4px 0; }
.fleet .spec-cell li::before { content: '\00b7\00a0'; }

/* two-up light cards under fleet */
.cards-2 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Gallery rows */
.gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery img { width: 100%; height: 380px; object-fit: cover; }

@media (max-width: 880px) {
  .cards-3, .cards-2, .fleet, .gallery { grid-template-columns: 1fr; }
  .fleet .photo-cell { min-height: 260px; }
  .hero h1, .hero .h1 { font-size: 38px; }
  .hero.page-hero .title-lg { font-size: 32px; }
  .hero.page-hero .title-sub { font-size: 26px; }
}

/* ---------- Feature section (Modern Lifting Technology) ---------- */
.feature {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.feature h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
  margin-bottom: 22px;
}
.feature img { width: 100%; height: auto; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; padding: 50px 22px; }
  .feature h2 { font-size: 30px; }
}

/* ---------- Google reviews ---------- */
.greviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 22px 90px;
}
.greviews-head {
  text-align: center;
  margin-bottom: 40px;
}
.greviews-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.greviews-brand svg { width: 30px; height: 30px; }
.greviews-brand h2 {
  font-size: 32px;
  font-weight: 900;
  color: #000;
}
.greviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.greviews-score .score { font-size: 34px; font-weight: 900; color: #000; }
.greviews-score .stars { color: #fbbc04; font-size: 24px; letter-spacing: 2px; }
.greviews-score .count { color: #757575; font-size: 15px; }
.greviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.greview {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  padding: 22px;
}
.greview-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.gavatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.gname { font-weight: 700; color: #202124; font-size: 15px; }
.gmeta { font-size: 12.5px; color: #757575; }
.gmark { width: 20px; height: 20px; margin-left: auto; flex: none; }
.gstars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.gstars .goff { color: #dadce0; }
.greview p { font-size: 14.5px; line-height: 1.6; color: #3c4043; }
@media (max-width: 880px) {
  .greviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonials (legacy) ---------- */
.testimonials {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 22px 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.testimonial { text-align: center; }
.testimonial blockquote {
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}
.testimonial .name { font-weight: 900; color: #000; font-size: 17px; }
.testimonial .org { font-size: 13px; color: #8a8a8a; }
@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- Contact page ---------- */
.contact-title {
  text-align: center;
  padding: 56px 22px 10px;
}
.contact-title h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #000;
}
.contact-title img { height: 52px; width: auto; margin: 12px auto 0; }

.contact-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--card-light);
  padding: 44px 40px;
  text-align: center;
}
.form-card .portrait {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid #333;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  background: #fff;
}
.form-card h2 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 26px;
}
.form-card label {
  display: block;
  text-align: center;
  font-size: 16px;
  margin: 18px 0 8px;
}
.form-card label .req { color: #e02b20; }
.form-card input, .form-card textarea {
  width: 100%;
  border: 1px solid #cfd6da;
  border-radius: 5px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}
.form-card .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card button {
  margin-top: 24px;
  background: #4d9de8;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 13px 26px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}
.form-card button:hover { background: var(--blue); }

.contact-info h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}
.contact-info ul { list-style: none; }
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 16px;
}
.contact-info svg { width: 18px; height: 18px; fill: #e02b20; flex: none; }

.map-embed { margin-top: 50px; }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Article / legal pages ---------- */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 22px 90px;
}
.article h1 { font-size: 36px; font-weight: 900; color: #000; margin-bottom: 30px; }
.article h2 { font-size: 24px; font-weight: 700; color: #000; margin: 36px 0 14px; }
.article p { margin: 16px 0; }
.article ul { margin: 16px 0 16px 24px; }
.article li { margin: 6px 0; }
.article .certified { font-weight: 900; color: #000; margin-top: 34px; }
.article hr { border: 0; border-top: 1px solid #d8d8d8; margin: 34px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--band-blue); color: #fff; }
.site-footer .top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 22px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer .cta h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
}
.site-footer .top a.btn-pill,
.btn-pill {
  display: inline-block;
  background: var(--card-light);
  color: var(--slate);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-pill:hover { background: #fff; text-decoration: none; }
.site-footer h4 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .top ul { list-style: none; }
.site-footer .top li { margin: 10px 0; }
.site-footer .top a { color: #cfe2ee; text-decoration: none; font-size: 15px; }
.site-footer .top a:hover { color: #fff; }

.site-footer .bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-footer .bottom img { height: 34px; width: auto; opacity: .75; }
.site-footer .bottom .legal {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.site-footer .bottom .legal a { color: #e8f1f7; font-size: 14px; text-decoration: none; }
.site-footer .bottom .legal a:hover { text-decoration: underline; }
.site-footer .social { display: flex; gap: 10px; }
.site-footer .social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #dbedf6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .social svg { width: 14px; height: 14px; fill: var(--band-blue); }

@media (max-width: 880px) {
  .site-footer .top { grid-template-columns: 1fr; gap: 30px; }
  .site-footer .bottom { flex-wrap: wrap; }
  .site-footer .bottom .legal { margin-left: 0; }
}
