/* ============================================================
   Riversideoh Garage Repairs — Main Stylesheet
   All classes prefixed with hr-
   ============================================================ */

:root {
  --hr-black: #0a0a0a;
  --hr-dark: #111418;
  --hr-carbon: #1c2128;
  --hr-steel: #2d3748;
  --hr-mid: #4a5568;
  --hr-silver: #a0aec0;
  --hr-light: #e2e8f0;
  --hr-white: #f8fafc;
  --hr-accent: #e85d04;
  --hr-accent2: #f48c06;
  --hr-accent-light: rgba(232, 93, 4, 0.12);
  --hr-accent-glow: rgba(232, 93, 4, 0.4);
  --hr-success: #38a169;
  --hr-radius: 4px;
  --hr-radius-lg: 12px;
  --hr-shadow: 0 4px 24px rgba(0,0,0,0.3);
  --hr-shadow-accent: 0 4px 24px rgba(232,93,4,0.25);
  --hr-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --hr-font-display: 'Barlow Condensed', sans-serif;
  --hr-font-body: 'Source Serif 4', serif;
  --hr-font-mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--hr-dark);
  color: var(--hr-light);
  font-family: var(--hr-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--hr-black); }
::-webkit-scrollbar-thumb { background: var(--hr-accent); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hr-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.1rem; color: var(--hr-silver); }
p:last-child { margin-bottom: 0; }

a { color: var(--hr-accent); text-decoration: none; transition: var(--hr-transition); }
a:hover { color: var(--hr-accent2); }

strong { color: var(--hr-white); font-weight: 600; }

/* ── UTILITY ── */
.hr-text-accent { color: var(--hr-accent) !important; }
.hr-text-white { color: var(--hr-white) !important; }
.hr-text-silver { color: var(--hr-silver) !important; }
.hr-bg-dark { background-color: var(--hr-dark); }
.hr-bg-carbon { background-color: var(--hr-carbon); }
.hr-bg-black { background-color: var(--hr-black); }
.hr-section { padding: 80px 0; }
.hr-section-lg { padding: 120px 0; }

.hr-label {
  font-family: var(--hr-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hr-accent);
  display: inline-block;
  margin-bottom: 1rem;
}

.hr-divider {
  width: 48px;
  height: 3px;
  background: var(--hr-accent);
  margin: 1.2rem 0 2rem;
}

.hr-divider-center { margin: 1.2rem auto 2rem; }

/* ── BUTTONS ── */
.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: var(--hr-font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--hr-radius);
  cursor: pointer;
  transition: var(--hr-transition);
  text-decoration: none;
}

.hr-btn-primary {
  background: var(--hr-accent);
  color: var(--hr-white);
}
.hr-btn-primary:hover {
  background: var(--hr-accent2);
  color: var(--hr-white);
  transform: translateY(-2px);
  box-shadow: var(--hr-shadow-accent);
}

.hr-btn-outline {
  background: transparent;
  color: var(--hr-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.hr-btn-outline:hover {
  border-color: var(--hr-accent);
  color: var(--hr-accent);
  transform: translateY(-2px);
}

.hr-btn-ghost {
  background: transparent;
  color: var(--hr-accent);
  border: 1.5px solid var(--hr-accent);
}
.hr-btn-ghost:hover {
  background: var(--hr-accent);
  color: var(--hr-white);
}

/* ── NAVBAR ── */
.hr-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: var(--hr-transition);
  background: transparent;
}

.hr-navbar.hr-nav-scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hr-nav-logo {
  font-family: var(--hr-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hr-white);
  text-decoration: none;
}

.hr-nav-logo span { color: var(--hr-accent); }

.hr-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.hr-nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--hr-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hr-silver);
  letter-spacing: 0.03em;
  transition: var(--hr-transition);
  border-radius: var(--hr-radius);
}

.hr-nav-links a:hover,
.hr-nav-links a.hr-active {
  color: var(--hr-white);
  background: rgba(255,255,255,0.07);
}

.hr-nav-cta {
  background: var(--hr-accent) !important;
  color: var(--hr-white) !important;
  border-radius: var(--hr-radius) !important;
}
.hr-nav-cta:hover {
  background: var(--hr-accent2) !important;
  color: var(--hr-white) !important;
}

.hr-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hr-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hr-white);
  transition: var(--hr-transition);
}

/* ── HERO ── */
.hr-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--hr-black);
}

.hr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hr-hero-bg.hr-loaded { transform: scale(1); }

.hr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 40%, rgba(232,93,4,0.08) 100%);
}

.hr-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hr-hero-eyebrow {
  font-family: var(--hr-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hr-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hr-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--hr-accent);
}

.hr-hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--hr-white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hr-hero-title em {
  font-style: normal;
  color: var(--hr-accent);
  display: block;
}

.hr-hero-sub {
  font-size: 1.1rem;
  color: var(--hr-silver);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hr-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hr-hero-stats {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.hr-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--hr-radius-lg);
  padding: 1.2rem 1.8rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hr-stat-num {
  font-family: var(--hr-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hr-accent);
  line-height: 1;
}

.hr-stat-label {
  font-family: var(--hr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-silver);
  margin-top: 0.3rem;
}

.hr-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--hr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--hr-silver);
  animation: hr-bounce 2s infinite;
}

@keyframes hr-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── CARDS ── */
.hr-card {
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  padding: 2rem;
  transition: var(--hr-transition);
}

.hr-card:hover {
  border-color: rgba(232,93,4,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hr-card-icon {
  width: 52px;
  height: 52px;
  background: var(--hr-accent-light);
  border-radius: var(--hr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--hr-accent);
  margin-bottom: 1.2rem;
}

/* ── SERVICE CARDS ── */
.hr-service-card {
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  transition: var(--hr-transition);
  cursor: pointer;
}

.hr-service-card:hover {
  border-color: var(--hr-accent);
  box-shadow: 0 0 0 1px var(--hr-accent), 0 12px 40px rgba(232,93,4,0.15);
  transform: translateY(-4px);
}

.hr-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hr-service-card:hover .hr-service-card-img {
  transform: scale(1.04);
}

.hr-service-card-body {
  padding: 1.5rem;
}

.hr-service-card-icon {
  color: var(--hr-accent);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.hr-service-card h4 {
  color: var(--hr-white);
  margin-bottom: 0.5rem;
}

/* ── QUIZ TOOL ── */
.hr-quiz-container {
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--hr-radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.hr-quiz-step { display: none; }
.hr-quiz-step.hr-active { display: block; }

.hr-quiz-question {
  font-family: var(--hr-font-display);
  font-size: 1.6rem;
  color: var(--hr-white);
  margin-bottom: 1.5rem;
}

.hr-quiz-options {
  display: grid;
  gap: 0.75rem;
}

.hr-quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--hr-radius);
  cursor: pointer;
  transition: var(--hr-transition);
  font-family: var(--hr-font-body);
  color: var(--hr-silver);
  font-size: 0.95rem;
  text-align: left;
  width: 100%;
}

.hr-quiz-option:hover {
  border-color: var(--hr-accent);
  background: var(--hr-accent-light);
  color: var(--hr-white);
}

.hr-quiz-option.hr-selected {
  border-color: var(--hr-accent);
  background: var(--hr-accent-light);
  color: var(--hr-white);
}

.hr-quiz-option-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--hr-transition);
}

.hr-quiz-option:hover .hr-quiz-option-icon,
.hr-quiz-option.hr-selected .hr-quiz-option-icon {
  background: var(--hr-accent);
  color: var(--hr-white);
}

.hr-quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}

.hr-quiz-pip {
  height: 4px;
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: var(--hr-transition);
}

.hr-quiz-pip.hr-done { background: var(--hr-accent); }

.hr-quiz-result {
  padding: 2rem;
  background: var(--hr-accent-light);
  border: 1px solid var(--hr-accent);
  border-radius: var(--hr-radius);
  margin-top: 1.5rem;
}

.hr-quiz-result h4 {
  color: var(--hr-accent);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ── BEFORE/AFTER SLIDER ── */
.hr-before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--hr-radius-lg);
  cursor: col-resize;
  user-select: none;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

.hr-ba-before,
.hr-ba-after {
  position: absolute;
  inset: 0;
}

.hr-ba-before img,
.hr-ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hr-ba-after {
  clip-path: inset(0 50% 0 0);
  transition: none;
}

.hr-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--hr-accent);
  z-index: 10;
  cursor: col-resize;
}

.hr-ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--hr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--hr-white);
}

.hr-ba-label {
  position: absolute;
  bottom: 1rem;
  font-family: var(--hr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  color: var(--hr-white);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
}

.hr-ba-label-before { left: 1rem; }
.hr-ba-label-after { right: 1rem; }

/* ── TESTIMONIALS ── */
.hr-testimonial-slider {
  overflow: hidden;
  position: relative;
}

.hr-testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hr-testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--hr-radius-lg);
}

.hr-testimonial-stars {
  color: var(--hr-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hr-testimonial-text {
  font-size: 1.05rem;
  color: var(--hr-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hr-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hr-accent);
}

.hr-testimonial-name {
  font-family: var(--hr-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hr-white);
}

.hr-testimonial-role {
  font-family: var(--hr-font-mono);
  font-size: 0.7rem;
  color: var(--hr-silver);
  letter-spacing: 0.08em;
}

.hr-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hr-slider-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: none;
  color: var(--hr-silver);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--hr-transition);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hr-slider-btn:hover {
  border-color: var(--hr-accent);
  color: var(--hr-accent);
}

.hr-slider-dots {
  display: flex;
  gap: 8px;
}

.hr-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--hr-transition);
  border: none;
}

.hr-slider-dot.hr-active {
  background: var(--hr-accent);
  width: 24px;
  border-radius: 4px;
}

/* ── FAQ ACCORDION ── */
.hr-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hr-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: var(--hr-white);
  font-family: var(--hr-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: var(--hr-transition);
}

.hr-faq-trigger:hover { color: var(--hr-accent); }

.hr-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--hr-silver);
  transition: var(--hr-transition);
}

.hr-faq-item.hr-open .hr-faq-icon {
  border-color: var(--hr-accent);
  color: var(--hr-accent);
  transform: rotate(45deg);
}

.hr-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hr-faq-body-inner {
  padding: 0 0 1.5rem;
  color: var(--hr-silver);
  line-height: 1.8;
}

/* ── PROCESS STEPS ── */
.hr-process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.hr-process-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--hr-accent), transparent);
}

.hr-process-step:last-child::before { display: none; }

.hr-process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--hr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hr-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hr-white);
}

.hr-process-content { padding-top: 0.5rem; }

/* ── TEAM CARD ── */
.hr-team-card {
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  transition: var(--hr-transition);
}

.hr-team-card:hover {
  border-color: rgba(232,93,4,0.3);
  transform: translateY(-4px);
}

.hr-team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.hr-team-card:hover .hr-team-img { filter: grayscale(0%); }

.hr-team-body { padding: 1.5rem; }

.hr-team-role {
  font-family: var(--hr-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-accent);
  margin-bottom: 0.4rem;
}

/* ── MAP SECTION ── */
.hr-map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--hr-radius-lg);
  filter: grayscale(30%) contrast(1.1);
}

/* ── CONTACT FORM ── */
.hr-form-group {
  margin-bottom: 1.4rem;
}

.hr-form-label {
  display: block;
  font-family: var(--hr-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-silver);
  margin-bottom: 0.5rem;
}

.hr-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius);
  color: var(--hr-white);
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  transition: var(--hr-transition);
  outline: none;
}

.hr-form-control::placeholder { color: var(--hr-mid); }

.hr-form-control:focus {
  border-color: var(--hr-accent);
  background: rgba(232,93,4,0.05);
}

.hr-form-control.hr-error { border-color: #fc4444; }

.hr-form-error-msg {
  font-size: 0.78rem;
  color: #fc4444;
  margin-top: 0.3rem;
  display: none;
}

.hr-form-error-msg.hr-visible { display: block; }

textarea.hr-form-control { resize: vertical; min-height: 120px; }

/* ── CAPTCHA ── */
.hr-captcha-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius);
}

.hr-captcha-check {
  width: 22px;
  height: 22px;
  accent-color: var(--hr-accent);
  cursor: pointer;
}

.hr-captcha-label {
  font-size: 0.9rem;
  color: var(--hr-silver);
}

/* ── COOKIE BANNER ── */
.hr-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 620px;
  background: var(--hr-carbon);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius-lg);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: none;
  backdrop-filter: blur(10px);
}

.hr-cookie-banner.hr-visible { display: flex; gap: 1.5rem; align-items: flex-start; }

.hr-cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.hr-cookie-title {
  font-family: var(--hr-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hr-white);
  margin-bottom: 0.4rem;
}

.hr-cookie-text {
  font-size: 0.85rem;
  color: var(--hr-silver);
  margin-bottom: 1rem;
}

.hr-cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── ARTICLE ── */
.hr-article-hero {
  padding: 160px 0 80px;
  background: var(--hr-black);
  position: relative;
  overflow: hidden;
}

.hr-article-img {
  width: 100%;
  border-radius: var(--hr-radius-lg);
  height: 420px;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
}

.hr-article-body h2 {
  font-size: 1.8rem;
  color: var(--hr-white);
  margin: 2rem 0 1rem;
}

.hr-article-body h3 {
  font-size: 1.3rem;
  color: var(--hr-white);
  margin: 1.5rem 0 0.75rem;
}

.hr-article-body p {
  color: var(--hr-silver);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

.hr-article-body ul, .hr-article-body ol {
  padding-left: 1.5rem;
  color: var(--hr-silver);
  margin-bottom: 1.3rem;
}

.hr-article-body li { margin-bottom: 0.5rem; line-height: 1.7; }

.hr-article-callout {
  border-left: 3px solid var(--hr-accent);
  background: var(--hr-accent-light);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--hr-radius) var(--hr-radius) 0;
  margin: 2rem 0;
}

.hr-article-callout p { color: var(--hr-light); margin: 0; }

/* ── PAGE HEADER ── */
.hr-page-header {
  padding: 160px 0 80px;
  background: var(--hr-black);
  position: relative;
  overflow: hidden;
}

.hr-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hr-accent), transparent);
}

/* ── FOOTER ── */
.hr-footer {
  background: var(--hr-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}

.hr-footer-logo {
  font-family: var(--hr-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hr-white);
  margin-bottom: 0.75rem;
}

.hr-footer-logo span { color: var(--hr-accent); }

.hr-footer-tagline {
  font-size: 0.9rem;
  color: var(--hr-mid);
  margin-bottom: 1.5rem;
}

.hr-footer-heading {
  font-family: var(--hr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hr-silver);
  margin-bottom: 1.2rem;
}

.hr-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hr-footer-links a {
  font-size: 0.9rem;
  color: var(--hr-mid);
  transition: var(--hr-transition);
}

.hr-footer-links a:hover { color: var(--hr-accent); padding-left: 4px; }

.hr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--hr-mid);
}

.hr-footer-contact-item i {
  color: var(--hr-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.hr-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--hr-mid);
}

/* ── SCROLL ANIMATIONS ── */
.hr-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hr-fade-up.hr-visible {
  opacity: 1;
  transform: translateY(0);
}

.hr-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hr-fade-in.hr-visible { opacity: 1; }

/* ── MAINTENANCE CHECKER ── */
.hr-checker-grid {
  display: grid;
  gap: 0.75rem;
}

.hr-checker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  gap: 1rem;
}

.hr-checker-item-label {
  font-family: var(--hr-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hr-white);
}

.hr-checker-item-sub {
  font-size: 0.78rem;
  color: var(--hr-mid);
}

.hr-checker-status {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-family: var(--hr-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hr-status-ok { background: rgba(56,161,105,0.15); color: #68d391; border: 1px solid rgba(56,161,105,0.3); }
.hr-status-due { background: rgba(232,93,4,0.15); color: #f6ad55; border: 1px solid rgba(232,93,4,0.3); }
.hr-status-check { background: rgba(160,174,192,0.1); color: var(--hr-silver); border: 1px solid rgba(160,174,192,0.2); }

/* ── HOURS TABLE ── */
.hr-hours-table { width: 100%; }
.hr-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.hr-hours-row:last-child { border-bottom: none; }
.hr-hours-day { color: var(--hr-silver); }
.hr-hours-time { color: var(--hr-white); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hr-hero-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .hr-stat-card { flex: 1; min-width: 120px; }
}

@media (max-width: 768px) {
  .hr-nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); padding: 1rem; gap: 0; }
  .hr-nav-links.hr-open { display: flex; }
  .hr-nav-toggle { display: flex; }
  .hr-section { padding: 60px 0; }
  .hr-section-lg { padding: 80px 0; }
  .hr-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── LEGAL PAGE ── */
.hr-legal-body h2 { font-size: 1.5rem; color: var(--hr-white); margin: 2rem 0 0.75rem; }
.hr-legal-body h3 { font-size: 1.1rem; color: var(--hr-light); margin: 1.5rem 0 0.5rem; }
.hr-legal-body p { font-size: 0.95rem; line-height: 1.8; }
.hr-legal-body ul { padding-left: 1.4rem; color: var(--hr-silver); margin-bottom: 1rem; }
.hr-legal-body li { margin-bottom: 0.4rem; }

/* ── TIMELINE ── */
.hr-timeline { position: relative; padding-left: 2rem; }
.hr-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--hr-accent), transparent); }
.hr-timeline-item { position: relative; padding-bottom: 2.5rem; }
.hr-timeline-item::before { content: ''; position: absolute; left: -2.4rem; top: 6px; width: 12px; height: 12px; background: var(--hr-accent); border-radius: 50%; border: 2px solid var(--hr-dark); }
.hr-timeline-year { font-family: var(--hr-font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--hr-accent); margin-bottom: 0.3rem; }

/* ── BADGE ── */
.hr-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--hr-accent-light);
  border: 1px solid rgba(232,93,4,0.3);
  border-radius: 100px;
  font-family: var(--hr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-accent);
}

/* ── BACK TO TOP ── */
#hr-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--hr-accent);
  color: var(--hr-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--hr-transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(232,93,4,0.4);
}

#hr-back-top.hr-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── LEGAL PAGES ── */
.hr-legal-hero {
  background: var(--hr-dark);
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hr-legal-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hr-accent);
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hr-legal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--hr-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hr-legal-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--hr-grey);
  letter-spacing: 0.05em;
}
.hr-legal-body {
  background: var(--hr-black);
  padding: 64px 0 80px;
}
.hr-legal-content {
  color: var(--hr-grey);
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.8;
}
.hr-legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hr-white);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hr-legal-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hr-accent);
  margin-top: 28px;
  margin-bottom: 10px;
}
.hr-legal-content p {
  margin-bottom: 16px;
}
.hr-legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 20px;
}
.hr-legal-content ul li {
  margin-bottom: 8px;
}
.hr-legal-content a {
  color: var(--hr-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,93,4,0.3);
  transition: border-color 0.2s;
}
.hr-legal-content a:hover {
  border-color: var(--hr-accent);
}
.hr-legal-info-box {
  background: var(--hr-carbon);
  border-left: 3px solid var(--hr-accent);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 20px 0 28px;
}
.hr-legal-info-box p {
  margin-bottom: 6px;
  color: var(--hr-light);
  font-size: 0.95rem;
}
.hr-legal-info-box p:last-child {
  margin-bottom: 0;
}
.hr-legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: 8px;
}
.hr-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
}
.hr-legal-table thead tr {
  background: var(--hr-carbon);
}
.hr-legal-table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--hr-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hr-legal-table td {
  padding: 12px 16px;
  color: var(--hr-grey);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}
.hr-legal-table tbody tr:last-child td {
  border-bottom: none;
}
.hr-legal-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}


.logo{
  max-width: 100px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}