/* Boulton's Tool Hire
   Brand palette is derived from the supplied logo:
   near-black background, orange accent, white and industrial grey.
*/

:root {
  --black: #080808;
  --black-2: #111111;
  --orange: #f26a00;
  --orange-dark: #c84f00;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --grey-100: #ececea;
  --grey-200: #d7d7d3;
  --grey-500: #777771;
  --grey-700: #3a3a38;
  --text: #171717;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 16px 45px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #ddd;
  font-size: .93rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 7px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 25%, rgba(242,106,0,.14), transparent 32%),
    linear-gradient(135deg, #080808 0%, #111 100%);
  border-bottom: 1px solid #252525;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--orange);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding-block: 70px;
}

.hero-copy { max-width: 700px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow-dark { color: var(--orange-dark); }

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 950;
  text-transform: uppercase;
}

h1 span { color: var(--orange); }

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #cfcfcd;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}
.button-primary:hover { background: #ff7913; }

.button-secondary {
  border-color: #555;
  color: #fff;
}
.button-secondary:hover { border-color: #888; }

.button-outline {
  border-color: var(--orange);
  color: var(--orange);
}
.button-outline:hover {
  background: var(--orange);
  color: #fff;
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin-top: 48px;
  border-top: 1px solid #333;
  padding-top: 20px;
  gap: 20px;
}

.quick-points div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quick-points strong { font-size: .93rem; }
.quick-points span { color: #aaa; font-size: .82rem; }

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.55));
}

.orange-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(242,106,0,.11);
  filter: blur(60px);
}

.section {
  padding: 92px 0;
}

.section-light { background: var(--off-white); }
.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(242,106,0,.08), transparent 30%),
    var(--black);
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2,
.info-grid h2,
.cta-inner h2 {
  margin-bottom: 15px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 950;
  text-transform: uppercase;
}

.section-intro {
  max-width: 540px;
  margin: 0;
  color: var(--grey-500);
}

.section-heading-dark .section-intro { color: #aaa; }

.equipment-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.search-box input {
  width: min(100%, 380px);
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #bbb;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
}

.search-box input:focus {
  outline: 3px solid rgba(242,106,0,.2);
  border-color: var(--orange);
}

.price-note {
  color: var(--grey-500);
  font-size: .86rem;
  text-align: right;
}

.equipment-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.equipment-table th,
.equipment-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}

.equipment-table th {
  background: var(--black);
  color: #fff;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.equipment-table th:first-child { border-radius: 11px 0 0 0; }
.equipment-table th:last-child { border-radius: 0 11px 0 0; }

.equipment-table th small {
  display: block;
  color: #aaa;
  font-size: .72rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.equipment-table td {
  font-size: .96rem;
}

.equipment-table tbody tr:nth-child(even) { background: #fafafa; }
.equipment-table tbody tr:hover { background: #fff2e9; }

.equipment-table td:not(:first-child) {
  font-weight: 800;
  white-space: nowrap;
}

.no-results {
  padding: 25px;
  margin-top: 12px;
  border: 1px dashed #aaa;
  border-radius: 10px;
  text-align: center;
  color: var(--grey-500);
}

.equipment-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 25px;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: #fff;
}

.equipment-foot p { margin: 0; }

.text-link {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid #2c2c2c;
  border-radius: var(--radius);
  background: #101010;
}

.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.step-card p { margin: 0; color: #aaa; }
.step-card a { color: #fff; font-weight: 800; }

.info-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.lead {
  max-width: 540px;
  color: var(--grey-500);
  font-size: 1.08rem;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: #fff;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--black);
  color: var(--orange);
  font-weight: 950;
}

.info-item h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}
.info-item p { margin: 0; color: var(--grey-500); }

.cta-section {
  padding: 80px 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(242,106,0,.97), rgba(190,68,0,.97)),
    var(--orange);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-section .eyebrow { color: #111; }
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.86); }

.cta-section .button-primary {
  background: #0a0a0a;
}
.cta-section .button-primary:hover { background: #222; }
.cta-section .button-outline {
  border-color: #fff;
  color: #fff;
}
.cta-section .button-outline:hover {
  background: #fff;
  color: #111;
}

.site-footer {
  padding: 55px 0 20px;
  color: #bbb;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: #ddd;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--orange); }

.footer-grid p { margin: 0 0 6px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #242424;
  color: #777;
  font-size: .82rem;
}

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }

  .hero-grid,
  .section-heading,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-block: 55px; }
  .hero-logo-wrap { min-height: 320px; order: -1; }
  .hero-logo { width: min(75%, 380px); }

  .section-heading { gap: 15px; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .header-inner { min-height: 66px; }
  .brand img { width: 125px; }
  .nav-cta { padding: 9px 12px; font-size: .82rem; }

  .hero-grid { min-height: auto; }
  .hero-logo-wrap { min-height: 240px; }
  .hero-logo { width: min(82%, 320px); }

  h1 { font-size: clamp(2.35rem, 13vw, 4rem); }

  .quick-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .equipment-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box input { width: 100%; }
  .price-note { text-align: left; }

  .equipment-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps { grid-template-columns: 1fr; }

  .step-card { min-height: auto; }

  .info-grid { gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
