/* ═══════════════════════════════════════════════
   DOUBLE R SHARPENING — MODERN HOME PAGE
   Font: Barlow Condensed (headings) + Barlow (body)
   Palette: Deep Navy #004b88, Steel Black #0d1b2a,
            Blade Red #D10024, Light Steel #f4f6f9
═══════════════════════════════════════════════ */

:root {
  --rr-navy: #004b88;
  --rr-navy-rgb: 0, 75, 136;
  --rr-navy-dark: #003060;
  --rr-black: #0d1b2a;
  --rr-black-rgb: 13, 27, 42;
  --rr-red: #D10024;
  --rr-red-rgb: 209, 0, 36;
  --rr-steel: #f4f6f9;
  --rr-mid: #6b7a8d;
  --rr-white: #ffffff;
  --rr-card-bg: #ffffff;
  --rr-border: rgba(var(--rr-navy-rgb), 0.12);
  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body { font-family: var(--ff-body); color: var(--rr-black); background: var(--rr-white); }

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

/* ── SECTION LABELS ── */
.rr-section-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rr-red);
  margin-bottom: 12px;
}
.rr-section-tag--light { color: rgba(255,255,255,0.6); }
.rr-section-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--rr-navy);
  margin-bottom: 16px;
}
.rr-section-sub {
  font-size: 1.05rem;
  color: var(--rr-mid);
  max-width: 600px;
  line-height: 1.6;
}
.rr-section-sub-01 {
  font-size: 1.05rem;
  color: var(--rr-black);
  max-width: 600px;
  line-height: 1.6;
}
.rr-section-header { margin-bottom: 56px; }
.rr-section-header--center { text-align: center; }
.rr-section-header--center .rr-section-sub { margin: 0 auto; }
.rr-section-header--center .rr-section-sub-01 { margin: 0 auto; }

/* ── BUTTONS ── */
.rr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}
.rr-btn--primary {
  background: var(--rr-red);
  color: var(--rr-white);
  box-shadow: 0 4px 20px rgba(209,0,36,0.3);
}
.rr-btn--primary:hover {
  background: #a8001c;
  color: var(--rr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(209,0,36,0.4);
  text-decoration: none;
}
.rr-btn--ghost {
  background: transparent;
  color: var(--rr-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.rr-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--rr-white);
  color: var(--rr-white);
  text-decoration: none;
}
.rr-btn--outline-light {
  background: transparent;
  color: var(--rr-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.rr-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--rr-white);
  text-decoration: none;
}
.rr-btn--lg { padding: 18px 44px; font-size: 1.05rem; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.rr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.rr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rr-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: rr-hero-zoom 12s ease-in-out infinite alternate;
}
@keyframes rr-hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.rr-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.85) 0%,
    rgba(0,48,96,0.75) 50%,
    rgba(13,27,42,0.65) 100%
  );
}

.rr-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
  animation: rr-fade-up 0.9s var(--ease) both;
}
@keyframes rr-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rr-hero__badge {
  display: inline-block;
  background: var(--rr-red);
  color: var(--rr-white);
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.rr-hero__title {
  font-family: var(--ff-head);
  font-weight: 900;
  line-height: 0.92;
  color: var(--rr-white);
  margin-bottom: 28px;
  display: block;
}
.rr-hero__title-line {
  display: block;
  font-size: clamp(4rem, 10vw, 9rem);
}
.rr-hero__title-line--2 {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.6);
}
.rr-hero__title-line--3 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--rr-red);
}

.rr-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.rr-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO STATS BAR */
.rr-hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
  flex-wrap: wrap;
}
.rr-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  min-width: 130px;
}
.rr-hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
.rr-stat-num {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--rr-white);
  line-height: 1;
}
.rr-stat-plus, .rr-stat-dash {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rr-red);
  line-height: 1;
  margin-left: 2px;
}
.rr-stat-check {
  font-size: 2.2rem;
  color: var(--rr-red);
  line-height: 1;
}
.rr-stat-label {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  text-align: center;
}
.rr-hero__stat--turnaround {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: wrap;
}

.rr-hero__stat--turnaround .rr-stat-num,
.rr-hero__stat--turnaround .rr-stat-dash {
    display: inline-block;
    line-height: 1;
}

.rr-hero__stat--turnaround .rr-stat-label {
    width: 100%;
    margin-top: 0.25rem;
}
.display-stat-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* ══════════════════════════════
   MOBILE SEARCH
══════════════════════════════ */
.rr-mobile-search {
  background: var(--rr-steel);
  padding: 20px 0;
}
.rr-search-form { position: relative; }
.rr-search-inner {
  display: flex;
  gap: 0;
  border: 2px solid var(--rr-navy);
  border-radius: 6px;
  overflow: hidden;
  background: white;
}
.rr-search-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: var(--ff-body);
}
.rr-search-btn {
  background: var(--rr-navy);
  color: white;
  border: none;
  padding: 0 22px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.rr-search-btn:hover { background: var(--rr-navy-dark); }
.rr-search-error { color: var(--rr-red); font-size: 0.82rem; margin-top: 6px; display: block; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.rr-services {
  padding: 50px 0;
  background: var(--rr-steel);
}

.rr-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rr-service-card {
  background: var(--rr-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid var(--rr-border);
}
.rr-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}
.rr-service-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.rr-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.rr-service-card:hover .rr-service-card__img { transform: scale(1.08); }
.rr-service-card__img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,48,96,0.6), transparent 60%);
}
.rr-service-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--rr-red);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.rr-service-card__body { padding: 28px 24px; }
.rr-service-card__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--rr-navy);
  margin-bottom: 10px;
}
.rr-service-card__desc {
  font-size: 0.92rem;
  color: var(--rr-mid);
  line-height: 1.55;
  margin-bottom: 18px;
}
.rr-service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rr-service-card__list span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rr-navy);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════
   SPLIT SECTION
══════════════════════════════ */
.rr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.rr-split--dark .rr-split__content { background: var(--rr-black); }
.rr-split__image {
  position: relative;
  overflow: hidden;
}
.rr-split__img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.rr-split:hover .rr-split__img { transform: scale(1.04); }
.rr-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(13,27,42,0.3));
}
.rr-split__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rr-split__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--rr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.rr-split__text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ───────────────────────────────────────────────
   WHO WE SERVE — tilted slow-zoom background image
─────────────────────────────────────────────── */

.rr-serve {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  padding-bottom: 100px;
  padding-top: 50px;
}

.rr-serve::before {
  content: "";
  position: absolute;
  inset: -25%;
  background-image: url('/media/content/carbide3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  transform: rotate(7deg) scale(1);
  animation: rr-serve-bg-zoom 80s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.rr-serve > .container {
  position: relative;
  z-index: 1;
}

@keyframes rr-serve-bg-zoom {
  0%   { transform: rotate(7deg) scale(1); }
  50%  { transform: rotate(7deg) scale(1.1); }
  100% { transform: rotate(7deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .rr-serve::before {
    animation: none;
    transform: rotate(7deg) scale(1);
  }
}

.rr-serve__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rr-serve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid var(--rr-border);
  background: var(--rr-steel);
  min-width: 160px;
  transition: all 0.3s var(--ease);
  cursor: default;
  opacity: 0.6;
}
.rr-serve-item:hover {
  border-color: var(--rr-navy);
  background: var(--rr-white);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,75,136,0.12);
}
.rr-serve-item__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--rr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.rr-serve-item__icon { width: 36px; height: 36px; object-fit: contain; }
.rr-serve-item__label {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--rr-navy);
  text-align: center;
}

/* ══════════════════════════════
   VIDEO / GALLERY SECTION
══════════════════════════════ */
.rr-video-wrap {
  max-width: 1050px;
  margin: 0 auto 20px;
}

.rr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 10px;
}

.rr-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--rr-card-bg);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
    z-index 0.4s step-end;
  z-index: 1;
  cursor: pointer;
}

.rr-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.rr-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--rr-navy-rgb), 0.04) 0%,
    rgba(var(--rr-black-rgb), 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.rr-gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: var(--rr-red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0;
  transform: translate(10px, -10px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  z-index: 3;
}

.rr-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 16px 12px;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(var(--rr-black-rgb), 0.75) 0%,
    rgba(var(--rr-black-rgb), 0) 100%
  );
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.rr-gallery-item:hover {
  z-index: 10 !important;
  transform: scale(1.025);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(var(--rr-red-rgb), 0.25);
}
.rr-gallery-item:hover::before {
  opacity: 0.4;
}
.rr-gallery-item:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
.rr-gallery-item:hover img {
  transform: scale(1.05);
}
.rr-gallery-item:hover .rr-gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.rr-gallery-item:focus-visible {
  outline: 2px solid var(--rr-red);
  outline-offset: 3px;
}

.rr-gallery-item--tilt-left:hover,
.rr-gallery-item--tilt-right:hover {
  transform: scale(1.025) rotate(0deg) !important;
}

/* ══════════════════════════════
   SIZE / ASPECT‑RATIO VARIANTS
══════════════════════════════ */
.rr-gallery-item--lg-landscape { grid-column: span 3; aspect-ratio: 16 / 9; }
.rr-gallery-item--wide         { grid-column: span 2; aspect-ratio: 21 / 9; }
.rr-gallery-item--landscape    { grid-column: span 2; aspect-ratio: 4 / 3; }
.rr-gallery-item--portrait     { grid-column: span 1; aspect-ratio: 3 / 4; }
.rr-gallery-item--tall         { grid-column: span 1; aspect-ratio: 2 / 3; }
.rr-gallery-item--square       { grid-column: span 1; aspect-ratio: 1 / 1; }

.rr-gallery-item--overlap-left { margin-left: -20px; z-index: 2; }
.rr-gallery-item--overlap-up   { margin-top: -14px;  z-index: 2; }
.rr-gallery-item--overlap-both { margin-left: -18px; margin-top: -12px; z-index: 3; }

.rr-gallery-item--tilt-left  { transform: rotate(-0.8deg); z-index: 2; }
.rr-gallery-item--tilt-right { transform: rotate(0.6deg);  z-index: 2; }

@media (max-width: 900px) {
  .rr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 6px;
  }
  .rr-gallery-item--lg-landscape,
  .rr-gallery-item--wide,
  .rr-gallery-item--landscape {
    grid-column: span 2;
  }
  .rr-gallery-item--overlap-left,
  .rr-gallery-item--overlap-up,
  .rr-gallery-item--overlap-both {
    margin-left: 0;
    margin-top: 0;
  }
  .rr-gallery-item--tilt-left,
  .rr-gallery-item--tilt-right {
    transform: rotate(0deg);
  }
  .rr-gallery-item--tilt-left:hover,
  .rr-gallery-item--tilt-right:hover {
    transform: scale(1.02) rotate(0deg) !important;
  }
}

@media (max-width: 560px) {
  .rr-gallery-item--hide-mobile {
    display: none;
  }

  .rr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 4px;
  }

  .rr-gallery-item,
  .rr-gallery-item--lg-landscape,
  .rr-gallery-item--wide,
  .rr-gallery-item--landscape,
  .rr-gallery-item--portrait,
  .rr-gallery-item--tall,
  .rr-gallery-item--square {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    transform: none !important;
    border-radius: 12px;
  }

  .rr-gallery-caption {
    font-size: 0.68rem;
    padding: 16px 10px 8px;
  }

  .rr-gallery-item:hover {
    transform: scale(1.02) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rr-gallery-item,
  .rr-gallery-item img,
  .rr-gallery-item::after,
  .rr-gallery-caption {
    transition: none !important;
  }
}

/* ══════════════════════════════
   ROUTE MOBILE
══════════════════════════════ */
.rr-route-mobile {
  padding: 80px 0;
  background: var(--rr-black);
  color: var(--rr-white);
}
.rr-route__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rr-white);
  margin-bottom: 14px;
}
.rr-route__sub {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  font-size: 1rem;
}
.rr-route__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rr-route__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rr-route__list li strong {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--rr-red);
  min-width: 130px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.rr-route__list li span {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.rr-route__cta-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 28px;
  font-style: italic;
}

/* ══════════════════════════════
   ROUTE DESKTOP
══════════════════════════════ */
.rr-route-desktop {
  padding: 80px 0;
  background: var(--rr-black);
}
.rr-route-desktop__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.rr-route-desktop__img-col {
  position: relative;
  background: var(--rr-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.rr-route-desktop__img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
}
.rr-route-desktop__content {
  background: #111d2c;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rr-route__text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.rr-route__note {
  text-align: center;
  margin-top: 1rem;
  opacity: 0.55;
  font-size: 0.85rem;
}

/* ══════════════════════════════
   MEET ROY
══════════════════════════════ */
.rr-roy {
  padding: 100px 0;
  background: var(--rr-white);
}

.rr-roy__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.rr-roy__image-col {
  position: relative;
  padding: 0 0 24px 24px;
}

.rr-roy__image-col::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  height: 72%;
  background: var(--rr-navy);
  opacity: 0.12;
  border-radius: 14px;
  z-index: 0;
}

.rr-roy__img-frame {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  height: 480px;
}

.rr-roy__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.rr-roy__lead {
  font-size: 1.05rem;
  color: var(--rr-navy);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 18px;
}

.rr-roy__text {
  color: var(--rr-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.rr-roy__text:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
  .rr-roy__inner {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
  .rr-roy__img-frame {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .rr-roy {
    padding: 60px 0;
  }

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

  .rr-roy__image-col {
    padding: 0 0 18px 18px;
    max-width: 340px;
    margin: 0 auto;
  }

  .rr-roy__img-frame {
    height: 360px;
  }

  .rr-roy__content {
    text-align: left;
  }

  .rr-roy__lead {
    font-size: 1rem;
  }

  .rr-roy__text {
    font-size: 0.92rem;
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .rr-roy__image-col {
    max-width: 100%;
    padding: 0 0 14px 14px;
  }

  .rr-roy__img-frame {
    height: 300px;
  }

  .rr-roy__lead {
    font-size: 0.95rem;
  }

  .rr-roy__text {
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════
   PHOTO FEATURE
══════════════════════════════ */
.rr-photo-feature {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rr-photo-feature__img-wrap {
  position: absolute;
  inset: 0;
}
.rr-photo-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rr-photo-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,27,42,0.9) 0%,
    rgba(0,48,96,0.75) 50%,
    rgba(13,27,42,0.3) 100%
  );
}
.rr-photo-feature__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}
.rr-photo-feature__box {
  max-width: 520px;
}
.rr-photo-feature__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.rr-photo-feature__text {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.rr-cta {
  padding: 80px 0;
  background: var(--rr-steel);
  border-top: 3px solid var(--rr-red);
}
.rr-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rr-cta__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--rr-navy);
  margin-bottom: 10px;
}
.rr-cta__sub {
  color: var(--rr-mid);
  font-size: 0.97rem;
  max-width: 520px;
  line-height: 1.55;
}

/* ── PROCESS TEASER ── */
.rr-process-teaser {
  padding: 80px 0;
  background: var(--rr-white);
}

.rr-process-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.rr-process-teaser__item {
  text-align: center;
  padding: 32px 24px;
  background: var(--rr-steel);
  border-radius: 8px;
  transition: transform 0.3s var(--ease);
}

.rr-process-teaser__item:hover {
  transform: translateY(-4px);
}

.rr-process-teaser__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--rr-navy);
  color: var(--rr-white);
  border-radius: 50%;
  font-size: 1.5rem;
}

.rr-process-teaser__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rr-navy);
  margin-bottom: 12px;
}

.rr-process-teaser__desc {
  font-size: 0.95rem;
  color: var(--rr-mid);
  line-height: 1.5;
  margin: 0;
}

.rr-process-teaser__cta {
  text-align: center;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .rr-services__grid { grid-template-columns: 1fr 1fr; }
  .rr-split { grid-template-columns: 1fr; }
  .rr-split__image { height: 360px; }
  .rr-split__content { padding: 56px 40px; }
  .rr-roy__inner { grid-template-columns: 1fr; gap: 48px; }
  .rr-roy__img { aspect-ratio: 3/2; }
  .rr-process-teaser__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .rr-services__grid { grid-template-columns: 1fr; }
  .rr-hero__content { padding-top: 100px; }
  .rr-hero__stats {
    gap: 0;
    padding: 20px 0;
  }
  .rr-hero__stat { padding: 12px 20px; min-width: 110px; }
  .rr-hero__stat-divider { display: none; }
  .rr-stat-num { font-size: 2rem; }
  .rr-split__content { padding: 40px 24px; }
  .rr-route-desktop__card { grid-template-columns: 1fr; }
  .rr-serve__grid { gap: 12px; }
  .rr-serve-item { min-width: 130px; padding: 24px 20px; }
  .rr-cta__inner { flex-direction: column; text-align: center; }
  .rr-process-teaser { padding: 48px 0; }
  .rr-process-teaser__grid { grid-template-columns: 1fr; gap: 24px; }
  .rr-process-teaser__item { padding: 24px 20px; }
  .rr-route__list li { flex-direction: column; gap: 4px; }
  .rr-route__list li strong { min-width: auto; }
}
/* ══════════════════════════════
   EXACT BLADE MATCH / EXPERT ADVICE
   Signature: a literal "spec sheet" card — the same fields our
   custom-order intake actually collects — instead of decorative icons.
══════════════════════════════ */
.rr-match {
  padding: 90px 0;
  background: var(--rr-white);
  border-top: 1px solid var(--rr-border);
  border-bottom: 1px solid var(--rr-border);
}

.rr-match__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.rr-match__lead {
  font-size: 1.05rem;
  color: var(--rr-mid);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.rr-match__feature {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.rr-match__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rr-navy);
  color: var(--rr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.rr-match__feature-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rr-navy);
  margin-bottom: 6px;
}

.rr-match__feature-desc {
  font-size: 0.92rem;
  color: var(--rr-mid);
  line-height: 1.55;
  max-width: 440px;
}

.rr-match__spec {
  display: flex;
  justify-content: center;
}

.rr-match__spec-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--rr-black);
  border-radius: 14px;
  padding: 32px 30px 20px;
  box-shadow: 0 24px 56px rgba(13,27,42,0.28);
}

.rr-match__spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--rr-red);
  border-radius: 0 0 3px 3px;
}

.rr-match__spec-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}

.rr-match__spec-eyebrow {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rr-red);
  margin-bottom: 6px;
}

.rr-match__spec-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--rr-white);
}

.rr-match__spec-list {
  list-style: none;
}

.rr-match__spec-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rr-match__spec-list li:last-child {
  border-bottom: none;
}

.rr-match__spec-list li span {
  display: block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--rr-white);
  margin-bottom: 2px;
}

.rr-match__spec-list li small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .rr-match__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rr-match__spec {
    order: -1;
  }
}

@media (max-width: 768px) {
  .rr-match {
    padding: 56px 0;
  }
  .rr-match__spec-card {
    padding: 26px 22px 16px;
  }
}

/* ══════════════════════════════
   SCROLL-REVEAL (was inline style manipulation in JS; now CSS-driven,
   JS only toggles the "--in" class)
══════════════════════════════ */
.rr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease var(--rr-reveal-delay, 0s),
              transform 0.55s ease var(--rr-reveal-delay, 0s);
}
.rr-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

.rr-reveal-soft {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease var(--rr-reveal-delay, 0s),
              transform 0.7s ease var(--rr-reveal-delay, 0s);
}
.rr-reveal-soft--in {
  opacity: 0.6;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .rr-reveal,
  .rr-reveal-soft {
    transition: none;
  }
}