:root {
  --orange: #ff6600;
  --orange-dark: #e05800;
  --ink: #1a1a1a;
  --ink-soft: #5a5a5a;
  --paper: #ffffff;
  --paper-deep: #f5f5f3;
  --line: #e5e2dc;
  --radius: 6px;
  --shadow: 0 12px 28px rgba(20, 20, 20, 0.09);
  --sans: "Segoe UI", Arial, sans-serif;
  --display: Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 15.5px;
}

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--ink);
}

.page-title { font-size: clamp(24px, 3vw, 32px); margin: 28px 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.section-title { font-size: clamp(21px, 2.5vw, 27px); margin-bottom: 22px; }
.section-lead { color: var(--ink-soft); max-width: 700px; margin: -10px 0 26px; font-size: 15.5px; }

.breadcrumbs { font-size: 12.5px; color: #999; margin: 14px 0 0; }
.breadcrumbs a { color: #999; }

/* Top bar */
.top-bar { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; }
.top-bar .wrap { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.top-bar a { color: #fff; text-decoration: none; }
.top-bar .hours { margin-left: auto; color: rgba(255,255,255,0.6); }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.header-row { display: flex; align-items: center; gap: 18px; padding: 14px 0; }
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; font-size: 13.5px; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: var(--radius); }
.main-nav a:hover, .main-nav a.active { background: var(--paper-deep); color: var(--orange-dark); }
.header-call { text-align: right; flex-shrink: 0; }
.header-call a { display: block; font-weight: 700; font-size: 16px; color: var(--ink); }
.header-call .btn-call { display: inline-block; margin-top: 4px; background: var(--orange); color: #fff; font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.header-call .btn-call:hover { background: var(--orange-dark); text-decoration: none; }

/* Hero */
.hero { position: relative; height: 380px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.35) 60%, rgba(20,20,20,0.08) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; color: #fff; max-width: 620px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; font-weight: 700; color: var(--orange); margin: 0 0 14px; }
.hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.hero p { color: rgba(255,255,255,0.9); font-size: 16px; margin: 0 0 24px; }
.btn { display: inline-block; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 14.5px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--orange-dark); text-decoration: none; }

/* Content */
.content-section { padding: 52px 0; }
.content-section.alt { background: var(--paper-deep); }
.article-body p { margin: 0 0 16px; color: var(--ink-soft); font-size: 15.5px; }
.article-body ul { color: var(--ink-soft); margin: 0 0 16px; padding-left: 20px; }
.article-body li { margin-bottom: 7px; }
.article-body strong { color: var(--ink); }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cat-card img { width: 100%; height: 170px; object-fit: cover; }
.cat-card-body { padding: 18px 20px; }
.cat-card h3 { font-size: 17px; margin-bottom: 8px; }
.cat-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { text-align: center; }
.benefit-card img { width: 64px; height: 64px; margin: 0 auto 16px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* Projects grid */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.project-card img { width: 100%; height: 160px; object-fit: cover; }
.project-card-label { padding: 12px 16px; background: #fff; font-size: 13.5px; font-weight: 700; }
.projects-more { list-style: none; margin: 24px 0 0; padding: 0; columns: 2; column-gap: 30px; }
.projects-more li { font-size: 14px; color: var(--ink-soft); padding: 6px 0; border-bottom: 1px dashed var(--line); break-inside: avoid; }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 30px; }
.price-table caption { text-align: left; font-family: var(--display); font-weight: 800; font-size: 18px; margin-bottom: 12px; color: var(--ink); }
.price-table th { background: var(--paper-deep); text-align: left; padding: 9px 12px; border: 1px solid var(--line); font-size: 11.5px; text-transform: uppercase; color: var(--ink-soft); }
.price-table td { padding: 9px 12px; border: 1px solid var(--line); color: var(--ink-soft); }
.price-table td.price { color: var(--ink); font-weight: 700; white-space: nowrap; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.review-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; }
.review-card cite { font-style: normal; font-weight: 700; font-size: 13.5px; color: var(--ink); }

/* Contact box */
.contact-box { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 26px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-box h4 { margin: 0 0 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); }
.contact-box p { margin: 0; font-size: 15px; }

/* Crane services table */
.simple-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.simple-table th { text-align: left; background: var(--paper-deep); padding: 10px 14px; border: 1px solid var(--line); font-size: 12px; text-transform: uppercase; color: var(--ink-soft); }
.simple-table td { padding: 10px 14px; border: 1px solid var(--line); color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 40px 0 22px; margin-top: 10px; font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); }
.footer-block h4 { text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); margin: 0 0 12px; }
.footer-block p, .footer-block a { display: block; margin: 0 0 8px; font-size: 13.5px; color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-block a:hover { color: var(--orange); }
.footer-bottom { padding-top: 16px; font-size: 12px; color: rgba(255,255,255,0.45); }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero { height: 320px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-more { columns: 1; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
