/* ============================================================
   CVC MARKETING LLC — Bicycle Workshop Systems
   Palette:
     workbench-paper  #F4F2EA  -- body background
     grease-ink       #2C2A24  -- primary text
     chain-grease     #C2652E  -- accent orange
     rim-silver       #EFF1F2  -- raised rim panels
     fork-slate       #3E4A52  -- steel fields
     bench-deep       #22262A  -- deep wells
     spoke-grey       #D9DCDE  -- thin separators
     velo-blue        #38638C  -- small service tags
   ============================================================ */

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

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #F4F2EA;
  color: #2C2A24;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: #38638C;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---------- shared layout helpers ---------- */

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.05rem;
  line-height: 1.2;
  color: #2C2A24;
  letter-spacing: -0.01em;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C2652E;
  font-weight: 700;
  margin-bottom: 12px;
}

.rule-thin {
  height: 2px;
  background-color: #D9DCDE;
  border: 0;
  margin: 0;
}

/* ============================================================
   WHEEL HOOK WALL NAVIGATION (.wheelhook)
   ============================================================ */

.wheelhook {
  background-color: #3E4A52;
  border-bottom: 6px solid #C2652E;
  position: sticky;
  top: 0;
  z-index: 40;
}

.wheelhook-rail {
  position: relative;
  background-color: #3E4A52;
  background-image:
    repeating-linear-gradient(90deg, #46535C 0px, #46535C 2px, #3E4A52 2px, #3E4A52 74px);
  border-bottom: 4px solid #22262A;
}

.wheelhook-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

/* brand head badge */
.headbadge {
  flex: 0 0 auto;
  align-self: center;
  background-color: #EFF1F2;
  border: 3px solid #22262A;
  border-radius: 14px;
  padding: 12px 20px 13px;
  margin: 16px 0;
  box-shadow: 6px 6px 0 #22262A;
}

.headbadge-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #2C2A24;
  line-height: 1.1;
}

.headbadge-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C2652E;
  font-weight: 700;
  margin-top: 5px;
}

/* wheel wall */
.wheelwall {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 10px;
}

.wheelhook-peg {
  position: relative;
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
}

/* the steel peg */
.peg-rod {
  display: block;
  width: 8px;
  height: 26px;
  margin: 0 auto;
  background-color: #D9DCDE;
  border-left: 2px solid #EFF1F2;
  border-right: 2px solid #22262A;
}

.wheelhook-peg:nth-child(2) .peg-rod { height: 40px; }
.wheelhook-peg:nth-child(3) .peg-rod { height: 30px; }
.wheelhook-peg:nth-child(4) .peg-rod { height: 46px; }
.wheelhook-peg:nth-child(5) .peg-rod { height: 34px; }

/* hanging wheel */
.hangwheel {
  display: block;
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #EFF1F2;
  border: 5px solid #22262A;
  box-shadow: inset 0 0 0 4px #D9DCDE;
}

.hangwheel-sm {
  width: 74px;
  height: 74px;
  border-width: 4px;
}

/* spokes via repeating conic look using solid stripes */
.hangwheel-spokes {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background-image:
    repeating-linear-gradient(0deg, #C9CDD0 0px, #C9CDD0 2px, transparent 2px, transparent 22px),
    repeating-linear-gradient(90deg, #C9CDD0 0px, #C9CDD0 2px, transparent 2px, transparent 22px),
    repeating-linear-gradient(45deg, #C9CDD0 0px, #C9CDD0 2px, transparent 2px, transparent 22px),
    repeating-linear-gradient(135deg, #C9CDD0 0px, #C9CDD0 2px, transparent 2px, transparent 22px);
  background-color: #EFF1F2;
}

.wheelhub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background-color: #C2652E;
  border: 3px solid #22262A;
  z-index: 2;
}

/* link label plate on rim */
.wheellink {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  background-color: #C2652E;
  color: #F4F2EA;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 2px solid #22262A;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 3;
}

.wheelhook-peg:nth-child(odd) .hangwheel { transform: rotate(-7deg); }
.wheelhook-peg:nth-child(even) .hangwheel { transform: rotate(6deg); }
.wheelhook-peg:nth-child(3) .hangwheel { transform: rotate(-4deg); }

.wheelhook-peg:hover .wheellink,
.wheelhook-peg:focus .wheellink {
  background-color: #EFF1F2;
  color: #2C2A24;
}

.wheelhook-peg:hover .hangwheel,
.wheelhook-peg:focus .hangwheel {
  border-color: #C2652E;
}

/* mobile nav toggle */
.navtoggle {
  display: none;
  background-color: #EFF1F2;
  color: #2C2A24;
  border: 3px solid #22262A;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 10px 14px;
  cursor: pointer;
  align-self: center;
  margin: 16px 0;
}

.navtoggle:hover {
  background-color: #C2652E;
  color: #F4F2EA;
}

/* ============================================================
   REPAIR STAND BAY HERO (.repairbay)
   ============================================================ */

.repairbay {
  background-color: #F4F2EA;
  border-bottom: 6px solid #D9DCDE;
  position: relative;
}

.repairbay-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px 84px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.repairbay-copy {
  flex: 0 0 55%;
  max-width: 55%;
}

.repairbay-eyebrow {
  display: inline-block;
  background-color: #EFF1F2;
  color: #38638C;
  border: 2px solid #38638C;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.repairbay-headline {
  font-size: 3.05rem;
  line-height: 1.08;
  color: #2C2A24;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 22px;
}

.tuned-word {
  color: #C2652E;
}

.repairbay-lede {
  font-size: 1.06rem;
  color: #3E4A52;
  max-width: 34em;
  margin-bottom: 14px;
}

.repairbay-address {
  font-size: 0.92rem;
  font-weight: 700;
  color: #2C2A24;
  border-left: 5px solid #C2652E;
  padding-left: 14px;
  margin-bottom: 30px;
}

.pedalbtns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pedalbtn {
  display: inline-block;
  background-color: #C2652E;
  color: #F4F2EA;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 30px 18px;
  border: 3px solid #22262A;
  border-radius: 6px;
  box-shadow: 0 6px 0 #8C4620, 0 0 0 3px #F4F2EA inset;
  position: relative;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.pedalbtn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 3px;
  background-image: repeating-linear-gradient(90deg, #F4F2EA 0 4px, transparent 4px 9px);
}

.pedalbtn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #8C4620, 0 0 0 3px #F4F2EA inset;
}

.pedalbtn-ghost {
  background-color: #EFF1F2;
  color: #2C2A24;
  box-shadow: 0 6px 0 #B9BEC2, 0 0 0 3px #F4F2EA inset;
}

.pedalbtn-ghost::after {
  background-image: repeating-linear-gradient(90deg, #2C2A24 0 4px, transparent 4px 9px);
}

.pedalbtn-ghost:hover {
  box-shadow: 0 3px 0 #B9BEC2, 0 0 0 3px #F4F2EA inset;
}

/* ---------- repair stand drawing ---------- */

.repairstand {
  flex: 1 1 auto;
  position: relative;
  height: 470px;
  background-color: #EFF1F2;
  border: 4px solid #22262A;
  border-radius: 10px;
  box-shadow: 10px 10px 0 #D9DCDE;
  overflow: hidden;
}

.stand-tripod-leg {
  position: absolute;
  bottom: 96px;
  left: 50%;
  width: 8px;
  height: 210px;
  background-color: #3E4A52;
  transform-origin: bottom center;
}

.leg-left { transform: translateX(-50%) rotate(-24deg); }
.leg-mid { transform: translateX(-50%) rotate(0deg); }
.leg-right { transform: translateX(-50%) rotate(24deg); }

.stand-footplate {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 12px;
  background-color: #22262A;
  border-radius: 6px;
}

.stand-column {
  position: absolute;
  bottom: 210px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 120px;
  background-color: #3E4A52;
  border-left: 3px solid #6B7A85;
}

.stand-clamp {
  position: absolute;
  bottom: 322px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 22px;
  background-color: #C2652E;
  border: 3px solid #22262A;
  border-radius: 6px;
}

.frame-tube-top {
  position: absolute;
  bottom: 344px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 190px;
  height: 12px;
  background-color: #38638C;
  border: 2px solid #22262A;
  border-radius: 6px;
}

.frame-tube-down {
  position: absolute;
  bottom: 278px;
  left: calc(50% + 6px);
  transform: translateX(-50%) rotate(38deg);
  width: 160px;
  height: 11px;
  background-color: #38638C;
  border: 2px solid #22262A;
  border-radius: 6px;
  transform-origin: left center;
}

.frame-seatstay {
  position: absolute;
  bottom: 320px;
  left: calc(50% + 40px);
  transform: translateX(-50%) rotate(74deg);
  width: 96px;
  height: 8px;
  background-color: #38638C;
  border: 2px solid #22262A;
  border-radius: 5px;
  transform-origin: left center;
}

.frame-rearhub {
  position: absolute;
  bottom: 232px;
  left: calc(50% + 84px);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #EFF1F2;
  border: 4px solid #22262A;
}

/* cassette stack of five cogs */
.cassette {
  position: absolute;
  bottom: 206px;
  left: calc(50% + 74px);
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.cog {
  border-radius: 50%;
  background-color: #C2652E;
  border: 3px solid #22262A;
}

.cog-1 { width: 52px; height: 52px; }
.cog-2 { width: 44px; height: 44px; }
.cog-3 { width: 37px; height: 37px; }
.cog-4 { width: 30px; height: 30px; }
.cog-5 { width: 23px; height: 23px; }

.chainset {
  position: absolute;
  bottom: 214px;
  left: calc(50% - 78px);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #EFF1F2;
  border: 6px dashed #3E4A52;
}

.chainrun {
  position: absolute;
  bottom: 238px;
  left: calc(50% - 60px);
  width: 148px;
  height: 8px;
  background-color: #C2652E;
  border-top: 2px solid #22262A;
  border-bottom: 2px solid #22262A;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.chainrun::after {
  content: "";
  position: absolute;
  inset: 1px 0;
  background-image: repeating-linear-gradient(90deg, #22262A 0 2px, transparent 2px 10px);
}

/* tools on bench edge */
.benchedge {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 34px;
  background-color: #C2652E;
  border-top: 4px solid #22262A;
}

.spokeruler {
  position: absolute;
  bottom: 98px;
  left: 26px;
  width: 210px;
  height: 12px;
  background-color: #EFF1F2;
  border: 2px solid #22262A;
  border-radius: 3px;
  transform: rotate(-2deg);
}

.spokeruler::after {
  content: "";
  position: absolute;
  inset: 2px 0;
  background-image: repeating-linear-gradient(90deg, #3E4A52 0 1px, transparent 1px 12px);
}

.torquewrench {
  position: absolute;
  bottom: 106px;
  right: 26px;
  width: 176px;
  height: 14px;
  background-color: #3E4A52;
  border: 2px solid #22262A;
  border-radius: 4px;
  transform: rotate(3deg);
}

.torquewrench::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 1px;
  width: 16px;
  height: 10px;
  background-color: #D9DCDE;
  border: 2px solid #22262A;
  border-radius: 3px;
}

.torquewrench::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 3px;
  width: 40px;
  height: 6px;
  background-color: #C2652E;
}

.floorpump {
  position: absolute;
  bottom: 94px;
  left: 44%;
  width: 22px;
  height: 132px;
  background-color: #38638C;
  border: 3px solid #22262A;
  border-radius: 5px;
}

.floorpump::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background-color: #D9DCDE;
  border: 2px solid #22262A;
  border-radius: 4px;
}

.floorpump::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 12px;
  background-color: #22262A;
  border-radius: 4px;
}

/* ============================================================
   PARTS TRAY SHELF (.partstray)
   ============================================================ */

.partstray {
  background-color: #2C2A24;
  padding: 72px 0 84px;
  border-bottom: 6px solid #C2652E;
}

.partstray-head {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.partstray .section-kicker {
  color: #C2652E;
}

.partstray .section-title {
  color: #F4F2EA;
}

.partstray-intro {
  color: #D9DCDE;
  max-width: 46em;
  margin-top: 14px;
}

.shelfline {
  max-width: 1180px;
  margin: 0 auto 46px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 26px;
}

.shelfline-wide {
  max-width: 1240px;
  margin-top: -6px;
}

.shelfboard {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: 0 0 20px;
  border-bottom: 10px solid #C2652E;
}

.shelfboard::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, #F4F2EA 0 6px, transparent 6px 20px);
}

/* individual job tray */
.jobtray {
  position: relative;
  flex: 1 1 0;
  background-color: #EFF1F2;
  border: 4px solid #22262A;
  border-radius: 8px 8px 4px 4px;
  padding: 22px 20px 24px;
  box-shadow: 7px 7px 0 #14171A;
  min-height: 100%;
}

.jobtray-lift {
  margin-bottom: 30px;
}

.jobtray-lower {
  background-color: #E4E7E9;
}

.traycog {
  position: absolute;
  top: -18px;
  left: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #C2652E;
  border: 3px solid #22262A;
  color: #F4F2EA;
  font-size: 0.74rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.traycog::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px dashed #F4F2EA;
}

.jobtag {
  display: inline-block;
  background-color: #38638C;
  color: #EFF1F2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin: 12px 0 10px;
}

.jobtray-title {
  font-size: 1.18rem;
  line-height: 1.25;
  color: #2C2A24;
  font-weight: 800;
  margin-bottom: 10px;
}

.jobtray-text {
  font-size: 0.92rem;
  color: #3E4A52;
}

.quicklink {
  display: inline-block;
  margin-top: 16px;
  background-color: #C2652E;
  color: #F4F2EA;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border: 3px solid #22262A;
  border-radius: 20px;
  position: relative;
}

.quicklink::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background-color: #F4F2EA;
}

.jobtray-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #38638C;
  border-bottom: 2px solid #38638C;
}

.jobtray-link:hover {
  color: #C2652E;
  border-bottom-color: #C2652E;
}

/* ============================================================
   TUNE-UP WEEK ACCENT STRIP (.tuneweek)
   ============================================================ */

.tuneweek {
  background-color: #C2652E;
  border-top: 6px solid #22262A;
  border-bottom: 6px solid #22262A;
}

.tuneweek-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.tuneweek-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: #F4F2EA;
  border: 2px solid #F4F2EA;
  border-radius: 30px;
  padding: 6px 14px;
  white-space: nowrap;
}

.tuneweek-text {
  flex: 1 1 380px;
  color: #F4F2EA;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.5;
}

.tuneweek-cta {
  display: inline-block;
  background-color: #F4F2EA;
  color: #2C2A24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  padding: 13px 24px;
  border: 3px solid #22262A;
  border-radius: 6px;
  white-space: nowrap;
}

.tuneweek-cta:hover {
  background-color: #2C2A24;
  color: #F4F2EA;
}

/* ============================================================
   PROSE / CONTENT SECTIONS (used by homepage + services)
   ============================================================ */

.workshopnote {
  background-color: #F4F2EA;
  padding: 76px 0;
}

.workshopnote-alt {
  background-color: #EFF1F2;
  border-top: 6px solid #D9DCDE;
  border-bottom: 6px solid #D9DCDE;
  padding: 76px 0;
}

.workshopnote-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.workshopnote-grid {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  margin-top: 28px;
}

.workshopnote-main {
  flex: 1 1 62%;
}

.workshopnote-side {
  flex: 1 1 38%;
  background-color: #3E4A52;
  color: #F4F2EA;
  border: 4px solid #22262A;
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 8px 8px 0 #C2652E;
}

.workshopnote-side h3 {
  color: #EFF1F2;
  font-size: 1.15rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.workshopnote-side p {
  color: #EFF1F2;
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.side-links {
  list-style: none;
  margin-top: 6px;
}

.side-links li {
  padding: 9px 0;
  border-bottom: 2px solid #5A6A75;
}

.side-links li:last-child {
  border-bottom: 0;
}

.side-links a {
  color: #F4F2EA;
  font-weight: 600;
  font-size: 0.94rem;
}

.side-links a::before {
  content: "\2192  ";
  color: #C2652E;
  font-weight: 800;
}

.side-links a:hover {
  color: #C2652E;
}

.prose {
  max-width: 100%;
}

.prose-measure {
  max-width: 58em;
  margin-top: 22px;
}

.prose p {
  margin-bottom: 16px;
  color: #3E4A52;
}

.prose h3 {
  color: #2C2A24;
  font-size: 1.28rem;
  margin: 26px 0 12px;
  line-height: 1.3;
}

.inline-link {
  color: #38638C;
  font-weight: 700;
  border-bottom: 2px solid #C2652E;
}

.inline-link:hover {
  color: #C2652E;
}

/* service tick list */
.ticklist {
  list-style: none;
  margin: 18px 0 6px;
}

.ticklist li {
  position: relative;
  padding: 8px 0 8px 34px;
  color: #2C2A24;
  font-weight: 600;
  font-size: 0.95rem;
}

.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #C2652E;
  border: 3px solid #22262A;
}

/* two column feature blocks */
.featureblog {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.featureblock {
  flex: 1 1 300px;
  background-color: #EFF1F2;
  border: 3px solid #22262A;
  border-radius: 9px;
  padding: 24px 22px;
  box-shadow: 6px 6px 0 #D9DCDE;
}

.featureblock h3 {
  color: #2C2A24;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.featureblock p {
  color: #3E4A52;
  font-size: 0.92rem;
}

/* ============================================================
   WORKBENCH CABINET FOOTER (.benchcabinet)
   ============================================================ */

.benchcabinet {
  background-color: #22262A;
  color: #F4F2EA;
  margin-top: 0;
}

.benchtop {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 24px 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 4px solid #3E4A52;
}

.benchtop-brand {
  flex: 1 1 340px;
}

.benchtop-brand h2 {
  color: #F4F2EA;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.benchtop-brand p {
  color: #D9DCDE;
  font-size: 0.94rem;
  max-width: 32em;
}

.benchtop-parts {
  flex: 0 0 auto;
  background-color: #3E4A52;
  border: 3px solid #C2652E;
  border-radius: 8px;
  padding: 16px 18px;
  min-width: 230px;
}

.benchtop-parts-title {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C2652E;
  font-weight: 800;
  margin-bottom: 12px;
}

.partsbin {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.partsbin span {
  display: block;
  height: 34px;
  background-color: #EFF1F2;
  border: 2px solid #22262A;
  border-radius: 4px;
  position: relative;
}

.partsbin span::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #C2652E;
  border-radius: 50%;
}

.drawerrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 40px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.tooldrawer {
  flex: 1 1 280px;
  background-color: #2C2A24;
  border: 4px solid #C2652E;
  border-radius: 8px;
  padding: 24px 22px 26px;
  position: relative;
}

.drawerpull {
  display: block;
  width: 70px;
  height: 12px;
  margin: 0 auto 18px;
  background-color: #EFF1F2;
  border: 2px solid #22262A;
  border-radius: 6px;
  position: relative;
}

.drawerpull::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background-color: #C2652E;
  left: -9px;
}

.drawerpull::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background-color: #C2652E;
  right: -9px;
}

.tooldrawer h3 {
  color: #F4F2EA;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.tooldrawer ul {
  list-style: none;
}

.tooldrawer li {
  border-bottom: 1px solid #3E4A52;
}

.tooldrawer li:last-child {
  border-bottom: 0;
}

.tooldrawer a {
  display: block;
  padding: 9px 0;
  color: #D9DCDE;
  font-size: 0.92rem;
}

.tooldrawer a:hover {
  color: #C2652E;
  padding-left: 6px;
}

.kickboard {
  background-color: #14171A;
  border-top: 4px solid #C2652E;
}

.kickboard-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  align-items: center;
  justify-content: space-between;
  color: #D9DCDE;
  font-size: 0.86rem;
}

.kickboard-inner a {
  color: #EFF1F2;
}

.kickboard-inner a:hover {
  color: #C2652E;
}

.kickcog {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #C2652E;
  border: 3px dashed #F4F2EA;
  vertical-align: middle;
  margin-right: 8px;
}

/* ============================================================
   SERVICES + CONTACT shared blocks
   ============================================================ */

.pagebanner {
  background-color: #3E4A52;
  border-bottom: 6px solid #C2652E;
}

.pagebanner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 58px;
}

.pagebanner-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C2652E;
  font-weight: 800;
  margin-bottom: 12px;
}

.pagebanner h1 {
  font-size: 2.5rem;
  color: #F4F2EA;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.pagebanner p {
  color: #EFF1F2;
  max-width: 52em;
  font-size: 1.02rem;
}

/* service detail rows */
.servicerow {
  padding: 62px 0;
  border-bottom: 2px solid #D9DCDE;
}

.servicerow:nth-of-type(even) {
  background-color: #EFF1F2;
}

.servicerow-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.servicerow-num {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #C2652E;
  border: 4px solid #22262A;
  color: #F4F2EA;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 0 #22262A;
}

.servicerow-body {
  flex: 1 1 auto;
}

.servicerow-body h2 {
  font-size: 1.65rem;
  color: #2C2A24;
  margin-bottom: 14px;
  line-height: 1.25;
}

.servicerow-body p {
  color: #3E4A52;
  margin-bottom: 14px;
}

/* process overview */
.processband {
  background-color: #2C2A24;
  padding: 70px 0;
}

.processband-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.processband .section-title {
  color: #F4F2EA;
}

.processband-intro {
  color: #D9DCDE;
  max-width: 46em;
  margin: 14px 0 34px;
}

.processtrack {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.processstep {
  flex: 1 1 220px;
  background-color: #3E4A52;
  border-top: 6px solid #C2652E;
  border-radius: 6px;
  padding: 24px 20px;
}

.processstep-num {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C2652E;
  font-weight: 800;
  margin-bottom: 10px;
}

.processstep h3 {
  color: #F4F2EA;
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.processstep p {
  color: #EFF1F2;
  font-size: 0.9rem;
}

/* CTA band */
.ctaband {
  background-color: #C2652E;
  border-top: 6px solid #22262A;
  border-bottom: 6px solid #22262A;
  padding: 46px 0;
}

.ctaband-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.ctaband h2 {
  color: #F4F2EA;
  font-size: 1.7rem;
  line-height: 1.2;
}

.ctaband p {
  color: #F4F2EA;
  font-size: 0.98rem;
  margin-top: 8px;
}

.ctaband .pedalbtn {
  background-color: #F4F2EA;
  color: #2C2A24;
  box-shadow: 0 6px 0 #8C4620, 0 0 0 3px #F4F2EA inset;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contactgrid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 66px 24px;
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contactformwrap {
  flex: 1 1 520px;
  background-color: #EFF1F2;
  border: 4px solid #22262A;
  border-radius: 10px;
  padding: 30px 28px;
  box-shadow: 9px 9px 0 #C2652E;
}

.contactformwrap h2 {
  font-size: 1.55rem;
  color: #2C2A24;
  margin-bottom: 8px;
}

.contactformwrap .formnote {
  color: #3E4A52;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.fieldrow {
  margin-bottom: 18px;
}

.fieldrow label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #2C2A24;
  margin-bottom: 7px;
}

.fieldrow input,
.fieldrow textarea,
.fieldrow select {
  width: 100%;
  font-size: 0.96rem;
  font-family: inherit;
  color: #2C2A24;
  background-color: #F4F2EA;
  border: 3px solid #22262A;
  border-radius: 6px;
  padding: 12px 13px;
}

.fieldrow textarea {
  min-height: 140px;
  resize: vertical;
}

.fieldrow input:focus,
.fieldrow textarea:focus,
.fieldrow select:focus {
  outline: 3px solid #C2652E;
  outline-offset: 1px;
}

.formsubmit {
  display: inline-block;
  background-color: #C2652E;
  color: #F4F2EA;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  padding: 15px 30px;
  border: 3px solid #22262A;
  border-radius: 6px;
  cursor: pointer;
}

.formsubmit:hover {
  background-color: #2C2A24;
}

.formstatus {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #38638C;
}

.contactinfo {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.infocard {
  background-color: #3E4A52;
  color: #F4F2EA;
  border: 4px solid #22262A;
  border-radius: 9px;
  padding: 22px 22px;
}

.infocard h3 {
  color: #C2652E;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.infocard p {
  color: #EFF1F2;
  font-size: 0.94rem;
  margin-bottom: 6px;
}

.infocard a {
  color: #F4F2EA;
  font-weight: 700;
  border-bottom: 2px solid #C2652E;
}

.infocard a:hover {
  color: #C2652E;
}

.hourstable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hourstable th,
.hourstable td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #5A6A75;
  color: #EFF1F2;
}

.hourstable th {
  color: #F4F2EA;
  font-weight: 700;
}

.hourstable tr:last-child td {
  border-bottom: 0;
}

/* FAQ accordion */
.faqband {
  background-color: #EFF1F2;
  border-top: 6px solid #D9DCDE;
  padding: 66px 0 74px;
}

.faqband-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faqitem {
  background-color: #F4F2EA;
  border: 3px solid #22262A;
  border-radius: 7px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faqitem-first {
  margin-top: 26px;
}

.faqq {
  display: block;
  width: 100%;
  text-align: left;
  background-color: #EFF1F2;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: #2C2A24;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
}

.faqq::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #C2652E;
  font-weight: 800;
}

.faqitem-open .faqq::after {
  content: "\2212";
}

.faqa {
  display: none;
  padding: 18px 20px;
  background-color: #F4F2EA;
  color: #3E4A52;
  font-size: 0.95rem;
  border-top: 2px solid #D9DCDE;
}

.faqitem-open .faqa {
  display: block;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.revealable {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.revealable.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* counters */
.countval {
  font-weight: 800;
  color: #C2652E;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .repairbay-inner {
    flex-direction: column;
    gap: 40px;
  }

  .repairbay-copy {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .repairstand {
    width: 100%;
    max-width: 460px;
    height: 430px;
  }

  .servicerow-inner {
    flex-direction: column;
    gap: 22px;
  }

  .workshopnote-grid {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .navtoggle {
    display: inline-block;
  }

  .wheelhook-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .wheelwall {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 10px;
    padding: 8px 0 22px;
    order: 3;
  }

  .wheelwall.is-open {
    display: flex;
  }

  .wheelhook-peg:nth-child(odd) .hangwheel,
  .wheelhook-peg:nth-child(even) .hangwheel,
  .wheelhook-peg:nth-child(3) .hangwheel {
    transform: rotate(0deg);
  }

  .hangwheel {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .repairbay-headline {
    font-size: 2.25rem;
  }

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

  .shelfboard {
    flex-direction: column;
    align-items: stretch;
    border-bottom-width: 8px;
  }

  .jobtray-lift {
    margin-bottom: 0;
  }

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

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

  .section-title {
    font-size: 1.65rem;
  }

  .pagebanner h1 {
    font-size: 1.95rem;
  }
}

/* noscript safety: content is visible if JS never runs */
