/*
Theme Name: Delux Rental Website
Theme URI: https://deluxrentalonline.com
Author: Delux Rental
Author URI: https://deluxrentalonline.com
Description: Custom website theme for Delux Rental, Ypsilanti MI
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: delux-rental
*/

/* ===========================
   DELUX RENTAL — SHARED STYLES
   =========================== */

:root {
  --orange: #CD142F;
  --orange-dark: #A01025;
  --orange-light: #E8253F;
  --charcoal: #1C1C1C;
  --dark: #111111;
  --mid: #3A3A3A;
  --steel: #6B7280;
  --light-steel: #9CA3AF;
  --bg-light: #F5F3EF;
  --bg-off: #EDEAE3;
  --white: #FFFFFF;
  --border: #E2DDD5;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER
   ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-light);
  border-bottom: 3px solid #CD142F;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-tagline-header {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CD142F;
  white-space: nowrap;
  border-left: 2px solid rgba(205,20,47,0.35);
  padding-left: 16px;
  line-height: 1.2;
  flex-grow: 1;
}

.logo-icon { display: flex; align-items: center; }

.contact-heading-row {
  display: none;
}
.contact-sully-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.sully-inline {
  width: 180px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 10px;
  color: var(--light-steel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--charcoal);
  background: rgba(0,0,0,0.06);
}

.nav-link.active { color: #CD142F; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-cta:hover { background: var(--orange-dark); }

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--charcoal); }

.btn-large { font-size: 18px; padding: 16px 32px; }

/* =====================
   SECTION HEADERS
   ===================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(205, 20, 47, 0.08);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--orange-light);
  background: rgba(205, 20, 47, 0.15);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.6;
}

h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

/* =====================
   HERO
   ===================== */

.hero {
  background: var(--dark);
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: stretch;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 0 0 0 max(calc((100vw - 1160px) / 2 + 24px), 40px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(205, 20, 47, 0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 64px 40px 64px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(205, 20, 47, 0.15);
  border: 1px solid rgba(205, 20, 47, 0.3);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--light-steel);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-image-block {
  position: relative;
  z-index: 2;
  padding: 0;
}

.storefront-img {
  position: relative;
  overflow: hidden;
  background: var(--mid);
  height: 100%;
  min-height: 680px;
}

.storefront-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.years-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
}

.years-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.years-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 4px;
}

/* =====================
   INTRO BAND
   ===================== */

.intro-band {
  background: var(--charcoal);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.intro-band p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* =====================
   CATEGORIES
   ===================== */

.categories-section {
  padding: 96px 0;
  background: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(205,20,47,0.12);
  transform: translateY(-2px);
}

.cat-icon {
  width: 44px;
  height: 44px;
  background: rgba(205, 20, 47, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--orange);
}

.cat-icon svg { width: 100%; height: 100%; }

.category-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--charcoal);
  flex: 1;
}

.cat-arrow {
  font-size: 18px;
  color: var(--orange);
  font-weight: 700;
  transition: transform 0.2s;
}

.category-card:hover .cat-arrow { transform: translateX(4px); }

.section-cta { text-align: center; }

/* =====================
   VALUE SECTION
   ===================== */

.value-section {
  padding: 96px 0;
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-text .section-tag { margin-bottom: 12px; }

.value-text p {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.value-footer-text {
  font-size: 15px !important;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  color: var(--mid) !important;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

.value-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 3px;
}

.value-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-image { position: relative; }

.value-img-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  background: var(--bg-off);
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.stat-callout {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}

.stat-1 { bottom: 24px; left: -32px; }
.stat-2 { top: 24px; right: -32px; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-steel);
  margin-top: 3px;
}

/* =====================
   WHO WE SERVE
   ===================== */

.serve-section {
  padding: 96px 0;
  background: var(--dark);
}

.serve-section .section-header h2 { color: var(--white); }
.serve-section .section-header p { color: var(--light-steel); }

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

.serve-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}

.serve-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(205,20,47,0.4);
}

.serve-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(205,20,47,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.serve-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.contact-section {
  background: var(--charcoal);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 12px; }
.contact-info > p, .contact-subtext { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 16px; line-height: 1.6; width: 100%; display: block; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-steel);
}

.contact-item a,
.contact-item span {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--orange-light); }

.hours-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.hours-season h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: rgba(255,255,255,0.85); }

.map-block {
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  background: var(--dark);
  padding: 56px 0 0;
  border-top: 3px solid var(--orange);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-block { margin-bottom: 16px; }
.footer-desc {
  font-size: 14px;
  color: var(--light-steel);
  line-height: 1.6;
  max-width: 340px;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-steel);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--orange-light); }

.footer-hours-mini {
  font-size: 13px !important;
  color: var(--steel) !important;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--steel);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */

.page-hero {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.015) 80px,
    rgba(255,255,255,0.015) 81px
  );
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--light-steel);
  max-width: 700px;
  line-height: 1.6;
}

/* =====================
   EQUIPMENT PAGE
   ===================== */

.equipment-intro {
  background: var(--bg-light);
  padding: 16px 0 0;
}

.equipment-categories {
  padding: 72px 0;
  background: var(--bg-light);
}

.equip-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  transition: border-color 0.2s;
}

.equip-category:hover { border-color: rgba(205,20,47,0.3); }

.equip-category-header { border-right: 1px solid var(--border); padding-right: 48px; }

.equip-category-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 10px;
}

.equip-category-header p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
}

.equip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equip-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--bg-off);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}

.equip-tag:hover {
  background: rgba(205,20,47,0.06);
  border-color: var(--orange);
  color: var(--orange-dark);
}

.how-it-works {
  background: var(--charcoal);
  padding: 80px 0;
}

.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: var(--light-steel); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 32px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(205,20,47,0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.service-area {
  background: var(--bg-light);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.service-area h2 { margin-bottom: 12px; font-size: 36px; }
.service-area p { color: var(--steel); margin-bottom: 32px; font-size: 17px; }

/* =====================
   ABOUT PAGE
   ===================== */

.about-intro {
  padding: 80px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro-grid p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 20px;
}

.differentiators {
  background: var(--dark);
  padding: 80px 0;
}

.differentiators .section-header h2 { color: var(--white); }
.differentiators .section-header p { color: rgba(255,255,255,0.55); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.diff-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(205,20,47,0.35); }

.diff-icon {
  width: 40px;
  height: 40px;
  background: rgba(205, 20, 47, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
  padding: 9px;
}

.diff-icon svg { width: 100%; height: 100%; }

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.diff-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.community {
  background: var(--bg-light);
  padding: 80px 0;
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-text h2 { margin-bottom: 16px; }
.community-text p {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.community-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.comm-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: rgba(205,20,47,0.08);
  border: 1px solid rgba(205,20,47,0.2);
  padding: 8px 16px;
  border-radius: var(--radius);
}

.community-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}

.community-visual h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.community-visual .big-year {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.community-visual p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Policies */
.policies-section {
  padding: 80px 0;
  background: var(--white);
}

.policies-section h2 { text-align: center; margin-bottom: 48px; font-size: 40px; }

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.policy-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.policy-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  display: table;
}

.policy-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-card ul li {
  font-size: 15px;
  color: var(--steel);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.policy-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* FAQs */
.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.faq-section h2 { text-align: center; margin-bottom: 48px; font-size: 40px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) var(--radius) var(--radius); }
.faq-item:last-child { border-radius: var(--radius) var(--radius) var(--radius-lg) var(--radius-lg); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  transition: background 0.2s;
}

.faq-q:hover { background: var(--bg-light); }
.faq-q.open { background: var(--dark); color: var(--white); }

.faq-arrow {
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.2s;
  flex-shrink: 0;
  font-weight: 900;
}

.faq-q.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 20px 28px 24px;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-a.open { display: block; }

/* =====================
   RESPONSIVE — MOBILE
   ===================== */

@media (max-width: 900px) {

  /* HEADER */
  .site-header { border-bottom: 2px solid var(--orange); }

  /* MOBILE: show call for pricing below name, not hidden */
  .equip-call { display:block; margin-top:4px; font-size:13px; }
  .equip-list-row { grid-template-columns:64px 1fr; }

  /* MOBILE: category cards larger tap targets */
  .category-card { min-height:80px; }

  /* MOBILE: contact section stack */
  .contact-sully-row { flex-direction:column; align-items:flex-start; }
  .sully-inline { width:140px !important; }

  /* MOBILE: hero text readable */
  .hero h1 { font-size:28px; }

  /* MOBILE: hours stack */
  .hours-block { grid-template-columns:1fr !important; }

  .header-inner { padding: 0 12px; height: 64px; gap: 6px; display: flex; align-items: center; flex-wrap: nowrap; }
  .logo-block img { height: 44px !important; width: auto; }
  .logo-tagline-header { display: none; }
  .logo-name { font-size: 18px; }
  .logo-tagline { display: none; }
  .main-nav { display: none; }
  .header-visit { font-size: 12px; padding: 0 10px; height: 38px; flex: 1; display: flex; align-items: center; justify-content: center; }
  .header-cta { font-size: 12px; padding: 0 10px; height: 38px; flex: 1; display: flex; align-items: center; justify-content: center; }
  .hamburger { margin-left: auto; flex-shrink: 0; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 0 !important;
  }
  .hero-image-block { display: block; width: 100%; height: 300px; position: relative; order: -1; border-radius: 0; overflow: hidden; }
  .storefront-img { min-height: 300px; border-radius: 0; }
  .hero-content { padding: 32px 20px 40px; order: 1; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 12px; }

  /* INTRO BAND */
  .intro-band { padding: 20px 16px; }
  .intro-band p { font-size: 14px; }

  /* CATEGORIES GRID */
  .categories-section { padding: 56px 0; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-card { padding: 20px 16px; }
  .category-card h3 { font-size: 16px; }
  .section-header h2 { font-size: 32px; }
  .section-header p { font-size: 15px; }

  /* VALUE SECTION */
  .value-section { padding: 56px 0; }
  .value-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-image { display: none; }
  .value-text h2 { font-size: 32px; }
  .value-actions { flex-direction: column; gap: 10px; }
  .value-actions .btn { width: 100%; justify-content: center; }

  /* WHO WE SERVE */
  .serve-section { padding: 56px 0; }
  .serve-grid { grid-template-columns: 1fr; gap: 16px; }
  .serve-section .section-header h2 { font-size: 32px; color: var(--white); }
  .serve-card { padding: 24px 20px; }
  .serve-icon { margin: 0 auto 12px; }
  .serve-card h3 { text-align: center; }
  .serve-section-cta .btn { width: 100%; justify-content: center; }

  /* REVIEWS */
  .reviews-section { padding: 56px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-rating { flex-direction: column; gap: 4px; text-align: center; }

  /* CONTACT */
  .contact-section { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-top { flex-direction: column; align-items: center; text-align: center; }
  .sully-inline { width: 140px !important; }
  .contact-top-text { text-align: left; }
  .map-block { min-height: 280px; margin-top: 0 !important; }
  .hours-block { grid-template-columns: 1fr !important; gap: 20px !important; }
  .contact-info h2 { font-size: 32px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo-img { height: 32px; }

  /* PAGE HERO */
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; }

  /* EQUIPMENT PAGE — ACCORDION */
  .equip-cat-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .equip-cat-header-left { width: 100%; }
  .equip-toggle-btn { width: 100%; justify-content: center; }
  .equip-table-header { display: none !important; }

  .equip-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .equip-row-img {
    width: 72px !important;
    height: 64px !important;
    float: left;
    margin-right: 12px;
    margin-bottom: 8px;
  }
  .equip-row-name {
    display: block;
    font-size: 15px !important;
    padding: 0 !important;
    padding-top: 4px !important;
    overflow: hidden;
  }
  .equip-row-desc {
    display: block;
    font-size: 13px !important;
    padding: 10px 0 0 !important;
    clear: both;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .equip-row-prices {
    display: flex;
    width: 100%;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .equip-price {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 8px 4px !important;
  }
  .equip-price-val { font-size: 16px !important; }
  .equip-row .equip-price:nth-of-type(1)::before { content: '4 Hour'; display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-steel); margin-bottom: 3px; }
  .equip-row .equip-price:nth-of-type(2)::before { content: 'Daily'; display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-steel); margin-bottom: 3px; }
  .equip-row .equip-price:nth-of-type(3)::before { content: 'Weekly'; display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-steel); margin-bottom: 3px; }

  /* HOW IT WORKS */
  .how-it-works { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .step-card { padding: 28px 24px; }

  /* SERVICE AREA */
  .service-area h2 { font-size: 28px; }
  .service-area > .container > div { flex-direction: column; }
  .service-area .btn { width: 100%; justify-content: center; }

  /* ABOUT PAGE */
  .about-intro { padding: 48px 0; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-grid h2 { font-size: 32px; }
  .differentiators { padding: 56px 0; }
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }
  .community { padding: 56px 0; }
  .community-inner { grid-template-columns: 1fr; gap: 32px; }
  .community-text h2 { font-size: 32px; }
  .community-visual { min-height: 260px !important; }

  /* POLICIES */
  .policies-section { padding: 56px 0; }
  .policies-grid { grid-template-columns: 1fr; gap: 16px; }
  .policies-section h2 { font-size: 32px; }

  /* FAQS */
  .faq-section { padding: 56px 0; }
  .faq-section h2 { font-size: 32px; }
  .faq-q { font-size: 15px; padding: 18px 20px; }
  .faq-a { padding: 16px 20px 20px; }

  /* GENERAL */
  .container { padding: 0 16px; }
  .btn-large { font-size: 15px; padding: 13px 20px; }
  h2 { font-size: 32px; }
  .stat-1, .stat-2 { position: static; margin-top: 12px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .header-cta span { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .equip-cat-title { font-size: 22px; }
}



/* FOCUS STYLES for keyboard navigation */
a:focus-visible, button:focus-visible {
  outline: 3px solid #CD142F;
  outline-offset: 3px;
  border-radius: 3px;
}
.equip-toggle-btn:focus-visible {
  outline: 3px solid white;
  outline-offset: 2px;
}

/* ── SKIP LINK ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #CD142F;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── HAMBURGER ─────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  text-decoration: none;
}
.mobile-nav a:hover { color: #CD142F; }
.mobile-nav .mobile-phone { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #CD142F; margin-top: 16px; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.mobile-nav-close:hover { color: #CD142F; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .equip-call { display: none; }
  .header-call-price { display: block !important; }
  .equip-list-row { grid-template-columns: 64px 1fr; }
  .category-card { min-height: 80px; }
  .contact-sully-row { flex-direction: column; align-items: flex-start; }
  .sully-inline { width: 140px !important; }
  .hours-block { grid-template-columns: 1fr !important; }
}

/* ── FOCUS STYLES ──────────────────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 3px solid #CD142F;
  outline-offset: 3px;
  border-radius: 3px;
}
.equip-toggle-btn:focus-visible { outline: 3px solid white; outline-offset: 2px; }
a.logo-block { text-decoration: none; }
a.logo-block:focus-visible { outline: 3px solid #CD142F; outline-offset: 4px; border-radius: 4px; }

/* VISIT US button — mobile only */
.header-visit {
  display: none;
}
@media (max-width: 900px) {
  .header-visit {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0 12px;
    height: 40px;
    border: 2px solid var(--charcoal);
    border-radius: var(--radius);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .header-visit:hover { background: var(--charcoal); color: white; }
}

/* MOBILE: force reviews to single column */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}
