/* ===========================================================
   Rock & Roll Roll-Offs — Stylesheet
   Warm & professional, with a bold rock-and-roll edge.
   =========================================================== */

:root {
  --charcoal: #131316;     /* near-black, primary dark */
  --charcoal-soft: #232328;
  --red: #131316;          /* "action" color is now black */
  --red-dark: #000000;
  --amber: #ffffff;        /* on-dark accent is now white */
  --cream: #ffffff;        /* clean white background */
  --sand: #f3f3f4;         /* light gray for alternating sections */
  --gray: #5f5f66;
  --gray-light: #9a9aa2;
  --white: #ffffff;
  --line: #e4e4e7;
  --shadow: 0 10px 30px rgba(15, 15, 18, 0.07);
  --shadow-lg: 0 20px 50px rgba(15, 15, 18, 0.13);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Oswald', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: 0.5px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); text-transform: uppercase; margin-bottom: 18px; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }
.bg-sand { background: var(--sand); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 2px; font-size: .85rem; font-weight: 600;
  color: var(--red); margin-bottom: 12px;
}
.bg-charcoal .eyebrow { color: var(--amber); }
.lead { font-size: 1.15rem; color: var(--gray); max-width: 640px; }
.bg-charcoal .lead { color: #d7d2c9; }
.section > .container > .text-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; font-size: .98rem;
  padding: 15px 32px; border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid transparent; transition: transform .15s, box-shadow .2s, background .2s; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--charcoal); color: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.btn--primary:hover { background: #000; color: var(--white); }
.btn--amber { background: var(--white); color: var(--charcoal); box-shadow: 0 8px 20px rgba(0,0,0,.28); }
.btn--amber:hover { background: #ededf0; color: var(--charcoal); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--charcoal); color: var(--cream); font-size: .9rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.topbar a { color: var(--cream); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--amber); }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__note { color: var(--amber); font-weight: 600; letter-spacing: .5px; }

/* ---------- Header / Nav ---------- */
.header { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; text-transform: uppercase; color: var(--charcoal); font-size: 1.15rem; letter-spacing: .5px; }
.brand:hover { color: var(--charcoal); }
.brand__mark {
  width: 48px; height: 48px; border-radius: 11px; background: var(--red);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(0,0,0,.22); position: relative; overflow: hidden;
}
.brand__mark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 60%); }
.brand__logo { height: 52px; width: auto; display: block; }
@media (max-width: 760px) { .brand__logo { height: 42px; } }
.brand small { display: block; font-family: var(--font); font-size: .62rem; letter-spacing: 2px; color: var(--gray); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a { color: var(--charcoal); font-weight: 500; padding: 9px 13px; border-radius: 8px; font-size: .98rem; }
.nav__links a:hover, .nav__links a.active { background: var(--sand); color: var(--red); }
.nav__cta { margin-left: 10px; }
.nav__links a.btn--primary, .nav__links a.btn--primary:hover, .nav__links a.btn--primary:visited { color: #fff; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--cream); overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12,12,14,.88) 0%, rgba(12,12,14,.60) 50%, rgba(12,12,14,.28) 100%),
    url(hero-fleet.jpg);
  background-size: cover; background-position: center 62%;
}
@media (max-width: 760px) {
  .hero { background: linear-gradient(rgba(12,12,14,.66), rgba(12,12,14,.78)), url(hero-fleet.jpg); background-size: cover; background-position: center 60%; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px);
}
.hero::after { display: none; }
.hero__inner { position: relative; z-index: 1; padding: 100px 0 108px; max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: var(--amber); }
.hero p { font-size: 1.2rem; color: #e6e1d8; margin-bottom: 30px; max-width: 600px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero__badge { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #efeae1; }
.hero__badge b { color: var(--amber); font-size: 1.05rem; }

/* ---------- Trust strip ---------- */
.trust { background: var(--charcoal); border-top: 1px solid #34343c; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 22px 18px; color: var(--cream); text-align: left; border-right: 1px solid #34343c; }
.trust__item:last-child { border-right: 0; }
.trust__item .ico { font-size: 1.5rem; line-height: 1; }
.trust__item b { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .5px; font-size: .98rem; color: #fff; }
.trust__item span { font-size: .82rem; color: #b3aea5; }
@media (max-width: 760px) { .trust__inner { grid-template-columns: 1fr 1fr; } .trust__item:nth-child(2) { border-right: 0; } .trust__item { border-bottom: 1px solid #34343c; } }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { width: 56px; height: 56px; border-radius: 12px; background: var(--sand); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--gray); margin-bottom: 0; }

/* ---------- Size cards ---------- */
.size-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.size-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.size-card__top { background: var(--charcoal); color: #fff; padding: 22px 24px; position: relative; }
.size-card--featured .size-card__top { background: var(--red); }
.size-card__tag { position: absolute; top: 14px; right: 16px; background: var(--amber); color: var(--charcoal); font-family: var(--display); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; }
.size-card__top h3 { color: #fff; font-size: 1.6rem; }
.size-card__dims { font-size: .9rem; color: #cfcac1; letter-spacing: .5px; }
.size-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.size-card__body ul { list-style: none; margin-bottom: 22px; }
.size-card__body li { padding: 8px 0 8px 28px; position: relative; color: var(--charcoal); border-bottom: 1px solid var(--line); }
.size-card__body li:last-child { border-bottom: 0; }
.size-card__body li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.size-card .btn { margin-top: auto; }

/* ---------- Size visualizer ---------- */
.size-viz { background: #fff; padding: 16px 16px 6px; border-bottom: 1px solid var(--line); }
.size-viz svg { width: 100%; height: auto; display: block; }
.size-viz svg { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .75s cubic-bezier(.18,.84,.24,1); }
.size-card.in-view .size-viz svg { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .size-viz svg { opacity: 1; transform: none; }
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num { font-family: var(--display); font-size: 2.4rem; color: var(--red); font-weight: 700; line-height: 1; margin-bottom: 10px; }
.bg-charcoal .step__num { color: var(--amber); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat__num { font-family: var(--display); font-size: 2.8rem; color: var(--amber); font-weight: 700; line-height: 1; }
.stat__label { text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; color: #d7d2c9; margin-top: 8px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; background: linear-gradient(135deg, var(--charcoal-soft), var(--charcoal)); display: grid; place-items: center; color: var(--gray-light); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Reviews ---------- */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.review__stars { color: var(--charcoal); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { color: var(--charcoal); margin-bottom: 16px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.review__name { font-weight: 600; }
.review__meta { font-size: .85rem; color: var(--gray); }

/* ---------- Service area chips ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip { background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 9px 20px; font-weight: 500; font-size: .95rem; box-shadow: 0 2px 6px rgba(0,0,0,.04); }
.bg-charcoal .area-chip { background: var(--charcoal-soft); border-color: #3a3a42; color: var(--cream); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, #232328, #0d0d0f); color: #fff; border-radius: var(--radius); padding: 50px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 26px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #e6e6e9; opacity: .92; max-width: 560px; margin: 0 auto 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-family: var(--display); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--charcoal); }
.faq__q::after { content: "+"; font-size: 1.6rem; color: var(--red); transition: transform .2s; flex-shrink: 0; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--gray); }
.faq__item.open .faq__a { padding: 0 24px 22px; max-height: 600px; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; font-family: var(--font);
  font-size: 1rem; background: var(--cream); color: var(--charcoal); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--charcoal); box-shadow: 0 0 0 3px rgba(19,19,22,.10); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .85rem; color: var(--gray); margin-top: 14px; text-align: center; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; padding: 16px; border-radius: 9px; margin-bottom: 18px; font-weight: 500; }

/* ---------- Contact info blocks ---------- */
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--red); color: #fff; display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-item a, .contact-item p { color: var(--gray); margin: 0; }
.contact-item a:hover { color: var(--red); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: var(--cream); padding: 76px 0; text-align: center;
  background:
    radial-gradient(700px 360px at 80% -20%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(160deg, #232328, #131316);
}
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d7d2c9; max-width: 600px; margin: 12px auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: var(--gray-light); margin-top: 14px; }
.breadcrumb a { color: var(--amber); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #cfcac1; padding: 64px 0 0; }
.footer h4 { color: #fff; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 16px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer a { color: #cfcac1; }
.footer a:hover { color: var(--amber); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { font-size: .95rem; color: #b3aea5; }
.footer__areas { columns: 2; font-size: .92rem; }
.footer__bottom { border-top: 1px solid #3a3a42; margin-top: 48px; padding: 22px 0; text-align: center; font-size: .88rem; color: #948f86; }
.footer__bottom a { color: #b3aea5; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(19,19,22,.97); box-shadow: 0 -6px 20px rgba(0,0,0,.28); }
  .callbar__btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; border-radius: 9px; font-family: var(--display); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-size: 1rem; }
  .callbar__btn--call { background: #fff; color: var(--charcoal); }
  .callbar__btn--call:hover { color: var(--charcoal); }
  .callbar__btn--book { background: transparent; color: #fff; border: 2px solid #fff; }
  .callbar__btn--book:hover { color: #fff; }
  body { padding-bottom: 66px; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head .lead { margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 260px; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 80px 26px; gap: 4px; box-shadow: var(--shadow-lg); transition: right .3s; z-index: 60; }
  .nav__links.open { right: 0; }
  .nav__links a { width: 100%; padding: 13px 14px; font-size: 1.05rem; }
  .nav__cta { margin: 12px 0 0; width: 100%; }
  .nav__cta .btn { width: 100%; }
  .nav__toggle { display: flex; z-index: 70; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid--3, .grid--4, .grid--2, .stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 36px 22px; }
  .hero__inner { padding: 70px 0; }
  .form-wrap { padding: 22px 18px; }
  .container { padding: 0 18px; }
}
@media (max-width: 600px) {
  /* keep the top bar to one tidy line on small phones */
  .topbar__contact a[href^="mailto"], .topbar__contact span { display: none; }
  .topbar .container { justify-content: space-between; gap: 10px; }
  .topbar__note { font-size: .82rem; }
}
