/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   GLOBAL DESIGN SYSTEM
   ========================================================= */


/* =========================================================
   01. ROOT / DESIGN TOKENS
   ========================================================= */

:root {

  /* =========================
     BRAND COLORS
     ========================= */

  --rj-navy: #072F6B;
  --rj-navy-deep: #061B38;
  --rj-blue: #245B9B;
  --rj-steel-blue: #56718D;

  --rj-silver: #A2A3A7;
  --rj-gray: #E7E9EC;
  --rj-gray-soft: #F3F4F5;

  --rj-white: #FBFBFA;
  --rj-white-pure: #FFFFFF;

  --rj-graphite: #18212B;


  /* =========================
     SEMANTIC COLORS
     ========================= */

  --rj-bg: #FBFBFA;
  --rj-bg-soft: #F5F6F7;

  --rj-surface: rgba(255, 255, 255, 0.88);
  --rj-surface-solid: #FFFFFF;

  --rj-text: #18212B;
  --rj-text-soft: #5E6975;

  --rj-border: rgba(7, 47, 107, 0.12);
  --rj-border-strong: rgba(7, 47, 107, 0.22);


  /* =========================
     FONTS
     ========================= */

  --rj-font-body:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --rj-font-display:
    "DM Serif Display",
    Georgia,
    serif;


  /* =========================
     TYPE SCALE
     ========================= */

  --rj-text-xs: 0.88rem;
  --rj-text-sm: 0.95rem;
  --rj-text-md: 1rem;
  --rj-text-lg: 1.12rem;
  --rj-text-xl: 1.28rem;

  --rj-title-sm: clamp(1.85rem, 2.5vw, 2.65rem);
  --rj-title-md: clamp(2.25rem, 3.5vw, 3.65rem);
  --rj-title-lg: clamp(3rem, 5vw, 5.35rem);


  /* =========================
     CONTAINERS
     ========================= */

  --rj-container: 1440px;

  --rj-gutter: clamp(24px, 5vw, 76px);

  --rj-section-space:
    clamp(84px, 9vw, 150px);


  /* =========================
     RADIUS
     ========================= */

  --rj-radius-sm: 10px;
  --rj-radius-md: 16px;
  --rj-radius-lg: 24px;
  --rj-radius-xl: 32px;


  /* =========================
     SHADOWS
     ========================= */

  --rj-shadow-xs:
    0 4px 14px
    rgba(6, 27, 56, 0.05);

  --rj-shadow-sm:
    0 10px 30px
    rgba(6, 27, 56, 0.08);

  --rj-shadow-md:
    0 18px 50px
    rgba(6, 27, 56, 0.11);

  --rj-shadow-lg:
    0 30px 80px
    rgba(6, 27, 56, 0.15);


  /* =========================
     MOTION
     ========================= */

  --rj-ease:
    cubic-bezier(0.22, 1, 0.36, 1);

  --rj-ease-soft:
    cubic-bezier(0.25, 0.8, 0.25, 1);

  --rj-ease-page:
    cubic-bezier(0.76, 0, 0.24, 1);

  --rj-fast: 220ms;
  --rj-normal: 420ms;
  --rj-slow: 760ms;

  --rj-page-transition-duration: 620ms;


  /* =========================
     NAVIGATION OFFSET
     Será actualizado cuando
     construyamos el header.
     ========================= */

  --rj-scroll-offset: 118px;
}


/* =========================================================
   02. RESET
   ========================================================= */

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

html {
  margin: 0;
  padding: 0;

  font-size: 17px;

  scroll-behavior: auto;

  background: var(--rj-bg);

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;

  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  margin: 0;

  overflow-x: clip;

  font-family: var(--rj-font-body);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;

  color: var(--rj-text);

  background-color: var(--rj-bg);

  background-image:
    radial-gradient(
      circle at 10% 8%,
      rgba(36, 91, 155, 0.055) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(162, 163, 167, 0.075) 0,
      transparent 32%
    ),
    radial-gradient(
      circle at 48% 85%,
      rgba(86, 113, 141, 0.035) 0,
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #FBFBFA 0%,
      #F8F8F7 48%,
      #F3F4F5 100%
    );

  background-attachment: fixed;

  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   03. MINERAL / PAINT TEXTURE

   Muy sutil.
   No es grid.
   No interfiere con clics.
   ========================================================= */

body::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: -1;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E"
    );

  background-repeat: repeat;

  mix-blend-mode: multiply;
}


/* =========================================================
   04. DEFAULT ELEMENTS
   ========================================================= */

main {
  display: block;
}

section {
  position: relative;
}

img,
picture,
svg,
video,
canvas {
  display: block;

  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   05. ACCESSIBILITY / FOCUS
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(36, 91, 155, 0.45);

  outline-offset: 4px;

  border-radius: 4px;
}

::selection {
  color: var(--rj-white-pure);

  background: var(--rj-navy);
}


/* =========================================================
   06. GLOBAL CONTAINER
   ========================================================= */

.rj-container {
  width:
    min(
      calc(100% - (var(--rj-gutter) * 2)),
      var(--rj-container)
    );

  margin-inline: auto;
}


/* =========================================================
   07. GLOBAL SECTION
   ========================================================= */

.rj-section {
  position: relative;

  padding-block: var(--rj-section-space);
}

.rj-section--white {
  background: var(--rj-white);
}

.rj-section--soft {
  background: var(--rj-bg-soft);
}

.rj-section--navy {
  color: var(--rj-white);

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(36, 91, 155, 0.22),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--rj-navy-deep),
      var(--rj-navy)
    );
}


/* =========================================================
   08. TYPOGRAPHY
   ========================================================= */

.rj-kicker {
  margin-bottom: 14px;

  font-size: var(--rj-text-sm);
  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: var(--rj-steel-blue);
}

.rj-display {
  margin-bottom: 24px;

  font-family: var(--rj-font-display);

  font-size: var(--rj-title-lg);
  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.025em;

  color: var(--rj-navy-deep);
}

.rj-title {
  margin-bottom: 20px;

  font-family: var(--rj-font-display);

  font-size: var(--rj-title-md);
  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.02em;

  color: var(--rj-navy-deep);
}

.rj-subtitle {
  margin-bottom: 18px;

  font-size: var(--rj-title-sm);

  line-height: 1.12;

  color: var(--rj-navy-deep);
}

.rj-copy {
  max-width: 66ch;

  font-size: var(--rj-text-lg);

  line-height: 1.72;

  color: var(--rj-text-soft);
}


/* =========================================================
   09. GLOBAL BUTTON SYSTEM
   ========================================================= */

.rj-btn {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 54px;

  padding:
    14px
    25px;

  overflow: hidden;

  border:
    1px solid
    transparent;

  border-radius: var(--rj-radius-sm);

  font-size: var(--rj-text-sm);
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.025em;

  cursor: pointer;

  transition:
    color var(--rj-normal) var(--rj-ease),
    background-color var(--rj-normal) var(--rj-ease),
    border-color var(--rj-normal) var(--rj-ease),
    box-shadow var(--rj-normal) var(--rj-ease),
    transform var(--rj-normal) var(--rj-ease);
}

.rj-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  pointer-events: none;

  transform: skewX(-22deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );

  transition:
    left 700ms var(--rj-ease);
}

.rj-btn:hover::before {
  left: 145%;
}

.rj-btn:hover {
  transform: translateY(-2px);
}

.rj-btn:active {
  transform: translateY(0);
}


/* PRIMARY */

.rj-btn--primary {
  color: var(--rj-white-pure);

  background:
    linear-gradient(
      135deg,
      var(--rj-navy),
      var(--rj-navy-deep)
    );

  box-shadow:
    0 12px 30px
    rgba(7, 47, 107, 0.18);
}

.rj-btn--primary:hover {
  box-shadow:
    0 17px 38px
    rgba(7, 47, 107, 0.25);
}


/* OUTLINE */

.rj-btn--outline {
  color: var(--rj-navy);

  border-color: var(--rj-border-strong);

  background:
    rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rj-btn--outline:hover {
  color: var(--rj-white);

  border-color: var(--rj-navy);

  background: var(--rj-navy);
}


/* =========================================================
   10. MEDIA / IMAGE BASE
   ========================================================= */

.rj-media {
  position: relative;

  overflow: hidden;

  border-radius: var(--rj-radius-lg);

  background: var(--rj-gray);

  box-shadow: var(--rj-shadow-md);
}

.rj-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 900ms var(--rj-ease);
}

.rj-media:hover img {
  transform: scale(1.025);
}


/* =========================================================
   11. PAGE WRAPPER
   ========================================================= */

.rj-page {
  position: relative;

  z-index: 1;

  width: 100%;

  min-height: 100vh;
  min-height: 100svh;
}


/* =========================================================
   12. PAGE ENTRY
   ========================================================= */

.rj-motion-ok .rj-page {
  animation:
    rj-page-enter
    680ms
    var(--rj-ease)
    both;
}

@keyframes rj-page-enter {

  from {
    opacity: 0;

    transform:
      translate3d(
        0,
        10px,
        0
      );
  }

  to {
    opacity: 1;

    transform:
      translate3d(
        0,
        0,
        0
      );
  }

}


/* =========================================================
   13. PAGE TRANSITION
   ========================================================= */

.rj-page-transition {
  position: fixed;

  inset: 0;

  z-index: 999999;

  pointer-events: none;

  overflow: hidden;

  visibility: hidden;
}

.rj-page-transition__panel {
  position: absolute;

  top: -15%;
  bottom: -15%;

  left: -18%;

  width: 136%;

  transform:
    translate3d(
      -115%,
      0,
      0
    )
    skewX(-6deg);

  background:
    linear-gradient(
      135deg,
      var(--rj-navy-deep) 0%,
      var(--rj-navy) 58%,
      #0D407F 100%
    );

  transition:
    transform
    var(--rj-page-transition-duration)
    var(--rj-ease-page);

  will-change: transform;
}

.rj-page-transition__accent {
  position: absolute;

  top: -15%;
  bottom: -15%;

  left: -4%;

  width: 26px;

  transform:
    translate3d(
      -200vw,
      0,
      0
    )
    skewX(-6deg);

  background:
    linear-gradient(
      180deg,
      var(--rj-white),
      var(--rj-silver)
    );

  opacity: 0.9;

  transition:
    transform
    calc(
      var(--rj-page-transition-duration) + 80ms
    )
    var(--rj-ease-page);

  will-change: transform;
}


/* EXIT STATE */

body.rj-is-leaving
.rj-page-transition {
  visibility: visible;

  pointer-events: all;
}

body.rj-is-leaving
.rj-page-transition__panel {
  transform:
    translate3d(
      0,
      0,
      0
    )
    skewX(-6deg);
}

body.rj-is-leaving
.rj-page-transition__accent {
  transform:
    translate3d(
      104vw,
      0,
      0
    )
    skewX(-6deg);
}


/* PAGE CONTENT DURING EXIT */

.rj-motion-ok
body.rj-is-leaving
.rj-page {
  transform:
    translate3d(
      0,
      -4px,
      0
    );

  opacity: 0.92;

  transition:
    opacity 360ms var(--rj-ease),
    transform 500ms var(--rj-ease);
}


/* =========================================================
   14. SCROLL REVEAL SYSTEM
   ========================================================= */

/*
   IMPORTANT:
   Los elementos solo se ocultan cuando JS confirma
   que puede ejecutar las animaciones.

   Si JS falla, todo sigue siendo visible.
*/

.rj-motion-ready
[data-rj-reveal] {
  opacity: 0;

  transition:
    opacity
    760ms
    var(--rj-ease),

    transform
    850ms
    var(--rj-ease),

    filter
    850ms
    var(--rj-ease);
}


/* UP */

.rj-motion-ready
[data-rj-reveal="up"] {
  transform:
    translate3d(
      0,
      28px,
      0
    );

  filter:
    blur(3px);
}


/* LEFT */

.rj-motion-ready
[data-rj-reveal="left"] {
  transform:
    translate3d(
      -30px,
      0,
      0
    );
}


/* RIGHT */

.rj-motion-ready
[data-rj-reveal="right"] {
  transform:
    translate3d(
      30px,
      0,
      0
    );
}


/* SCALE */

.rj-motion-ready
[data-rj-reveal="scale"] {
  transform:
    scale(0.975);
}


/* VISIBLE */

.rj-motion-ready
[data-rj-reveal].is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    )
    scale(1);

  filter: blur(0);
}


/* =========================================================
   15. IMAGE MASK REVEAL
   ========================================================= */

.rj-motion-ready
[data-rj-image-reveal] {
  clip-path:
    inset(
      0
      0
      100%
      0
      round
      var(--rj-radius-lg)
    );

  transition:
    clip-path
    1000ms
    var(--rj-ease);
}

.rj-motion-ready
[data-rj-image-reveal].is-visible {
  clip-path:
    inset(
      0
      0
      0
      0
      round
      var(--rj-radius-lg)
    );
}


/* =========================================================
   16. STAGGER HELPERS
   ========================================================= */

[data-rj-delay="1"] {
  transition-delay: 80ms !important;
}

[data-rj-delay="2"] {
  transition-delay: 160ms !important;
}

[data-rj-delay="3"] {
  transition-delay: 240ms !important;
}

[data-rj-delay="4"] {
  transition-delay: 320ms !important;
}

[data-rj-delay="5"] {
  transition-delay: 400ms !important;
}


/* =========================================================
   17. ANCHOR DESTINATIONS
   ========================================================= */

[id] {
  scroll-margin-top:
    var(--rj-scroll-offset);
}


/* =========================================================
   18. SCROLLBAR
   ========================================================= */

/* FIREFOX */

html {
  scrollbar-width: thin;

  scrollbar-color:
    var(--rj-navy)
    var(--rj-gray-soft);
}


/* CHROME / EDGE / SAFARI */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--rj-gray-soft);
}

::-webkit-scrollbar-thumb {
  border:
    3px solid
    var(--rj-gray-soft);

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      var(--rj-blue),
      var(--rj-navy-deep)
    );
}

::-webkit-scrollbar-thumb:hover {
  background:
    var(--rj-navy);
}


/* =========================================================
   19. DESKTOP
   1200px+
   ========================================================= */

@media (min-width: 1200px) {

  :root {
    --rj-scroll-offset: 118px;
  }

  html {
    font-size: 17px;
  }

  .rj-container {
    width:
      min(
        calc(100% - 120px),
        var(--rj-container)
      );
  }

}


/* =========================================================
   20. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  :root {
    --rj-gutter: 38px;

    --rj-section-space: 100px;

    --rj-scroll-offset: 104px;
  }

  html {
    font-size: 16.5px;
  }

  .rj-display {
    line-height: 1;
  }

}


/* =========================================================
   21. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  :root {
    --rj-gutter: 24px;

    --rj-section-space: 78px;

    --rj-scroll-offset: 92px;

    --rj-radius-lg: 20px;
  }

  html {
    font-size: 16px;
  }

  .rj-copy {
    font-size: 1.05rem;
  }

  .rj-btn {
    min-height: 52px;

    padding:
      14px
      21px;
  }

}


/* =========================================================
   22. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  :root {
    --rj-gutter: 19px;

    --rj-section-space: 68px;

    --rj-scroll-offset: 84px;

    --rj-radius-lg: 18px;
  }

  html {
    font-size: 16px;
  }

  .rj-kicker {
    font-size: 0.87rem;

    letter-spacing: 0.13em;
  }

  .rj-copy {
    font-size: 1.02rem;

    line-height: 1.7;
  }

  .rj-btn {
    width: 100%;

    min-height: 52px;
  }

}







































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   01 TOP BAR + 02 HEADER
   ========================================================= */


/* =========================================================
   01. HEADER VARIABLES
   ========================================================= */

:root {
  --rj-topbar-height: 36px;
  --rj-header-height: 84px;

  --rj-shell-height:
    calc(
      var(--rj-topbar-height) +
      var(--rj-header-height)
    );

  /*
    El Hero que construiremos después utilizará:

    min-height:
      calc(100svh - var(--rj-shell-height));

    De este modo:
    TOPBAR + HEADER + HERO <= 100svh
  */

  --rj-first-screen-height:
    calc(
      100svh -
      var(--rj-shell-height)
    );

  --rj-header-z: 9000;
  --rj-menu-z: 8500;

  /*
    main.js necesita un valor resoluble directamente
    en px para calcular correctamente el scroll.
  */

  --rj-scroll-offset: 138px;
}


/* =========================================================
   02. FIXED SITE SHELL
   ========================================================= */

.rj-site-shell {
  position: fixed;

  top: 0;
  right: 0;
  left: 0;

  z-index: var(--rj-header-z);

  width: 100%;

  transform: translateZ(0);

  isolation: isolate;
}


/*
   Reserva exactamente el espacio que ocupa
   el fixed shell.

   Esto evita saltos de layout.
*/

.rj-site-shell-slot {
  width: 100%;
  height: var(--rj-shell-height);

  flex: 0 0 auto;
}


/* =========================================================
   03. TOP BAR
   ========================================================= */

.rj-topbar {
  position: relative;

  width: 100%;
  height: var(--rj-topbar-height);

  color: rgba(255, 255, 255, 0.9);

  background:
    linear-gradient(
      90deg,
      var(--rj-navy-deep) 0%,
      var(--rj-navy) 62%,
      #0A3A79 100%
    );
}

.rj-topbar__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  height: 100%;

  gap: 28px;
}

.rj-topbar__location,
.rj-topbar__hours {
  display: flex;

  align-items: center;

  font-size: 0.84rem;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.015em;
}

.rj-topbar__location {
  gap: 9px;
}

.rj-topbar__location svg {
  width: 15px;
  height: 15px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.rj-topbar__hours {
  gap: 13px;

  color: rgba(255, 255, 255, 0.76);
}

.rj-topbar__hours strong {
  margin-left: 4px;

  font-weight: 600;

  color: var(--rj-white-pure);
}

.rj-topbar__separator {
  width: 1px;
  height: 13px;

  background:
    rgba(255, 255, 255, 0.27);
}


/* =========================================================
   04. HEADER
   ========================================================= */

.rj-header {
  position: relative;

  width: 100%;
  height: var(--rj-header-height);

  border-bottom:
    1px solid
    rgba(7, 47, 107, 0.07);

  background:
    rgba(251, 251, 250, 0.94);

  backdrop-filter:
    blur(18px)
    saturate(125%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(125%);

  transition:
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease);
}


/*
   Al hacer scroll NO modificamos alturas.

   Solo cambia profundidad y fondo.
   Por lo tanto no existe layout shift.
*/

.rj-site-shell.is-scrolled
.rj-header {
  border-bottom-color:
    rgba(7, 47, 107, 0.11);

  background:
    rgba(251, 251, 250, 0.975);

  box-shadow:
    0 12px 34px
    rgba(6, 27, 56, 0.07);
}


/* =========================================================
   05. HEADER INNER
   ========================================================= */

.rj-header__inner {
  position: relative;

  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  height: 100%;

  gap: 28px;
}


/* =========================================================
   06. BRAND
   ========================================================= */

.rj-header__brand {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  z-index: 3;
}

.rj-header__brand img {
  width: auto;
  height: 68px;

  object-fit: contain;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}

.rj-header__brand:hover img {
  transform:
    translateY(-1px)
    scale(1.015);
}


/* =========================================================
   07. DESKTOP NAVIGATION
   ========================================================= */

.rj-header__desktop-nav {
  display: flex;

  align-items: center;
  justify-content: center;

  min-width: 0;

  gap: clamp(16px, 1.75vw, 30px);
}

.rj-nav-link {
  position: relative;

  display: inline-flex;

  align-items: center;

  min-height: 44px;

  padding: 4px 0;

  white-space: nowrap;

  font-size: 0.91rem;
  font-weight: 600;

  line-height: 1;

  color: #364554;

  transition:
    color
    var(--rj-normal)
    var(--rj-ease);
}

.rj-nav-link::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 4px;
  left: 0;

  height: 2px;

  border-radius: 999px;

  transform:
    scaleX(0);

  transform-origin:
    right center;

  background:
    var(--rj-navy);

  transition:
    transform
    420ms
    var(--rj-ease);
}

.rj-nav-link:hover,
.rj-nav-link.is-active {
  color: var(--rj-navy);
}

.rj-nav-link:hover::after,
.rj-nav-link.is-active::after {
  transform:
    scaleX(1);

  transform-origin:
    left center;
}


/* =========================================================
   08. HEADER ACTIONS
   ========================================================= */

.rj-header__actions {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap: 12px;
}


/* PHONE */

.rj-header__phone {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding:
    0
    18px;

  border:
    1px solid
    rgba(7, 47, 107, 0.18);

  border-radius:
    var(--rj-radius-sm);

  font-size: 0.91rem;
  font-weight: 700;

  white-space: nowrap;

  color: var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.5);

  transition:
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}

.rj-header__phone svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

.rj-header__phone:hover {
  border-color:
    rgba(7, 47, 107, 0.3);

  background:
    var(--rj-white-pure);

  box-shadow:
    var(--rj-shadow-xs);

  transform:
    translateY(-1px);
}


/* ESTIMATE */

.rj-header__estimate {
  min-height: 50px;

  padding-inline: 21px;

  white-space: nowrap;
}

.rj-header__estimate svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}

.rj-header__estimate:hover svg {
  transform:
    translateX(3px);
}


/* =========================================================
   09. HAMBURGER
   ========================================================= */

.rj-header__menu-toggle {
  position: relative;

  z-index: 5;

  display: none;

  place-items: center;

  width: 46px;
  height: 46px;

  padding: 0;

  border:
    1px solid
    var(--rj-border);

  border-radius: 13px;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.7);

  cursor: pointer;

  transition:
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease);
}

.rj-header__menu-toggle:hover {
  border-color:
    var(--rj-border-strong);

  background:
    var(--rj-white-pure);

  box-shadow:
    var(--rj-shadow-xs);
}

.rj-menu-icon {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  width: 20px;
  height: 16px;

  gap: 4px;
}

.rj-menu-icon span {
  display: block;

  width: 100%;
  height: 2px;

  border-radius: 999px;

  background:
    currentColor;

  transform-origin:
    center center;

  transition:
    transform
    420ms
    var(--rj-ease),
    opacity
    220ms
    var(--rj-ease);
}


/* HAMBURGER -> X */

.rj-header__menu-toggle[aria-expanded="true"]
.rj-menu-icon span:nth-child(1) {
  transform:
    translateY(6px)
    rotate(45deg);
}

.rj-header__menu-toggle[aria-expanded="true"]
.rj-menu-icon span:nth-child(2) {
  opacity: 0;
}

.rj-header__menu-toggle[aria-expanded="true"]
.rj-menu-icon span:nth-child(3) {
  transform:
    translateY(-6px)
    rotate(-45deg);
}


/* =========================================================
   10. MOBILE MENU OVERLAY
   ========================================================= */

.rj-mobile-menu {
  position: fixed;

  inset:
    var(--rj-shell-height)
    0
    0
    0;

  z-index:
    var(--rj-menu-z);

  display: none;

  overflow: hidden;

  opacity: 0;

  pointer-events: none;

  visibility: hidden;
}

.rj-mobile-menu__backdrop {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;

  border: 0;

  background:
    rgba(6, 27, 56, 0.32);

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);

  cursor: default;
}


/* MENU PANEL */

.rj-mobile-menu__panel {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  width:
    min(
      440px,
      100%
    );

  height: 100%;

  padding:
    clamp(30px, 5vw, 48px)
    clamp(24px, 5vw, 40px)
    28px;

  overflow-y: auto;

  overscroll-behavior:
    contain;

  background:
    linear-gradient(
      155deg,
      rgba(251, 251, 250, 0.985),
      rgba(243, 244, 245, 0.985)
    );

  box-shadow:
    22px
    0
    60px
    rgba(6, 27, 56, 0.16);

  transform:
    translate3d(
      -28px,
      0,
      0
    );
}


/*
   Motion only when user allows it.
*/

.rj-motion-ok
.rj-mobile-menu {
  transition:
    opacity
    380ms
    var(--rj-ease),
    visibility
    380ms
    var(--rj-ease);
}

.rj-motion-ok
.rj-mobile-menu__panel {
  transition:
    transform
    560ms
    var(--rj-ease);
}


/* OPEN */

.rj-mobile-menu.is-open {
  opacity: 1;

  pointer-events: auto;

  visibility: visible;
}

.rj-mobile-menu.is-open
.rj-mobile-menu__panel {
  transform:
    translate3d(
      0,
      0,
      0
    );
}


/* =========================================================
   11. MOBILE MENU CONTENT
   ========================================================= */

.rj-mobile-menu__intro {
  display: flex;

  flex-direction: column;

  gap: 5px;

  margin-bottom: 27px;
}

.rj-mobile-menu__intro span {
  font-family:
    var(--rj-font-display);

  font-size: 1.35rem;

  line-height: 1.1;

  color:
    var(--rj-navy-deep);
}

.rj-mobile-menu__intro small {
  font-size: 0.87rem;
  font-weight: 600;

  letter-spacing: 0.035em;

  color:
    var(--rj-steel-blue);
}


/* NAV */

.rj-mobile-nav {
  display: flex;

  flex-direction: column;

  border-top:
    1px solid
    var(--rj-border);
}

.rj-mobile-nav a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 58px;

  gap: 20px;

  border-bottom:
    1px solid
    var(--rj-border);

  font-size: 1.04rem;
  font-weight: 600;

  color:
    var(--rj-graphite);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    padding-left
    var(--rj-normal)
    var(--rj-ease);
}

.rj-mobile-nav a span:last-child {
  font-size: 1.25rem;

  color:
    var(--rj-blue);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}

.rj-mobile-nav a:hover {
  padding-left: 5px;

  color:
    var(--rj-navy);
}

.rj-mobile-nav a:hover
span:last-child {
  transform:
    translateX(4px);
}


/* ESTIMATE ITEM */

.rj-mobile-nav
.rj-mobile-nav__estimate {
  color:
    var(--rj-navy);

  font-weight: 800;
}


/* FOOT */

.rj-mobile-menu__footer {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-top: auto;

  padding-top: 28px;
}

.rj-mobile-menu__footer a {
  width: fit-content;

  font-size: 1.02rem;
  font-weight: 800;

  color:
    var(--rj-navy);
}

.rj-mobile-menu__footer span {
  font-size: 0.86rem;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   12. SCROLL LOCK

   JS conserva scrollY y lo restaura.
   Nunca enviamos al usuario a scrollY = 0.
   ========================================================= */

html.rj-scroll-locked,
body.rj-scroll-locked {
  overflow: hidden;

  overscroll-behavior:
    none;
}


/* =========================================================
   13. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  :root {
    --rj-topbar-height: 36px;
    --rj-header-height: 84px;

    --rj-scroll-offset: 138px;
  }

  .rj-header__desktop-nav {
    display: flex;
  }

  .rj-header__menu-toggle {
    display: none;
  }

  .rj-mobile-menu {
    display: none !important;
  }

  .rj-header__brand img {
    height: 68px;
  }

}


/* =========================================================
   14. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  :root {
    --rj-topbar-height: 34px;
    --rj-header-height: 78px;

    --rj-scroll-offset: 128px;
  }

  .rj-topbar__inner {
    gap: 18px;
  }

  .rj-topbar__location,
  .rj-topbar__hours {
    font-size: 0.78rem;
  }

  .rj-header__inner {
    display: flex;

    justify-content: space-between;

    gap: 18px;
  }

  .rj-header__menu-toggle {
    display: grid;
  }

  .rj-header__desktop-nav {
    display: none;
  }

  .rj-header__brand {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
      translate(
        -50%,
        -50%
      );
  }

  .rj-header__brand img {
    height: 62px;
  }

  .rj-header__actions {
    margin-left: auto;
  }

  .rj-header__phone {
    display: none;
  }

  .rj-header__estimate {
    min-height: 47px;

    padding-inline: 18px;
  }

  .rj-mobile-menu {
    display: block;
  }

}


/* =========================================================
   15. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  :root {
    --rj-topbar-height: 0px;
    --rj-header-height: 76px;

    --rj-scroll-offset: 90px;
  }

  .rj-topbar {
    display: none;
  }

  .rj-header__inner {
    display: flex;

    justify-content: space-between;

    gap: 14px;
  }

  .rj-header__menu-toggle {
    display: grid;

    width: 44px;
    height: 44px;
  }

  .rj-header__desktop-nav {
    display: none;
  }

  .rj-header__brand {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
      translate(
        -50%,
        -50%
      );
  }

  .rj-header__brand img {
    height: 59px;
  }

  .rj-header__actions {
    margin-left: auto;
  }

  .rj-header__phone {
    display: none;
  }

  .rj-header__estimate {
    min-height: 44px;

    padding:
      11px
      15px;

    border-radius: 11px;

    font-size: 0.78rem;
  }

  .rj-header__estimate svg {
    display: none;
  }

  .rj-mobile-menu {
    display: block;
  }

  .rj-mobile-menu__panel {
    width: 100%;

    box-shadow: none;
  }

}


/* =========================================================
   16. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  :root {
    --rj-topbar-height: 0px;
    --rj-header-height: 72px;

    --rj-scroll-offset: 84px;
  }

  .rj-topbar {
    display: none;
  }

  .rj-header__inner {
    display: flex;

    justify-content: space-between;

    gap: 10px;
  }

  .rj-header__menu-toggle {
    display: grid;

    width: 42px;
    height: 42px;

    border-radius: 11px;
  }

  .rj-header__desktop-nav {
    display: none;
  }

  .rj-header__brand {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
      translate(
        -50%,
        -50%
      );
  }

  .rj-header__brand img {
    height: 54px;
  }

  .rj-header__actions {
    margin-left: auto;
  }

  .rj-header__phone {
    display: none;
  }

  .rj-header__estimate {
    width: auto;

    min-height: 42px;

    padding:
      10px
      12px;

    border-radius: 10px;

    font-size: 0.72rem;

    letter-spacing: 0;
  }

  .rj-header__estimate svg {
    display: none;
  }

  .rj-mobile-menu {
    display: block;
  }

  .rj-mobile-menu__panel {
    width: 100%;

    padding:
      27px
      21px
      23px;

    box-shadow: none;
  }

  .rj-mobile-menu__intro {
    margin-bottom: 21px;
  }

  .rj-mobile-nav a {
    min-height: 54px;

    font-size: 1rem;
  }

}

















































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   03. HERO
   ========================================================= */


/* =========================================================
   01. HERO BASE
   ========================================================= */

.rj-hero {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 54%)
    minmax(0, 46%);

  width: 100%;

  height:
    var(--rj-first-screen-height);

  min-height:
    570px;

  overflow: hidden;

  isolation: isolate;

  background:
    var(--rj-white);
}


/* =========================================================
   02. LEFT BACKGROUND
   ========================================================= */

.rj-hero__content {
  position: relative;

  z-index: 4;

  display: flex;

  align-items: center;

  min-width: 0;

  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 83% 85%,
      rgba(162, 163, 167, 0.08),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #FBFBFA 0%,
      #F9F9F8 52%,
      #F3F4F5 100%
    );
}


/*
   Subtle painted / mineral surface.
*/

.rj-hero__content::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.22;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E"
    );

  mix-blend-mode: multiply;
}


.rj-hero__content-inner {
  position: relative;

  z-index: 2;

  width:
    min(
      100%,
      790px
    );

  margin-left:
    max(
      var(--rj-gutter),
      calc(
        (100vw - var(--rj-container)) / 2 +
        var(--rj-gutter)
      )
    );

  padding:
    34px
    clamp(56px, 5vw, 92px)
    34px
    0;
}


/* =========================================================
   03. KICKER
   ========================================================= */

.rj-hero__kicker {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 20px;

  font-size: 0.82rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}

.rj-hero__kicker i {
  display: block;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    var(--rj-navy);
}


/* =========================================================
   04. TITLE
   ========================================================= */

.rj-hero__title {
  max-width: 760px;

  margin-bottom: 23px;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3.4rem,
      5vw,
      5.8rem
    );

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}

.rj-hero__title span {
  display: block;

  color:
    #263648;
}


/* =========================================================
   05. DESCRIPTION
   ========================================================= */

.rj-hero__description {
  max-width: 660px;

  margin-bottom: 28px;

  font-size:
    clamp(
      1.02rem,
      1.15vw,
      1.16rem
    );

  font-weight: 400;

  line-height: 1.62;

  color:
    #5C6875;
}


/* =========================================================
   06. TRUST ROW
   ========================================================= */

.rj-hero__trust {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  max-width: 680px;

  margin-bottom: 27px;
}

.rj-hero__trust-item {
  position: relative;

  display: flex;

  align-items: center;

  gap: 12px;

  min-width: 0;

  padding:
    3px
    20px;
}

.rj-hero__trust-item:first-child {
  padding-left: 0;
}

.rj-hero__trust-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 14%;
  right: 0;

  width: 1px;
  height: 72%;

  background:
    rgba(7, 47, 107, 0.12);
}


/* ICON */

.rj-hero__trust-icon {
  display: grid;

  place-items: center;

  flex:
    0
    0
    40px;

  width: 40px;
  height: 40px;

  color:
    var(--rj-navy);
}

.rj-hero__trust-icon svg {
  width: 34px;
  height: 34px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* TEXT */

.rj-hero__trust-copy {
  display: flex;

  flex-direction: column;

  gap: 2px;

  min-width: 0;
}

.rj-hero__trust-copy strong,
.rj-hero__trust-copy small {
  display: block;
}

.rj-hero__trust-copy strong {
  font-size: 0.9rem;
  font-weight: 700;

  line-height: 1.25;

  color:
    var(--rj-navy-deep);
}

.rj-hero__trust-copy small {
  font-size: 0.84rem;
  font-weight: 500;

  line-height: 1.25;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   07. ACTIONS
   ========================================================= */

.rj-hero__actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 14px;
}

.rj-hero__actions .rj-btn {
  min-height: 56px;

  padding-inline: 25px;
}

.rj-hero__primary svg,
.rj-hero__phone svg {
  width: 18px;
  height: 18px;
}

.rj-hero__primary svg {
  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}

.rj-hero__primary:hover svg {
  transform:
    translateX(4px);
}

.rj-hero__phone svg {
  fill:
    currentColor;
}


/* =========================================================
   08. RIGHT VISUAL
   ========================================================= */

.rj-hero__visual {
  position: relative;

  z-index: 1;

  min-width: 0;

  height: 100%;

  overflow: hidden;

  background:
    var(--rj-gray);
}

.rj-hero__photo {
  --rj-hero-x: 0px;
  --rj-hero-y: 0px;

  position: absolute;

  inset: -12px;

  overflow: hidden;
}

.rj-hero__photo img {
  width: calc(100% + 24px);
  height: calc(100% + 24px);

  object-fit: cover;

  object-position: 53% center;

  transform:
    translate3d(
      var(--rj-hero-x),
      var(--rj-hero-y),
      0
    )
    scale(1.035);

  transition:
    transform
    900ms
    var(--rj-ease);

  will-change:
    transform;
}


/* IMAGE TREATMENT */

.rj-hero__photo-overlay {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(6, 27, 56, 0.03) 0%,
      transparent 25%
    ),
    linear-gradient(
      180deg,
      rgba(6, 27, 56, 0.02) 0%,
      transparent 58%,
      rgba(6, 27, 56, 0.09) 100%
    );
}


/* =========================================================
   09. HANDWRITTEN TAGLINE
   ========================================================= */

.rj-hero__photo-tagline {
  position: absolute;

  top: clamp(54px, 9vh, 90px);
  right: clamp(30px, 4vw, 68px);

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  transform:
    translate3d(
      0,
      var(--rj-tagline-y, 0px),
      0
    );

  color:
    rgba(7, 47, 107, 0.91);

  text-shadow:
    0 1px 14px
    rgba(255, 255, 255, 0.5);

  transition:
    transform
    700ms
    var(--rj-ease);
}

.rj-hero__photo-tagline span {
  font-family:
    "Segoe Print",
    "Bradley Hand",
    cursive;

  font-size:
    clamp(
      1.35rem,
      2vw,
      2.05rem
    );

  font-weight: 500;

  line-height: 1.12;

  transform:
    rotate(-3deg);
}

.rj-hero__photo-tagline i {
  width: 88%;

  height: 2px;

  margin-top: 9px;

  margin-left: 10%;

  transform:
    rotate(-5deg);

  border-radius: 99px;

  background:
    var(--rj-navy);
}


/* =========================================================
   10. SMALL BRAND LINE
   ========================================================= */

.rj-hero__photo-line {
  position: absolute;

  right: 0;
  bottom: 34px;

  width: 130px;
  height: 2px;

  transform:
    skewX(-32deg);

  opacity: 0.62;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--rj-white-pure)
    );
}


/* =========================================================
   11. DIAGONAL DIVIDER
   ========================================================= */

.rj-hero__divider {
  position: absolute;

  z-index: 5;

  top: -8%;
  bottom: -8%;

  left: 54%;

  width: 46px;

  pointer-events: none;

  transform:
    translateX(-50%)
    skewX(-13deg);

  background:
    var(--rj-white);
}

.rj-hero__divider::after {
  content: "";

  position: absolute;

  top: 0;
  right: -9px;

  width: 9px;
  height: 100%;

  background:
    var(--rj-silver);

  opacity: 0.78;
}

.rj-hero__divider span {
  position: absolute;

  top: 0;
  right: -15px;

  width: 3px;
  height: 100%;

  background:
    rgba(7, 47, 107, 0.48);
}


/* =========================================================
   12. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-hero {
    grid-template-columns:
      54%
      46%;

    min-height: 570px;
  }

  .rj-hero__content-inner {
    padding-right:
      clamp(
        62px,
        5vw,
        94px
      );
  }

  .rj-hero__visual {
    clip-path:
      polygon(
        7% 0,
        100% 0,
        100% 100%,
        0 100%
      );
  }

}


/* =========================================================
   13. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-hero {
    grid-template-columns:
      57%
      43%;

    height:
      var(--rj-first-screen-height);

    min-height: 550px;
  }

  .rj-hero__content-inner {
    width: 100%;

    margin-left:
      var(--rj-gutter);

    padding:
      26px
      58px
      26px
      0;
  }

  .rj-hero__kicker {
    margin-bottom: 15px;

    font-size: 0.74rem;
  }

  .rj-hero__title {
    margin-bottom: 18px;

    font-size:
      clamp(
        2.8rem,
        5.8vw,
        4.6rem
      );
  }

  .rj-hero__description {
    margin-bottom: 22px;

    font-size: 0.98rem;

    line-height: 1.55;
  }

  .rj-hero__trust {
    margin-bottom: 22px;
  }

  .rj-hero__trust-item {
    gap: 9px;

    padding-inline: 12px;
  }

  .rj-hero__trust-icon {
    flex-basis: 33px;

    width: 33px;
    height: 33px;
  }

  .rj-hero__trust-icon svg {
    width: 29px;
    height: 29px;
  }

  .rj-hero__trust-copy strong {
    font-size: 0.81rem;
  }

  .rj-hero__trust-copy small {
    font-size: 0.76rem;
  }

  .rj-hero__actions .rj-btn {
    min-height: 50px;

    padding-inline: 17px;

    font-size: 0.8rem;
  }

  .rj-hero__visual {
    clip-path:
      polygon(
        10% 0,
        100% 0,
        100% 100%,
        0 100%
      );
  }

  .rj-hero__divider {
    left: 57%;

    width: 34px;
  }

  .rj-hero__photo-tagline {
    right: 24px;
  }

}


/* =========================================================
   14. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-hero {
    display: block;

    height:
      var(--rj-first-screen-height);

    min-height: 620px;

    color:
      var(--rj-white-pure);

    background:
      var(--rj-navy-deep);
  }


  /*
    Photo becomes full hero background.
  */

  .rj-hero__visual {
    position: absolute;

    inset: 0;

    z-index: 0;

    height: 100%;

    clip-path: none;
  }

  .rj-hero__photo {
    inset: 0;
  }

  .rj-hero__photo img {
    width: 100%;
    height: 100%;

    object-position:
      58% center;

    transform:
      scale(1.02);
  }

  .rj-hero__photo-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(6, 27, 56, 0.2) 0%,
        rgba(6, 27, 56, 0.34) 27%,
        rgba(6, 27, 56, 0.91) 80%,
        var(--rj-navy-deep) 100%
      );
  }


  /* CONTENT */

  .rj-hero__content {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: flex-end;

    width: 100%;
    height: 100%;

    background: transparent;
  }

  .rj-hero__content::before {
    display: none;
  }

  .rj-hero__content-inner {
    width: 100%;

    margin: 0;

    padding:
      38px
      var(--rj-gutter)
      34px;
  }


  /* TYPOGRAPHY */

  .rj-hero__kicker {
    margin-bottom: 13px;

    font-size: 0.72rem;

    color:
      rgba(255, 255, 255, 0.76);
  }

  .rj-hero__kicker i {
    background:
      rgba(255, 255, 255, 0.65);
  }

  .rj-hero__title {
    max-width: 560px;

    margin-bottom: 15px;

    font-size:
      clamp(
        2.65rem,
        9vw,
        4rem
      );

    line-height: 0.95;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__title span {
    color:
      var(--rj-white-pure);
  }

  .rj-hero__description {
    max-width: 570px;

    margin-bottom: 20px;

    font-size: 0.98rem;

    line-height: 1.55;

    color:
      rgba(255, 255, 255, 0.82);
  }


  /* TRUST */

  .rj-hero__trust {
    max-width: 560px;

    margin-bottom: 21px;
  }

  .rj-hero__trust-item {
    gap: 8px;

    padding-inline: 12px;
  }

  .rj-hero__trust-item:first-child {
    padding-left: 0;
  }

  .rj-hero__trust-item:not(:last-child)::after {
    background:
      rgba(255, 255, 255, 0.22);
  }

  .rj-hero__trust-icon {
    flex-basis: 31px;

    width: 31px;
    height: 31px;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .rj-hero__trust-copy strong {
    font-size: 0.78rem;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__trust-copy small {
    font-size: 0.71rem;

    color:
      rgba(255, 255, 255, 0.7);
  }


  /* BUTTONS */

  .rj-hero__actions {
    flex-wrap: nowrap;

    max-width: 540px;
  }

  .rj-hero__actions .rj-btn {
    width: auto;

    min-height: 48px;

    padding-inline: 17px;
  }

  .rj-hero__primary {
    background:
      var(--rj-white-pure);

    color:
      var(--rj-navy-deep);

    box-shadow:
      0 14px 32px
      rgba(0, 0, 0, 0.14);
  }

  .rj-hero__phone {
    color:
      var(--rj-white-pure);

    border-color:
      rgba(255, 255, 255, 0.42);

    background:
      rgba(6, 27, 56, 0.28);
  }


  /* HIDE DESKTOP DETAILS */

  .rj-hero__divider {
    display: none;
  }

  .rj-hero__photo-tagline {
    top: 31px;
    right: 24px;

    color:
      rgba(255, 255, 255, 0.88);

    text-shadow:
      0 4px 22px
      rgba(6, 27, 56, 0.35);
  }

  .rj-hero__photo-tagline span {
    font-size: 1.35rem;
  }

  .rj-hero__photo-tagline i {
    background:
      rgba(255, 255, 255, 0.8);
  }

}


/* =========================================================
   15. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-hero {
    display: block;

    height:
      var(--rj-first-screen-height);

    min-height: 590px;

    background:
      var(--rj-navy-deep);
  }


  /* PHOTO */

  .rj-hero__visual {
    position: absolute;

    inset: 0;

    z-index: 0;

    height: 100%;

    clip-path: none;
  }

  .rj-hero__photo {
    inset: 0;
  }

  .rj-hero__photo img {
    width: 100%;
    height: 100%;

    object-position:
      61% center;

    transform:
      scale(1.025);
  }

  .rj-hero__photo-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(6, 27, 56, 0.17) 0%,
        rgba(6, 27, 56, 0.34) 27%,
        rgba(6, 27, 56, 0.91) 69%,
        var(--rj-navy-deep) 100%
      );
  }


  /* CONTENT */

  .rj-hero__content {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: flex-end;

    width: 100%;
    height: 100%;

    background: transparent;
  }

  .rj-hero__content::before {
    display: none;
  }

  .rj-hero__content-inner {
    width: 100%;

    margin: 0;

    padding:
      32px
      var(--rj-gutter)
      25px;
  }


  /* KICKER */

  .rj-hero__kicker {
    gap: 8px;

    margin-bottom: 10px;

    font-size: 0.64rem;

    letter-spacing: 0.15em;

    color:
      rgba(255, 255, 255, 0.76);
  }

  .rj-hero__kicker i {
    width: 3px;
    height: 3px;

    background:
      rgba(255, 255, 255, 0.7);
  }


  /* TITLE */

  .rj-hero__title {
    margin-bottom: 12px;

    font-size:
      clamp(
        2.3rem,
        10.5vw,
        3.25rem
      );

    line-height: 0.94;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__title span {
    color:
      var(--rj-white-pure);
  }


  /* DESCRIPTION */

  .rj-hero__description {
    margin-bottom: 16px;

    font-size: 0.9rem;

    line-height: 1.5;

    color:
      rgba(255, 255, 255, 0.81);
  }


  /* TRUST */

  .rj-hero__trust {
    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );

    margin-bottom: 17px;
  }

  .rj-hero__trust-item {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;

    padding:
      0
      8px;
  }

  .rj-hero__trust-item:first-child {
    padding-left: 0;
  }

  .rj-hero__trust-item:not(:last-child)::after {
    top: 0;

    height: 100%;

    background:
      rgba(255, 255, 255, 0.18);
  }

  .rj-hero__trust-icon {
    width: 26px;
    height: 26px;

    flex-basis: 26px;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__trust-icon svg {
    width: 25px;
    height: 25px;
  }

  .rj-hero__trust-copy {
    gap: 1px;
  }

  .rj-hero__trust-copy strong {
    font-size: 0.7rem;

    color:
      var(--rj-white-pure);
  }

  .rj-hero__trust-copy small {
    font-size: 0.64rem;

    color:
      rgba(255, 255, 255, 0.68);
  }


  /* ACTIONS */

  .rj-hero__actions {
    display: grid;

    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(0, 0.85fr);

    gap: 9px;
  }

  .rj-hero__actions .rj-btn {
    width: 100%;

    min-height: 46px;

    padding:
      11px
      11px;

    font-size: 0.7rem;

    border-radius: 9px;
  }

  .rj-hero__primary {
    color:
      var(--rj-navy-deep);

    background:
      var(--rj-white-pure);
  }

  .rj-hero__phone {
    color:
      var(--rj-white-pure);

    border-color:
      rgba(255, 255, 255, 0.4);

    background:
      rgba(6, 27, 56, 0.25);
  }

  .rj-hero__phone svg {
    width: 15px;
    height: 15px;
  }


  /* PHOTO TAGLINE */

  .rj-hero__photo-tagline {
    top: 25px;
    right: 19px;

    color:
      rgba(255, 255, 255, 0.9);
  }

  .rj-hero__photo-tagline span {
    font-size: 1.04rem;
  }

  .rj-hero__photo-tagline i {
    margin-top: 6px;

    background:
      rgba(255, 255, 255, 0.8);
  }


  /* DESKTOP DECORATION */

  .rj-hero__divider,
  .rj-hero__photo-line {
    display: none;
  }

}

































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   04. SERVICES
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-services {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--rj-white) 0%,
      #F7F8F8 100%
    );
}


/* SUBTLE MINERAL TEXTURE */

.rj-services::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.15;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.73' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.065'/%3E%3C/svg%3E"
    );

  mix-blend-mode: multiply;
}


.rj-services > .rj-container {
  position: relative;

  z-index: 2;
}


/* =========================================================
   02. SECTION HEADER
   ========================================================= */

.rj-services__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      50px,
      7vw,
      110px
    );

  margin-bottom:
    clamp(
      38px,
      5vw,
      62px
    );
}


.rj-services__heading {
  max-width: 780px;
}


.rj-services__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      2.8rem,
      4.4vw,
      4.8rem
    );

  font-weight: 400;

  line-height: 0.99;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-services__title span {
  display: block;

  color:
    #586575;
}


/* =========================================================
   03. INTRO
   ========================================================= */

.rj-services__intro {
  max-width: 510px;

  justify-self: end;
}


.rj-services__intro p {
  margin:
    0
    0
    21px;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* GALLERY LINK */

.rj-services__gallery-link {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  width: fit-content;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    rgba(7, 47, 107, 0.27);

  font-size: 0.92rem;
  font-weight: 700;

  color:
    var(--rj-navy);

  transition:
    border-color
    var(--rj-normal)
    var(--rj-ease),
    color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-services__gallery-link svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-services__gallery-link:hover {
  border-color:
    var(--rj-navy);

  color:
    var(--rj-blue);
}


.rj-services__gallery-link:hover svg {
  transform:
    translateX(4px);
}


/* =========================================================
   04. GRID
   ========================================================= */

.rj-services__grid {
  display: grid;

  grid-template-columns:
    repeat(
      12,
      minmax(0, 1fr)
    );

  gap: 18px;
}


/*
   First row:
   4 cards
*/

.rj-service-card:nth-child(-n + 4) {
  grid-column:
    span 3;
}


/*
   Second row:
   3 cards
*/

.rj-service-card:nth-child(n + 5) {
  grid-column:
    span 4;
}


/* =========================================================
   05. CARD
   ========================================================= */

.rj-service-card {
  --rj-card-x: 0px;
  --rj-card-y: 0px;

  position: relative;

  display: block;

  min-width: 0;

  height:
    clamp(
      350px,
      29vw,
      430px
    );

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius:
    var(--rj-radius-lg);

  color:
    var(--rj-white-pure);

  background:
    var(--rj-navy-deep);

  box-shadow:
    0 18px 48px
    rgba(6, 27, 56, 0.1);

  isolation: isolate;

  transform:
    translateZ(0);

  transition:
    transform
    580ms
    var(--rj-ease),
    box-shadow
    580ms
    var(--rj-ease);
}


/* =========================================================
   06. IMAGE
   ========================================================= */

.rj-service-card__media {
  position: absolute;

  inset: -8px;

  z-index: 0;

  overflow: hidden;
}


.rj-service-card__media img {
  width: calc(100% + 16px);
  height: calc(100% + 16px);

  object-fit: cover;

  object-position: center;

  transform:
    translate3d(
      var(--rj-card-x),
      var(--rj-card-y),
      0
    )
    scale(1.035);

  transition:
    transform
    850ms
    var(--rj-ease);

  will-change:
    transform;
}


/* =========================================================
   07. IMAGE OVERLAY
   ========================================================= */

.rj-service-card__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(6, 27, 56, 0.035) 0%,
      rgba(6, 27, 56, 0.08) 32%,
      rgba(6, 27, 56, 0.7) 76%,
      rgba(6, 27, 56, 0.91) 100%
    );

  transition:
    background
    600ms
    var(--rj-ease);
}


/*
   Subtle navy tint.
*/

.rj-service-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  opacity: 0;

  background:
    linear-gradient(
      145deg,
      rgba(7, 47, 107, 0.18),
      transparent 55%
    );

  transition:
    opacity
    520ms
    var(--rj-ease);
}


/* =========================================================
   08. CARD CONTENT
   ========================================================= */

.rj-service-card__content {
  position: absolute;

  z-index: 3;

  right: 0;
  bottom: 0;
  left: 0;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 18px;

  padding:
    27px
    25px;
}


/* EYEBROW */

.rj-service-card__eyebrow {
  display: block;

  margin-bottom: 7px;

  font-size: 0.75rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color:
    rgba(255, 255, 255, 0.68);
}


/* TITLE */

.rj-service-card h3 {
  max-width: 300px;

  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      1.55rem,
      1.8vw,
      2rem
    );

  font-weight: 400;

  line-height: 1.03;

  letter-spacing: -0.02em;

  color:
    var(--rj-white-pure);
}


/* =========================================================
   09. VIEW PROJECTS
   ========================================================= */

.rj-service-card__action {
  display: flex;

  align-items: center;

  flex:
    0
    0
    auto;

  gap: 8px;

  padding-bottom: 2px;

  font-size: 0.78rem;
  font-weight: 700;

  white-space: nowrap;

  color:
    rgba(255, 255, 255, 0.86);

  opacity: 0.82;

  transition:
    opacity
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-card__action svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


/* =========================================================
   10. HOVER / FOCUS
   ========================================================= */

.rj-service-card:hover,
.rj-service-card:focus-visible {
  transform:
    translateY(-5px);

  box-shadow:
    0 26px 65px
    rgba(6, 27, 56, 0.17);
}


.rj-service-card:hover::after,
.rj-service-card:focus-visible::after {
  opacity: 1;
}


.rj-service-card:hover
.rj-service-card__overlay,
.rj-service-card:focus-visible
.rj-service-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(6, 27, 56, 0.015) 0%,
      rgba(6, 27, 56, 0.05) 30%,
      rgba(6, 27, 56, 0.62) 72%,
      rgba(6, 27, 56, 0.94) 100%
    );
}


.rj-service-card:hover
.rj-service-card__action,
.rj-service-card:focus-visible
.rj-service-card__action {
  opacity: 1;

  transform:
    translateX(-2px);
}


.rj-service-card:hover
.rj-service-card__action svg,
.rj-service-card:focus-visible
.rj-service-card__action svg {
  transform:
    translateX(4px);
}


/* =========================================================
   11. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-services {
    padding-top:
      clamp(
        105px,
        9vw,
        145px
      );
  }


  .rj-services__grid {
    gap: 18px;
  }


  .rj-service-card:nth-child(-n + 4) {
    min-height: 390px;
  }


  .rj-service-card:nth-child(n + 5) {
    min-height: 420px;
  }

}


/* =========================================================
   12. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-services__header {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.7fr);

    gap: 45px;

    margin-bottom: 40px;
  }


  .rj-services__title {
    font-size:
      clamp(
        2.55rem,
        5vw,
        3.9rem
      );
  }


  .rj-services__intro p {
    font-size: 0.98rem;
  }


  .rj-services__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 16px;
  }


  .rj-service-card:nth-child(n) {
    grid-column:
      span 1;

    height: 350px;
  }


  /*
    Last card centered/full-width,
    avoids an isolated half-empty row.
  */

  .rj-service-card:last-child {
    grid-column:
      1 / -1;

    height: 330px;
  }


  .rj-service-card__content {
    padding:
      24px
      22px;
  }


  .rj-service-card h3 {
    font-size:
      clamp(
        1.55rem,
        2.5vw,
        1.9rem
      );
  }

}


/* =========================================================
   13. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-services__header {
    display: block;

    margin-bottom: 34px;
  }


  .rj-services__heading {
    margin-bottom: 24px;
  }


  .rj-services__title {
    font-size:
      clamp(
        2.45rem,
        8vw,
        3.45rem
      );
  }


  .rj-services__intro {
    max-width: 560px;

    justify-self: initial;
  }


  .rj-services__intro p {
    font-size: 1rem;

    line-height: 1.67;
  }


  .rj-services__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 14px;
  }


  .rj-service-card:nth-child(n) {
    grid-column:
      span 1;

    height: 300px;

    border-radius: 18px;
  }


  .rj-service-card:last-child {
    grid-column:
      1 / -1;

    height: 280px;
  }


  .rj-service-card__content {
    display: block;

    padding:
      21px
      19px;
  }


  .rj-service-card__eyebrow {
    margin-bottom: 6px;

    font-size: 0.67rem;
  }


  .rj-service-card h3 {
    max-width: 100%;

    font-size:
      clamp(
        1.4rem,
        4vw,
        1.7rem
      );
  }


  .rj-service-card__action {
    margin-top: 10px;

    font-size: 0.71rem;
  }

}


/* =========================================================
   14. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-services__header {
    display: block;

    margin-bottom: 30px;
  }


  .rj-services__heading {
    margin-bottom: 21px;
  }


  .rj-services__title {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-services__intro p {
    margin-bottom: 17px;

    font-size: 0.96rem;

    line-height: 1.66;
  }


  .rj-services__gallery-link {
    font-size: 0.88rem;
  }


  .rj-services__grid {
    display: grid;

    grid-template-columns:
      1fr;

    gap: 13px;
  }


  .rj-service-card:nth-child(n),
  .rj-service-card:last-child {
    grid-column:
      auto;

    height: 260px;

    border-radius: 17px;
  }


  .rj-service-card__content {
    display: block;

    padding:
      20px
      18px;
  }


  .rj-service-card__eyebrow {
    margin-bottom: 5px;

    font-size: 0.65rem;
  }


  .rj-service-card h3 {
    max-width: 290px;

    font-size: 1.5rem;

    line-height: 1.04;
  }


  .rj-service-card__action {
    margin-top: 10px;

    font-size: 0.7rem;
  }


  .rj-service-card__action svg {
    width: 16px;
    height: 16px;
  }

}













































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   05. WHY CHOOSE US
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-why {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #F3F4F5 0%,
      #F7F8F8 48%,
      var(--rj-white) 100%
    );
}


/* subtle architectural detail */

.rj-why::after {
  content: "";

  position: absolute;

  top: 0;
  right: 8%;

  width: 1px;
  height: 105px;

  opacity: 0.45;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  pointer-events: none;
}


/* =========================================================
   02. LAYOUT
   ========================================================= */

.rj-why__layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  align-items: center;

  gap:
    clamp(
      65px,
      8vw,
      125px
    );
}


/* =========================================================
   03. VISUAL
   ========================================================= */

.rj-why__visual {
  position: relative;

  min-width: 0;

  border-radius:
    var(--rj-radius-xl);
}


.rj-why__image {
  --rj-why-x: 0px;
  --rj-why-y: 0px;

  position: relative;

  height:
    clamp(
      570px,
      50vw,
      720px
    );

  overflow: hidden;

  border-radius:
    var(--rj-radius-xl);

  background:
    var(--rj-gray);

  box-shadow:
    var(--rj-shadow-lg);

  isolation: isolate;
}


.rj-why__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform:
    translate3d(
      var(--rj-why-x),
      var(--rj-why-y),
      0
    )
    scale(1.04);

  transition:
    transform
    900ms
    var(--rj-ease);

  will-change:
    transform;
}


/* =========================================================
   04. IMAGE SHADE
   ========================================================= */

.rj-why__image-shade {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(6, 27, 56, 0.02) 0%,
      transparent 42%,
      rgba(6, 27, 56, 0.16) 72%,
      rgba(6, 27, 56, 0.63) 100%
    );
}


/* =========================================================
   05. EXPERIENCE PANEL
   ========================================================= */

.rj-why__experience {
  position: absolute;

  z-index: 4;

  right: 25px;
  bottom: 25px;
  left: 25px;

  display: flex;

  align-items: center;

  gap: 17px;

  padding:
    19px
    21px;

  border:
    1px solid
    rgba(255, 255, 255, 0.22);

  border-radius:
    var(--rj-radius-md);

  color:
    var(--rj-white-pure);

  background:
    rgba(6, 27, 56, 0.72);

  backdrop-filter:
    blur(14px);

  -webkit-backdrop-filter:
    blur(14px);

  box-shadow:
    0 14px 35px
    rgba(6, 27, 56, 0.18);
}


.rj-why__experience-mark {
  display: grid;

  place-items: center;

  flex:
    0
    0
    50px;

  width: 50px;
  height: 50px;

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  font-family:
    var(--rj-font-display);

  font-size: 1.25rem;

  line-height: 1;

  color:
    var(--rj-white-pure);
}


.rj-why__experience div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.rj-why__experience strong {
  font-size: 0.95rem;
  font-weight: 700;

  line-height: 1.3;
}


.rj-why__experience div span {
  font-size: 0.83rem;

  line-height: 1.4;

  color:
    rgba(255, 255, 255, 0.7);
}


/* =========================================================
   06. BRAND SWOOSH
   ========================================================= */

.rj-why__swoosh {
  position: absolute;

  z-index: 3;

  top: 38px;
  right: -55px;

  width: 245px;

  opacity: 0.72;

  pointer-events: none;

  transform:
    rotate(-7deg);
}


.rj-why__swoosh path {
  fill: none;

  stroke:
    rgba(255, 255, 255, 0.74);

  stroke-width: 2;

  stroke-linecap: round;

  stroke-dasharray: 340;
  stroke-dashoffset: 340;

  transition:
    stroke-dashoffset
    1400ms
    var(--rj-ease);
}


.rj-why__visual.is-visible
.rj-why__swoosh path {
  stroke-dashoffset: 0;
}


/* =========================================================
   07. CONTENT
   ========================================================= */

.rj-why__content {
  max-width: 690px;
}


.rj-why__heading {
  max-width: 650px;

  margin-bottom:
    clamp(
      38px,
      4vw,
      50px
    );
}


.rj-why__title {
  margin:
    0
    0
    22px;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      2.9rem,
      4.6vw,
      4.9rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-why__title span {
  display: block;

  color:
    #596675;
}


.rj-why__lead {
  max-width: 610px;

  margin: 0;

  font-size: 1.05rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   08. REASONS
   ========================================================= */

.rj-why__reasons {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  border-top:
    1px solid
    var(--rj-border);

  margin-bottom: 38px;
}


.rj-why__reason {
  position: relative;

  display: grid;

  grid-template-columns:
    45px
    minmax(0, 1fr);

  gap: 16px;

  min-width: 0;

  padding:
    27px
    24px
    27px
    0;

  border-bottom:
    1px solid
    var(--rj-border);
}


.rj-why__reason:nth-child(even) {
  padding-left: 25px;

  border-left:
    1px solid
    var(--rj-border);
}


/* =========================================================
   09. REASON ICON
   ========================================================= */

.rj-why__reason-icon {
  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border:
    1px solid
    rgba(7, 47, 107, 0.13);

  border-radius: 50%;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.52);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-why__reason-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   10. REASON TYPOGRAPHY
   ========================================================= */

.rj-why__reason h3 {
  margin:
    0
    0
    7px;

  font-size: 1.03rem;
  font-weight: 700;

  line-height: 1.35;

  color:
    var(--rj-navy-deep);
}


.rj-why__reason p {
  margin: 0;

  font-size: 0.92rem;

  line-height: 1.62;

  color:
    var(--rj-text-soft);
}


/* subtle hover, not card-like */

.rj-why__reason:hover
.rj-why__reason-icon {
  color:
    var(--rj-white-pure);

  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);

  transform:
    translateY(-2px);
}


/* =========================================================
   11. ACTIONS
   ========================================================= */

.rj-why__actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 23px;
}


.rj-why__actions
.rj-btn {
  min-height: 55px;
}


.rj-why__actions
.rj-btn svg,
.rj-why__work-link svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-why__actions
.rj-btn:hover svg,
.rj-why__work-link:hover svg {
  transform:
    translateX(4px);
}


/* SECONDARY LINK */

.rj-why__work-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    rgba(7, 47, 107, 0.27);

  font-size: 0.93rem;
  font-weight: 700;

  color:
    var(--rj-navy);
}


/* =========================================================
   12. DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .rj-why__image {
    min-height: 620px;
  }

}


/* =========================================================
   13. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-why__layout {
    grid-template-columns:
      minmax(0, 0.86fr)
      minmax(0, 1.14fr);

    gap: 50px;
  }


  .rj-why__image {
    height: 580px;
  }


  .rj-why__experience {
    right: 18px;
    bottom: 18px;
    left: 18px;

    padding:
      17px
      17px;
  }


  .rj-why__experience-mark {
    flex-basis: 44px;

    width: 44px;
    height: 44px;

    font-size: 1.1rem;
  }


  .rj-why__title {
    font-size:
      clamp(
        2.6rem,
        5vw,
        4rem
      );
  }


  .rj-why__lead {
    font-size: 1rem;
  }


  .rj-why__reason {
    grid-template-columns:
      39px
      minmax(0, 1fr);

    gap: 13px;

    padding:
      23px
      17px
      23px
      0;
  }


  .rj-why__reason:nth-child(even) {
    padding-left: 18px;
  }


  .rj-why__reason-icon {
    width: 38px;
    height: 38px;
  }


  .rj-why__reason-icon svg {
    width: 21px;
    height: 21px;
  }


  .rj-why__reason h3 {
    font-size: 0.95rem;
  }


  .rj-why__reason p {
    font-size: 0.87rem;
  }

}


/* =========================================================
   14. MOBILE
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-why__layout {
    grid-template-columns: 1fr;

    gap: 48px;
  }


  .rj-why__visual {
    order: 2;
  }


  .rj-why__content {
    order: 1;

    max-width: none;
  }


  .rj-why__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-why__lead {
    font-size: 1rem;
  }


  .rj-why__reasons {
    margin-bottom: 32px;
  }


  .rj-why__reason {
    padding:
      24px
      17px
      24px
      0;
  }


  .rj-why__reason:nth-child(even) {
    padding-left: 18px;
  }


  .rj-why__image {
    height: 500px;

    border-radius: 21px;
  }


  .rj-why__experience {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

}


/* =========================================================
   15. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .rj-why__layout {
    display: flex;

    flex-direction: column;

    gap: 39px;
  }


  .rj-why__content {
    order: 1;
  }


  .rj-why__visual {
    order: 2;

    width: 100%;
  }


  .rj-why__heading {
    margin-bottom: 29px;
  }


  .rj-why__title {
    margin-bottom: 18px;

    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-why__lead {
    font-size: 0.98rem;

    line-height: 1.67;
  }


  /* REASONS */

  .rj-why__reasons {
    grid-template-columns: 1fr;

    margin-bottom: 29px;
  }


  .rj-why__reason {
    grid-template-columns:
      42px
      minmax(0, 1fr);

    gap: 14px;

    padding:
      21px
      0;
  }


  .rj-why__reason:nth-child(even) {
    padding-left: 0;

    border-left: 0;
  }


  .rj-why__reason-icon {
    width: 40px;
    height: 40px;
  }


  .rj-why__reason h3 {
    font-size: 0.98rem;
  }


  .rj-why__reason p {
    font-size: 0.9rem;
  }


  /* ACTIONS */

  .rj-why__actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 17px;
  }


  .rj-why__actions
  .rj-btn {
    width: 100%;
  }


  .rj-why__work-link {
    width: fit-content;
  }


  /* IMAGE */

  .rj-why__image {
    height: 430px;

    border-radius: 18px;
  }


  .rj-why__experience {
    right: 14px;
    bottom: 14px;
    left: 14px;

    gap: 12px;

    padding:
      15px
      15px;

    border-radius: 13px;
  }


  .rj-why__experience-mark {
    flex-basis: 42px;

    width: 42px;
    height: 42px;

    font-size: 1.05rem;
  }


  .rj-why__experience strong {
    font-size: 0.85rem;
  }


  .rj-why__experience div span {
    font-size: 0.76rem;
  }


  .rj-why__swoosh {
    top: 25px;
    right: -62px;

    width: 210px;
  }

}













































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   06. REVIEWS
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-reviews {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(36, 91, 155, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 85%,
      rgba(162, 163, 167, 0.08),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #FBFBFA 0%,
      #F6F7F8 48%,
      #F1F3F5 100%
    );
}


/* MINERAL TEXTURE */

.rj-reviews::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.15;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='210' viewBox='0 0 210 210'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"
    );

  mix-blend-mode: multiply;
}


.rj-reviews > .rj-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   02. DECORATIVE SYSTEM
   ========================================================= */

.rj-reviews__decor {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}


/* ORBS */

.rj-reviews__orb {
  position: absolute;

  border-radius: 50%;

  filter:
    blur(1px);
}


.rj-reviews__orb--one {
  top: 9%;
  right: -110px;

  width: 300px;
  height: 300px;

  border:
    1px solid
    rgba(7, 47, 107, 0.09);

  background:
    rgba(36, 91, 155, 0.025);
}


.rj-reviews__orb--two {
  bottom: -150px;
  left: -100px;

  width: 360px;
  height: 360px;

  border:
    1px solid
    rgba(86, 113, 141, 0.08);

  background:
    rgba(255, 255, 255, 0.22);
}


/* VERTICAL ARCHITECTURAL LINE */

.rj-reviews__line {
  position: absolute;

  top: 0;
  left: 10%;

  width: 1px;
  height: 135px;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  opacity: 0.38;
}


/* LARGE QUOTE */

.rj-reviews__quote {
  --rj-reviews-quote-y: 0px;

  position: absolute;

  top: 50px;
  right: 9%;

  font-family:
    var(--rj-font-display);

  font-size: 15rem;

  line-height: 0.7;

  color:
    rgba(7, 47, 107, 0.045);

  transform:
    translate3d(
      0,
      var(--rj-reviews-quote-y),
      0
    );

  user-select: none;
}


/* SWOOSH */

.rj-reviews__swoosh {
  position: absolute;

  top: 185px;
  left: -85px;

  width: 520px;

  opacity: 0.27;

  transform:
    rotate(-5deg);
}


.rj-reviews__swoosh path {
  fill: none;

  stroke:
    var(--rj-navy);

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-dasharray: 650;
  stroke-dashoffset: 650;

  transition:
    stroke-dashoffset
    1500ms
    var(--rj-ease);
}


.rj-reviews.is-visible
.rj-reviews__swoosh path {
  stroke-dashoffset: 0;
}


/* =========================================================
   03. INTRO
   ========================================================= */

.rj-reviews__intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      55px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      45px,
      6vw,
      70px
    );
}


.rj-reviews__heading {
  max-width: 800px;
}


.rj-reviews__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.8vw,
      5rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-reviews__title span {
  display: block;

  color:
    #596675;
}


/* =========================================================
   04. INTRO COPY
   ========================================================= */

.rj-reviews__intro-copy {
  max-width: 500px;

  justify-self: end;
}


.rj-reviews__intro-copy > p {
  margin:
    0
    0
    24px;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* BRAND NOTE */

.rj-reviews__brand-note {
  display: flex;

  align-items: center;

  gap: 13px;

  padding-top: 18px;

  border-top:
    1px solid
    var(--rj-border);
}


.rj-reviews__brand-mark {
  display: grid;

  place-items: center;

  flex:
    0
    0
    40px;

  width: 40px;
  height: 40px;

  border:
    1px solid
    rgba(7, 47, 107, 0.18);

  border-radius: 50%;

  font-family:
    var(--rj-font-display);

  font-size: 1rem;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.48);
}


.rj-reviews__brand-note > span:last-child {
  font-size: 0.85rem;
  font-weight: 600;

  line-height: 1.45;

  color:
    var(--rj-steel-blue);
}


/* =========================================================
   05. WIDGET COMPOSITION
   ========================================================= */

.rj-reviews__composition {
  position: relative;

  margin-bottom: 46px;

  padding:
    24px
    24px
    0
    0;
}


/* =========================================================
   06. BACKPLATE
   ========================================================= */

.rj-reviews__backplate {
  position: absolute;

  top: 0;
  right: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  width: 42%;
  height: 46%;

  padding:
    25px
    27px;

  border-radius:
    var(--rj-radius-lg);

  color:
    rgba(255, 255, 255, 0.72);

  background:
    linear-gradient(
      145deg,
      var(--rj-navy-deep),
      var(--rj-navy)
    );

  box-shadow:
    var(--rj-shadow-md);
}


.rj-reviews__backplate span:first-child {
  font-family:
    var(--rj-font-display);

  font-size: 1.45rem;

  color:
    var(--rj-white-pure);
}


.rj-reviews__backplate span:last-child {
  font-size: 0.8rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================================
   07. WIDGET SHELL
   ========================================================= */

.rj-reviews__widget-shell {
  position: relative;

  z-index: 2;

  width:
    calc(
      100% - 24px
    );

  overflow: visible;

  border:
    1px solid
    rgba(7, 47, 107, 0.1);

  border-radius:
    var(--rj-radius-xl);

  background:
    rgba(255, 255, 255, 0.91);

  box-shadow:
    0 26px 75px
    rgba(6, 27, 56, 0.11);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);
}


/* =========================================================
   08. WIDGET TOP
   ========================================================= */

.rj-reviews__widget-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding:
    24px
    29px;

  border-bottom:
    1px solid
    var(--rj-border);
}


.rj-reviews__widget-label {
  display: block;

  margin-bottom: 4px;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color:
    var(--rj-navy);
}


.rj-reviews__widget-top p {
  margin: 0;

  font-size: 0.88rem;

  color:
    var(--rj-text-soft);
}


.rj-reviews__widget-symbol {
  font-family:
    var(--rj-font-display);

  font-size: 4.5rem;

  line-height: 0.65;

  color:
    rgba(7, 47, 107, 0.14);
}


/* =========================================================
   09. ELFSIGHT SLOT
   ========================================================= */

.rj-reviews__widget-slot {
  position: relative;

  width: 100%;

  padding:
    clamp(
      25px,
      3vw,
      40px
    );

  overflow: visible;
}


/*
   Importante:
   no aplicamos estilos a iframe,
   .elfsight-app, widgets internos, etc.
*/


/* =========================================================
   10. STATIC PLACEHOLDER
   ========================================================= */

.rj-reviews__placeholder {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 7px;

  min-height: 360px;

  padding: 35px;

  border:
    1px dashed
    rgba(7, 47, 107, 0.18);

  border-radius:
    var(--rj-radius-lg);

  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(243, 244, 245, 0.82),
      rgba(251, 251, 250, 0.9)
    );
}


/*
   TOTALMENTE ESTÁTICO.
   Sin spinner.
   Sin shimmer.
   Sin skeleton.
*/

.rj-reviews__placeholder span {
  font-size: 1rem;
  font-weight: 700;

  color:
    var(--rj-navy);
}


.rj-reviews__placeholder small {
  font-size: 0.88rem;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   11. FOOTER CTA
   ========================================================= */

.rj-reviews__footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding:
    27px
    0
    0;

  border-top:
    1px solid
    var(--rj-border);
}


.rj-reviews__footer > div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.rj-reviews__footer > div span {
  font-size: 0.82rem;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-reviews__footer strong {
  font-family:
    var(--rj-font-display);

  font-size: 1.55rem;
  font-weight: 400;

  color:
    var(--rj-navy-deep);
}


/* CTA */

.rj-reviews__cta {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    rgba(7, 47, 107, 0.25);

  font-size: 0.93rem;
  font-weight: 700;

  color:
    var(--rj-navy);
}


.rj-reviews__cta svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-reviews__cta:hover svg {
  transform:
    translateX(4px);
}


/* =========================================================
   12. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-reviews__composition {
    padding:
      28px
      28px
      0
      0;
  }


  .rj-reviews__placeholder {
    min-height: 390px;
  }

}


/* =========================================================
   13. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-reviews__intro {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);

    gap: 50px;
  }


  .rj-reviews__title {
    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-reviews__intro-copy > p {
    font-size: 1rem;
  }


  .rj-reviews__composition {
    padding:
      20px
      20px
      0
      0;
  }


  .rj-reviews__backplate {
    width: 46%;
  }


  .rj-reviews__widget-shell {
    width:
      calc(
        100% - 20px
      );
  }


  .rj-reviews__placeholder {
    min-height: 340px;
  }


  .rj-reviews__quote {
    right: 5%;

    font-size: 12rem;
  }

}


/* =========================================================
   14. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-reviews__intro {
    display: block;

    margin-bottom: 38px;
  }


  .rj-reviews__heading {
    margin-bottom: 25px;
  }


  .rj-reviews__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-reviews__intro-copy {
    max-width: 560px;

    justify-self: initial;
  }


  .rj-reviews__composition {
    padding:
      15px
      15px
      0
      0;
  }


  .rj-reviews__backplate {
    width: 58%;
    height: 38%;

    padding:
      18px
      20px;
  }


  .rj-reviews__widget-shell {
    width:
      calc(
        100% - 15px
      );

    border-radius: 21px;
  }


  .rj-reviews__widget-top {
    padding:
      21px
      22px;
  }


  .rj-reviews__widget-slot {
    padding: 22px;
  }


  .rj-reviews__placeholder {
    min-height: 320px;

    border-radius: 17px;
  }


  .rj-reviews__footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }


  .rj-reviews__quote {
    top: 70px;
    right: -25px;

    font-size: 10rem;
  }


  .rj-reviews__swoosh {
    left: -190px;

    width: 450px;
  }

}


/* =========================================================
   15. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-reviews__intro {
    display: block;

    margin-bottom: 31px;
  }


  .rj-reviews__heading {
    margin-bottom: 22px;
  }


  .rj-reviews__title {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-reviews__intro-copy > p {
    margin-bottom: 20px;

    font-size: 0.97rem;

    line-height: 1.67;
  }


  .rj-reviews__brand-note {
    gap: 11px;
  }


  .rj-reviews__brand-mark {
    flex-basis: 36px;

    width: 36px;
    height: 36px;
  }


  .rj-reviews__brand-note > span:last-child {
    font-size: 0.79rem;
  }


  /* WIDGET */

  .rj-reviews__composition {
    margin-bottom: 35px;

    padding:
      10px
      10px
      0
      0;
  }


  .rj-reviews__backplate {
    width: 70%;
    height: 32%;

    padding:
      15px
      17px;

    border-radius: 16px;
  }


  .rj-reviews__backplate span:first-child {
    font-size: 1.15rem;
  }


  .rj-reviews__backplate span:last-child {
    font-size: 0.65rem;
  }


  .rj-reviews__widget-shell {
    width:
      calc(
        100% - 10px
      );

    border-radius: 18px;
  }


  .rj-reviews__widget-top {
    padding:
      18px
      17px;
  }


  .rj-reviews__widget-label {
    font-size: 0.73rem;
  }


  .rj-reviews__widget-top p {
    font-size: 0.78rem;
  }


  .rj-reviews__widget-symbol {
    font-size: 3.5rem;
  }


  .rj-reviews__widget-slot {
    padding: 15px;
  }


  .rj-reviews__placeholder {
    min-height: 280px;

    padding: 25px 18px;

    border-radius: 14px;
  }


  .rj-reviews__placeholder span {
    font-size: 0.92rem;
  }


  .rj-reviews__placeholder small {
    font-size: 0.8rem;
  }


  /* FOOT */

  .rj-reviews__footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 17px;

    padding-top: 23px;
  }


  .rj-reviews__footer strong {
    font-size: 1.35rem;
  }


  .rj-reviews__cta {
    font-size: 0.88rem;
  }


  /* DECORATION */

  .rj-reviews__quote {
    top: 55px;
    right: -40px;

    font-size: 8.5rem;
  }


  .rj-reviews__swoosh {
    top: 190px;
    left: -220px;

    width: 420px;
  }


  .rj-reviews__line {
    left: 18px;
  }


  .rj-reviews__orb--one {
    right: -170px;
  }

}







































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   08. SERVICE AREAS
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-service-areas {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(36, 91, 155, 0.06),
      transparent 29%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(162, 163, 167, 0.08),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #F4F5F6 0%,
      #F8F8F8 48%,
      var(--rj-white) 100%
    );
}


.rj-service-areas::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.13;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='210' viewBox='0 0 210 210'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"
    );

  mix-blend-mode:
    multiply;
}


.rj-service-areas > .rj-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   02. DECORATION
   ========================================================= */

.rj-service-areas__decor {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}


.rj-service-areas__decor-line {
  position: absolute;

  top: 0;
  right: 11%;

  width: 1px;
  height: 130px;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  opacity: 0.35;
}


.rj-service-areas__decor-circle {
  position: absolute;

  right: -150px;
  bottom: -190px;

  width: 430px;
  height: 430px;

  border:
    1px solid
    rgba(7, 47, 107, 0.07);

  border-radius: 50%;
}


.rj-service-areas__swoosh {
  position: absolute;

  top: 155px;
  left: -180px;

  width: 520px;

  opacity: 0.18;

  transform:
    rotate(-7deg);
}


.rj-service-areas__swoosh path {
  fill: none;

  stroke:
    var(--rj-navy);

  stroke-width: 1.5;

  stroke-linecap: round;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.rj-service-areas__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(300px, 0.62fr);

  align-items: end;

  gap:
    clamp(
      55px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      42px,
      5vw,
      64px
    );
}


.rj-service-areas__heading {
  max-width: 820px;
}


.rj-service-areas__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.8vw,
      5rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-service-areas__title span {
  display: block;

  color:
    #596675;
}


/* =========================================================
   04. INTRO
   ========================================================= */

.rj-service-areas__intro {
  max-width: 470px;

  justify-self: end;
}


.rj-service-areas__intro p {
  margin:
    0
    0
    15px;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


.rj-service-areas__intro-note {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  font-size: 0.85rem;
  font-weight: 700;

  color:
    var(--rj-steel-blue);
}


.rj-service-areas__intro-note::before {
  content: "";

  width: 20px;
  height: 1px;

  background:
    var(--rj-navy);
}


/* =========================================================
   05. MAIN LAYOUT
   ========================================================= */

.rj-service-areas__layout {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(310px, 0.72fr)
    minmax(0, 1.55fr);

  min-height: 660px;

  overflow: hidden;

  border:
    1px solid
    rgba(7, 47, 107, 0.1);

  border-radius:
    var(--rj-radius-xl);

  background:
    var(--rj-white-pure);

  box-shadow:
    0 28px 80px
    rgba(6, 27, 56, 0.11);
}


/* =========================================================
   06. LEFT PANEL
   ========================================================= */

.rj-service-areas__panel {
  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  min-width: 0;

  padding:
    31px
    29px
    27px;

  border-right:
    1px solid
    var(--rj-border);

  background:
    linear-gradient(
      160deg,
      rgba(251, 251, 250, 0.98),
      rgba(243, 244, 245, 0.97)
    );
}


/* =========================================================
   07. PANEL HEADER
   ========================================================= */

.rj-service-areas__panel-head {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 18px;

  margin-bottom: 24px;
}


.rj-service-areas__panel-kicker {
  display: block;

  margin-bottom: 5px;

  font-size: 0.74rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-service-areas__panel-head h3 {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size: 1.7rem;
  font-weight: 400;

  line-height: 1.05;

  color:
    var(--rj-navy-deep);
}


/* =========================================================
   08. RESET BUTTON
   ========================================================= */

.rj-service-areas__reset {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  flex:
    0
    0
    auto;

  min-height: 42px;

  padding:
    0
    12px;

  border:
    1px solid
    var(--rj-border);

  border-radius: 10px;

  font-size: 0.75rem;
  font-weight: 700;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.7);

  cursor: pointer;

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-areas__reset svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-service-areas__reset:hover {
  color:
    var(--rj-white);

  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);
}


/* =========================================================
   09. AREA LIST
   ========================================================= */

.rj-service-areas__list {
  display: flex;

  flex-direction: column;

  gap: 5px;

  min-height: 0;
}


/* =========================================================
   10. AREA BUTTON
   ========================================================= */

.rj-service-area {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  width: 100%;

  min-height: 44px;

  padding:
    0
    13px
    0
    14px;

  border: 0;

  border-radius: 9px;

  font-size: 0.9rem;
  font-weight: 600;

  text-align: left;

  color:
    #435160;

  background:
    transparent;

  cursor: pointer;

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    padding-left
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-area::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 3px;
  height: 18px;

  border-radius: 999px;

  opacity: 0;

  transform:
    translateY(-50%)
    scaleY(0.5);

  background:
    var(--rj-navy);

  transition:
    opacity
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-area > span:last-child {
  font-size: 1rem;

  color:
    var(--rj-blue);

  opacity: 0.55;

  transition:
    opacity
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-area:hover,
.rj-service-area.is-active {
  padding-left: 20px;

  color:
    var(--rj-navy);

  background:
    rgba(7, 47, 107, 0.055);
}


.rj-service-area:hover::before,
.rj-service-area.is-active::before {
  opacity: 1;

  transform:
    translateY(-50%)
    scaleY(1);
}


.rj-service-area:hover > span:last-child,
.rj-service-area.is-active > span:last-child {
  opacity: 1;

  transform:
    translateX(3px);
}


/* =========================================================
   11. PANEL FOOT
   ========================================================= */

.rj-service-areas__panel-footer {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-top: auto;

  padding-top: 22px;

  border-top:
    1px solid
    var(--rj-border);
}


.rj-service-areas__panel-footer > span {
  font-size: 0.79rem;

  color:
    var(--rj-text-soft);
}


.rj-service-areas__panel-footer a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  width: fit-content;

  font-size: 0.88rem;
  font-weight: 800;

  color:
    var(--rj-navy);
}


.rj-service-areas__panel-footer svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-service-areas__panel-footer a:hover svg {
  transform:
    translateX(4px);
}


/* =========================================================
   12. MAP SHELL
   ========================================================= */

.rj-service-areas__map-shell {
  position: relative;

  min-width: 0;
  min-height: 660px;

  overflow: hidden;

  background:
    #E8ECEF;
}


/* =========================================================
   13. LEAFLET MAP
   ========================================================= */

.rj-service-areas__map {
  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;
  height: 100%;

  background:
    #E8ECEF;
}


/* subtle map tone */

.rj-service-areas__map
.leaflet-tile-pane {
  filter:
    saturate(0.72)
    contrast(0.95)
    brightness(1.035);
}


/* =========================================================
   14. MAP LABEL
   ========================================================= */

.rj-service-areas__map-label {
  position: absolute;

  top: 22px;
  left: 22px;

  z-index: 500;

  display: flex;

  align-items: center;

  gap: 9px;

  padding:
    11px
    14px;

  border:
    1px solid
    rgba(255, 255, 255, 0.62);

  border-radius: 10px;

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color:
    var(--rj-navy-deep);

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 8px 25px
    rgba(6, 27, 56, 0.11);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);
}


.rj-service-areas__map-label > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    var(--rj-navy);
}


/* =========================================================
   15. MAP HINT
   ========================================================= */

.rj-service-areas__map-hint {
  position: absolute;

  right: 20px;
  bottom: 20px;

  z-index: 500;

  display: flex;

  align-items: center;

  gap: 9px;

  padding:
    9px
    12px;

  border-radius: 9px;

  font-size: 0.69rem;
  font-weight: 700;

  color:
    #485766;

  background:
    rgba(255, 255, 255, 0.88);

  box-shadow:
    0 7px 20px
    rgba(6, 27, 56, 0.09);

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);
}


.rj-service-areas__map-hint i {
  width: 1px;
  height: 12px;

  background:
    rgba(7, 47, 107, 0.18);
}


/* =========================================================
   16. LEAFLET CONTROLS
   ========================================================= */

.rj-service-areas
.leaflet-control-zoom {
  overflow: hidden;

  border:
    1px solid
    rgba(7, 47, 107, 0.12) !important;

  border-radius: 10px;

  box-shadow:
    0 8px 25px
    rgba(6, 27, 56, 0.1);
}


.rj-service-areas
.leaflet-control-zoom a {
  width: 40px;
  height: 40px;

  line-height: 40px;

  border-bottom-color:
    rgba(7, 47, 107, 0.1) !important;

  font-family:
    var(--rj-font-body);

  font-size: 1.25rem;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.94);
}


.rj-service-areas
.leaflet-control-zoom a:hover {
  color:
    var(--rj-white);

  background:
    var(--rj-navy);
}


.rj-service-areas
.leaflet-control-attribution {
  font-size: 0.65rem;

  color:
    #596675;

  background:
    rgba(255, 255, 255, 0.82);
}


/* =========================================================
   17. CUSTOM MAP MARKERS
   ========================================================= */

.rj-map-icon {
  background:
    transparent !important;

  border: 0 !important;
}


.rj-map-marker {
  position: relative;

  display: grid;

  place-items: center;

  width: 30px;
  height: 30px;
}


.rj-map-marker__pulse {
  position: absolute;

  inset: 0;

  border:
    1px solid
    rgba(7, 47, 107, 0.4);

  border-radius: 50%;

  opacity: 0;

  transform:
    scale(0.6);
}


.rj-map-marker__dot {
  position: relative;

  z-index: 2;

  width: 15px;
  height: 15px;

  border:
    3px solid
    var(--rj-white-pure);

  border-radius:
    50%;

  background:
    var(--rj-navy);

  box-shadow:
    0 4px 13px
    rgba(6, 27, 56, 0.34);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-map-marker.is-active
.rj-map-marker__dot {
  transform:
    scale(1.22);

  background:
    var(--rj-blue);
}


.rj-motion-ok
.rj-map-marker.is-active
.rj-map-marker__pulse {
  animation:
    rj-map-pulse
    1.6s
    var(--rj-ease)
    infinite;
}


@keyframes rj-map-pulse {

  0% {
    opacity: 0.52;

    transform:
      scale(0.55);
  }

  75% {
    opacity: 0;

    transform:
      scale(1.35);
  }

  100% {
    opacity: 0;

    transform:
      scale(1.35);
  }

}


/* =========================================================
   18. POPUP
   ========================================================= */

.rj-service-areas
.leaflet-popup-content-wrapper {
  overflow: hidden;

  border-radius: 12px;

  color:
    var(--rj-text);

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 15px 45px
    rgba(6, 27, 56, 0.18);
}


.rj-service-areas
.leaflet-popup-content {
  margin:
    17px
    18px;
}


.rj-service-areas
.leaflet-popup-tip {
  background:
    rgba(255, 255, 255, 0.97);
}


.rj-map-popup__eyebrow {
  display: block;

  margin-bottom: 4px;

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-map-popup__title {
  display: block;

  margin-bottom: 3px;

  font-family:
    var(--rj-font-display);

  font-size: 1.25rem;
  font-weight: 400;

  line-height: 1.1;

  color:
    var(--rj-navy-deep);
}


.rj-map-popup__state {
  font-size: 0.78rem;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   19. MAP FALLBACK
   ========================================================= */

.rj-service-areas__map-fallback {
  position: absolute;

  inset: 0;

  z-index: 600;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 35px;

  text-align: center;

  color:
    var(--rj-text-soft);

  background:
    linear-gradient(
      145deg,
      #EDF0F2,
      #F8F9F9
    );
}


.rj-service-areas__map-fallback[hidden] {
  display: none;
}


.rj-service-areas__map-fallback strong {
  font-family:
    var(--rj-font-display);

  font-size: 1.5rem;
  font-weight: 400;

  color:
    var(--rj-navy-deep);
}


.rj-service-areas__map-fallback span {
  max-width: 360px;

  font-size: 0.9rem;

  line-height: 1.6;
}


/* =========================================================
   20. ACCESSIBLE STATUS
   ========================================================= */

.rj-service-areas__status {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip:
    rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}


/* =========================================================
   21. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-service-areas__layout,
  .rj-service-areas__map-shell {
    min-height: 660px;
  }


  .rj-service-areas__panel {
    padding:
      31px
      29px
      27px;
  }

}


/* =========================================================
   22. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-service-areas__header {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(275px, 0.7fr);

    gap: 48px;
  }


  .rj-service-areas__title {
    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-service-areas__layout {
    grid-template-columns: 1fr;

    min-height: 0;
  }


  .rj-service-areas__panel {
    padding:
      27px
      26px;

    border-right: 0;

    border-bottom:
      1px solid
      var(--rj-border);
  }


  .rj-service-areas__list {
    display: grid;

    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );

    gap: 6px;
  }


  .rj-service-areas__panel-footer {
    margin-top: 25px;
  }


  .rj-service-areas__map-shell {
    min-height: 520px;
  }

}


/* =========================================================
   23. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-service-areas__header {
    display: block;

    margin-bottom: 37px;
  }


  .rj-service-areas__heading {
    margin-bottom: 23px;
  }


  .rj-service-areas__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-service-areas__intro {
    max-width: 560px;

    justify-self: initial;
  }


  .rj-service-areas__layout {
    grid-template-columns: 1fr;

    min-height: 0;

    border-radius: 21px;
  }


  .rj-service-areas__panel {
    padding:
      25px
      22px;

    border-right: 0;

    border-bottom:
      1px solid
      var(--rj-border);
  }


  .rj-service-areas__list {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 5px;
  }


  .rj-service-area {
    min-height: 43px;

    font-size: 0.86rem;
  }


  .rj-service-areas__panel-footer {
    margin-top: 23px;
  }


  .rj-service-areas__map-shell {
    min-height: 460px;
  }


  .rj-service-areas__map-label {
    top: 17px;
    left: 17px;
  }


  .rj-service-areas__map-hint {
    right: 14px;
    bottom: 14px;
  }

}


/* =========================================================
   24. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-service-areas__header {
    display: block;

    margin-bottom: 31px;
  }


  .rj-service-areas__heading {
    margin-bottom: 21px;
  }


  .rj-service-areas__title {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-service-areas__intro p {
    font-size: 0.97rem;

    line-height: 1.67;
  }


  .rj-service-areas__layout {
    grid-template-columns: 1fr;

    min-height: 0;

    border-radius: 18px;
  }


  .rj-service-areas__panel {
    padding:
      22px
      17px;

    border-right: 0;

    border-bottom:
      1px solid
      var(--rj-border);
  }


  .rj-service-areas__panel-head {
    align-items: center;

    margin-bottom: 19px;
  }


  .rj-service-areas__panel-head h3 {
    font-size: 1.5rem;
  }


  .rj-service-areas__reset {
    min-height: 40px;

    padding:
      0
      10px;
  }


  .rj-service-areas__list {
    display: grid;

    grid-template-columns: 1fr;

    gap: 3px;
  }


  .rj-service-area {
    min-height: 41px;

    padding-right: 10px;

    font-size: 0.87rem;
  }


  .rj-service-areas__panel-footer {
    margin-top: 20px;
  }


  .rj-service-areas__map-shell {
    min-height: 405px;
  }


  .rj-service-areas__map-label {
    top: 13px;
    left: 13px;

    padding:
      9px
      11px;

    font-size: 0.67rem;
  }


  .rj-service-areas__map-hint {
    right: 11px;
    bottom: 11px;

    gap: 7px;

    padding:
      8px
      9px;

    font-size: 0.62rem;
  }


  .rj-service-areas
  .leaflet-control-zoom a {
    width: 37px;
    height: 37px;

    line-height: 37px;
  }


  .rj-service-areas__decor-circle {
    display: none;
  }

}












































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   09. FOOTER
   ========================================================= */


/* =========================================================
   01. FOOTER
   ========================================================= */

.rj-footer {
  position: relative;

  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.76);

  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(36, 91, 155, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(86, 113, 141, 0.15),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #04162E 0%,
      var(--rj-navy-deep) 48%,
      #072B5B 100%
    );

  isolation: isolate;
}


/* subtle mineral texture */

.rj-footer::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.13;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.68' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"
    );

  mix-blend-mode: soft-light;
}


/* =========================================================
   02. DECORATION
   ========================================================= */

.rj-footer__decor {
  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;
}


.rj-footer__swoosh {
  position: absolute;

  top: -15px;
  right: -100px;

  width:
    min(
      700px,
      52vw
    );

  opacity: 0.17;

  transform:
    rotate(-4deg);
}


.rj-footer__swoosh path {
  fill: none;

  stroke:
    rgba(255, 255, 255, 0.78);

  stroke-width: 1.3;

  stroke-linecap: round;

  stroke-dasharray: 820;
  stroke-dashoffset: 820;

  transition:
    stroke-dashoffset
    1500ms
    var(--rj-ease);
}


.rj-footer.is-visible
.rj-footer__swoosh path {
  stroke-dashoffset: 0;
}


.rj-footer__glow {
  position: absolute;

  top: -240px;
  left: 6%;

  width: 480px;
  height: 480px;

  border:
    1px solid
    rgba(255, 255, 255, 0.055);

  border-radius: 50%;
}


/* =========================================================
   03. MAIN AREA
   ========================================================= */

.rj-footer__main {
  position: relative;

  z-index: 2;

  padding:
    clamp(
      76px,
      7vw,
      112px
    )
    0
    clamp(
      62px,
      6vw,
      90px
    );
}


/* =========================================================
   04. GRID
   ========================================================= */

.rj-footer__grid {
  display: grid;

  grid-template-columns:
    minmax(290px, 1.35fr)
    minmax(150px, 0.68fr)
    minmax(220px, 0.85fr)
    minmax(210px, 0.82fr);

  align-items: start;

  gap:
    clamp(
      44px,
      5vw,
      82px
    );
}


/* =========================================================
   05. BRAND
   ========================================================= */

.rj-footer__brand-column {
  max-width: 410px;
}


.rj-footer__brand {
  display: inline-flex;

  margin-bottom: 25px;
}


.rj-footer__logo-shell {
  display: flex;

  align-items: center;

  padding:
    8px
    15px;

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius:
    15px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 16px 38px
    rgba(0, 0, 0, 0.12);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__brand:hover
.rj-footer__logo-shell {
  transform:
    translateY(-2px);

  box-shadow:
    0 20px 44px
    rgba(0, 0, 0, 0.17);
}


.rj-footer__logo-shell img {
  width: auto;
  height: 68px;

  object-fit: contain;
}


/* =========================================================
   06. DESCRIPTION
   ========================================================= */

.rj-footer__description {
  max-width: 390px;

  margin:
    0
    0
    28px;

  font-size: 0.96rem;

  line-height: 1.72;

  color:
    rgba(255, 255, 255, 0.67);
}


/* =========================================================
   07. CONTACT
   ========================================================= */

.rj-footer__contact {
  display: flex;

  flex-direction: column;

  gap: 12px;
}


.rj-footer__contact a {
  display: flex;

  align-items: center;

  gap: 11px;

  width: fit-content;
  max-width: 100%;

  font-size: 0.88rem;
  font-weight: 600;

  line-height: 1.45;

  color:
    rgba(255, 255, 255, 0.88);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__contact a:hover {
  color:
    var(--rj-white-pure);

  transform:
    translateX(3px);
}


.rj-footer__contact-icon {
  display: grid;

  place-items: center;

  flex:
    0
    0
    34px;

  width: 34px;
  height: 34px;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 50%;

  color:
    rgba(255, 255, 255, 0.86);

  background:
    rgba(255, 255, 255, 0.055);
}


.rj-footer__contact-icon svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.65;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* phone icon */

.rj-footer__contact a:first-child
.rj-footer__contact-icon svg {
  fill:
    currentColor;

  stroke: none;
}


/* =========================================================
   08. COLUMN HEADINGS
   ========================================================= */

.rj-footer__heading {
  position: relative;

  margin:
    4px
    0
    25px;

  padding-bottom: 13px;

  font-family:
    var(--rj-font-body);

  font-size: 0.83rem;
  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color:
    var(--rj-white-pure);
}


.rj-footer__heading::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 0;

  width: 30px;
  height: 1px;

  background:
    rgba(255, 255, 255, 0.42);
}


/* =========================================================
   09. QUICK LINKS
   ========================================================= */

.rj-footer__links {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.rj-footer__links a {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  min-height: 36px;

  width: 100%;

  font-size: 0.9rem;
  font-weight: 500;

  color:
    rgba(255, 255, 255, 0.68);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__links a
span:last-child {
  font-size: 0.85rem;

  opacity: 0;

  transform:
    translateX(-6px);

  transition:
    opacity
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__links a:hover {
  color:
    var(--rj-white-pure);

  transform:
    translateX(3px);
}


.rj-footer__links a:hover
span:last-child {
  opacity: 0.75;

  transform:
    translateX(0);
}


/* =========================================================
   10. HOURS
   ========================================================= */

.rj-footer__hours {
  display: flex;

  flex-direction: column;
}


.rj-footer__hours-row {
  display: flex;

  flex-direction: column;

  gap: 5px;

  padding:
    0
    0
    19px;

  margin-bottom: 19px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.095);
}


.rj-footer__hours-row span {
  font-size: 0.81rem;

  color:
    rgba(255, 255, 255, 0.53);
}


.rj-footer__hours-row strong {
  font-size: 0.93rem;
  font-weight: 650;

  color:
    rgba(255, 255, 255, 0.9);
}


/* LOCATION */

.rj-footer__area-note {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  margin-top: 3px;

  font-size: 0.82rem;

  line-height: 1.55;

  color:
    rgba(255, 255, 255, 0.58);
}


.rj-footer__area-note svg {
  flex:
    0
    0
    17px;

  width: 17px;
  height: 17px;

  margin-top: 2px;

  fill: none;

  stroke:
    rgba(255, 255, 255, 0.72);

  stroke-width: 1.6;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   11. SOCIAL
   ========================================================= */

.rj-footer__social-copy {
  margin:
    0
    0
    19px;

  font-size: 0.88rem;

  line-height: 1.65;

  color:
    rgba(255, 255, 255, 0.57);
}


.rj-footer__social-links {
  display: flex;

  flex-direction: column;

  gap: 9px;
}


.rj-footer__social-links a {
  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 11px;

  min-height: 52px;

  padding:
    7px
    13px
    7px
    7px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 11px;

  font-size: 0.88rem;
  font-weight: 600;

  color:
    rgba(255, 255, 255, 0.82);

  background:
    rgba(255, 255, 255, 0.045);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__social-links a:hover {
  color:
    var(--rj-white-pure);

  border-color:
    rgba(255, 255, 255, 0.24);

  background:
    rgba(255, 255, 255, 0.085);

  transform:
    translateY(-2px);
}


.rj-footer__social-icon {
  display: grid;

  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 9px;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.92);
}


.rj-footer__social-icon svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.65;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-footer__social-links a:nth-child(2)
.rj-footer__social-icon svg {
  fill:
    currentColor;

  stroke: none;
}


.rj-footer__social-fill {
  fill:
    currentColor;
  stroke:
    none;
}


.rj-footer__social-arrow {
  color:
    rgba(255, 255, 255, 0.48);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__social-links a:hover
.rj-footer__social-arrow {
  transform:
    translate(
      2px,
      -2px
    );
}


/* =========================================================
   12. FOOTER BOTTOM
   ========================================================= */

.rj-footer__bottom {
  position: relative;

  z-index: 2;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  background:
    rgba(2, 15, 32, 0.24);
}


.rj-footer__bottom-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  min-height: 76px;
}


.rj-footer__bottom p {
  margin: 0;

  font-size: 0.78rem;

  line-height: 1.5;

  color:
    rgba(255, 255, 255, 0.48);
}


/* =========================================================
   13. POWERED BY
   ========================================================= */

.rj-footer__powered {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  font-size: 0.78rem;

  white-space: nowrap;

  color:
    rgba(255, 255, 255, 0.5);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__powered strong {
  font-weight: 700;

  color:
    rgba(255, 255, 255, 0.82);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__powered svg {
  width: 15px;
  height: 15px;

  margin-left: 3px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-footer__powered:hover {
  color:
    var(--rj-white-pure);
}


.rj-footer__powered:hover strong {
  color:
    var(--rj-white-pure);
}


.rj-footer__powered:hover svg {
  transform:
    translate(
      2px,
      -2px
    );
}


/* =========================================================
   14. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-footer__grid {
    grid-template-columns:
      minmax(310px, 1.4fr)
      minmax(150px, 0.65fr)
      minmax(215px, 0.82fr)
      minmax(220px, 0.8fr);
  }


  .rj-footer__logo-shell img {
    height: 70px;
  }

}


/* =========================================================
   15. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-footer__main {
    padding:
      80px
      0
      65px;
  }


  .rj-footer__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      55px
      65px;
  }


  .rj-footer__brand-column {
    max-width: 440px;
  }


  .rj-footer__logo-shell img {
    height: 65px;
  }


  .rj-footer__bottom-inner {
    min-height: 72px;
  }

}


/* =========================================================
   16. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-footer__main {
    padding:
      69px
      0
      56px;
  }


  .rj-footer__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      45px
      34px;
  }


  .rj-footer__brand-column {
    grid-column:
      1 / -1;

    max-width: 520px;
  }


  .rj-footer__logo-shell img {
    height: 62px;
  }


  .rj-footer__description {
    max-width: 490px;
  }


  .rj-footer__social-column {
    grid-column:
      auto;
  }


  .rj-footer__bottom-inner {
    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 8px;

    min-height: 91px;

    padding-block: 17px;
  }


  .rj-footer__powered {
    white-space: normal;
  }


  .rj-footer__swoosh {
    width: 620px;

    right: -260px;
  }

}


/* =========================================================
   17. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-footer__main {
    padding:
      61px
      0
      48px;
  }


  .rj-footer__grid {
    grid-template-columns: 1fr;

    gap: 41px;
  }


  .rj-footer__brand-column {
    max-width: none;
  }


  .rj-footer__brand {
    margin-bottom: 22px;
  }


  .rj-footer__logo-shell {
    padding:
      7px
      12px;
  }


  .rj-footer__logo-shell img {
    height: 57px;
  }


  .rj-footer__description {
    margin-bottom: 24px;

    font-size: 0.93rem;

    line-height: 1.7;
  }


  .rj-footer__contact a {
    font-size: 0.83rem;

    overflow-wrap:
      anywhere;
  }


  .rj-footer__heading {
    margin-bottom: 19px;
  }


  .rj-footer__links {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      3px
      20px;
  }


  .rj-footer__links a {
    min-height: 38px;

    font-size: 0.87rem;
  }


  .rj-footer__links a
  span:last-child {
    display: none;
  }


  .rj-footer__social-links {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 8px;
  }


  .rj-footer__social-links a {
    grid-template-columns:
      36px
      minmax(0, 1fr);

    min-height: 51px;

    padding:
      7px
      9px
      7px
      7px;

    font-size: 0.82rem;
  }


  .rj-footer__social-arrow {
    display: none;
  }


  .rj-footer__social-icon {
    width: 36px;
    height: 36px;
  }


  .rj-footer__bottom-inner {
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    gap: 9px;

    min-height: 106px;

    padding-block: 19px;
  }


  .rj-footer__bottom p {
    font-size: 0.73rem;
  }


  .rj-footer__powered {
    flex-wrap: wrap;

    white-space: normal;

    font-size: 0.74rem;
  }


  .rj-footer__swoosh {
    top: 0;
    right: -270px;

    width: 520px;
  }


  .rj-footer__glow {
    width: 340px;
    height: 340px;

    left: -140px;
  }

}