/* ============================================================
   JEEVES EDITORIAL DESIGN SYSTEM
   Premium garment-care editorial CSS
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --jv-black: #111111;
  --jv-white: #ffffff;
  --jv-ivory: #f6f4ef;
  --jv-warm-grey: #77736c;
  --jv-border: rgba(17, 17, 17, .15);
  --jv-accent: #9b8a68;

  /* Typography */
  --jv-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --jv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --jv-section-gap-lg: clamp(100px, 12vw, 180px);
  --jv-section-gap-md: clamp(80px, 10vw, 160px);
  --jv-section-gap-sm: clamp(60px, 8vw, 120px);

  /* Layout */
  --jv-max-width: 1440px;
  --jv-pad-desktop: 48px;
  --jv-pad-tablet: 32px;
  --jv-pad-mobile: 20px;

  /* Animation */
  --jv-ease: cubic-bezier(.22, .61, .36, 1);
  --jv-duration: 800ms;
  --jv-duration-slow: 1200ms;
}

/* ── RESET (scoped) ────────────────────────────────────────── */
.jv-page {
  margin: 0;
  padding: 0;
  background: var(--jv-white);
  color: var(--jv-black);
  font-family: var(--jv-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.jv-page img {
  max-width: 100%;
  display: block;
}

.jv-page a {
  text-decoration: none;
  color: inherit;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.jv-display {
  font-family: var(--jv-font-display);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
  color: var(--jv-black);
}

.jv-display--white {
  color: var(--jv-white);
}

.jv-display--hero {
  font-size: clamp(42px, 6vw, 96px);
  color: var(--jv-white);
  text-shadow: 0 2px 40px rgba(0,0,0,.15);
}

.jv-display--section {
  font-size: clamp(36px, 5vw, 72px);
}

.jv-display--medium {
  font-size: clamp(28px, 3.5vw, 48px);
}

.jv-eyebrow {
  font-family: var(--jv-font-body);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--jv-warm-grey);
}

.jv-eyebrow--white {
  color: rgba(255, 255, 255, .7);
}

.jv-eyebrow--accent {
  color: var(--jv-accent);
}

.jv-body {
  font-family: var(--jv-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--jv-warm-grey);
}

.jv-body--lg {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.jv-body--white {
  color: rgba(255, 255, 255, .8);
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.jv-container {
  max-width: var(--jv-max-width);
  margin: 0 auto;
  padding-left: var(--jv-pad-desktop);
  padding-right: var(--jv-pad-desktop);
}

.jv-container--narrow {
  max-width: 860px;
}

.jv-container--text {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.jv-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--jv-border);
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04);
  transition: box-shadow .3s var(--jv-ease);
}

.jv-nav--solid {
  background: #ffffff;
  border-bottom-color: var(--jv-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.jv-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--jv-max-width);
  margin: 0 auto;
  padding: 0 var(--jv-pad-desktop);
}

.jv-nav__logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  transition: opacity .3s var(--jv-ease);
}

.jv-nav__logo:hover {
  opacity: .85;
}

.jv-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jv-nav__link {
  font-family: var(--jv-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--jv-black);
  transition: color .3s var(--jv-ease), opacity .3s var(--jv-ease);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.jv-nav__link:hover {
  color: var(--jv-accent);
  opacity: 1;
}

.jv-nav__link--active {
  color: var(--jv-accent);
  font-weight: 600;
}

.jv-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jv-nav__action-btn {
  font-family: var(--jv-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--jv-black);
  background: none;
  border: 1px solid var(--jv-border);
  padding: 10px 20px;
  cursor: pointer;
  transition: all .3s var(--jv-ease);
}

.jv-nav__action-btn:hover {
  background: var(--jv-black);
  color: var(--jv-white);
  border-color: var(--jv-black);
}

/* User icons in nav */
.jv-nav__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--jv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: all .3s var(--jv-ease);
  position: relative;
}

.jv-nav__icon-btn:hover {
  background: var(--jv-ivory);
  border-color: var(--jv-black);
}

.jv-nav__icon-btn img {
  width: 16px;
  height: 16px;
  transition: transform .3s var(--jv-ease);
}

.jv-nav__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jv-accent);
  color: var(--jv-white);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.jv-nav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.jv-nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--jv-black);
  transition: background .3s var(--jv-ease);
}

/* ── MOBILE MENU ───────────────────────────────────────────── */
.jv-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--jv-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform .5s var(--jv-ease);
}

.jv-mobile-menu.open {
  transform: translateX(0);
}

.jv-mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--jv-white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--jv-ease);
}

.jv-mobile-menu__close:hover {
  border-color: rgba(255,255,255,.5);
}

.jv-mobile-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.jv-mobile-menu__link {
  display: block;
  padding: 16px 0;
}

.jv-mobile-menu__link a {
  font-family: var(--jv-font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  color: var(--jv-white);
  letter-spacing: .02em;
  transition: opacity .3s var(--jv-ease);
}

.jv-mobile-menu__link a:hover {
  opacity: .5;
}

/* ── HERO ──────────────────────────────────────────────────── */
.jv-hero {
  position: relative;
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jv-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.jv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.6) 100%
  );
  z-index: 1;
}

.jv-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px var(--jv-pad-desktop);
}

.jv-hero__eyebrow {
  margin-bottom: 24px;
}

.jv-hero__title {
  margin: 0 0 24px;
}

.jv-hero__subtitle {
  font-family: var(--jv-font-body);
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ── EDITORIAL LINK / CTA ──────────────────────────────────── */
.jv-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jv-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--jv-black);
  border-bottom: 1px solid var(--jv-border);
  padding-bottom: 4px;
  transition: all .3s var(--jv-ease);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.jv-link:hover {
  border-bottom-color: var(--jv-black);
}

.jv-link:hover .jv-link__arrow {
  transform: translateX(4px);
}

.jv-link--white,
.jv-link--white .jv-link__arrow {
  color: #ffffff !important;
  border-bottom-color: rgba(255,255,255,.4);
}

.jv-link--white:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}

.jv-link--accent {
  color: var(--jv-accent);
  border-bottom-color: var(--jv-accent);
}

.jv-link__arrow {
  display: inline-block;
  transition: transform .3s var(--jv-ease);
  font-size: 16px;
}

/* ── BRAND / ABOUT STATEMENT ───────────────────────────────── */
.jv-brand {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}

.jv-brand__eyebrow {
  margin-bottom: 16px;
}

.jv-brand__title {
  margin: 0 0 20px;
}

.jv-brand__body {
  max-width: 1080px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── SERVICES (Editorial List with Premium intro) ──────────── */
.jv-services {
  padding: clamp(40px, 5vw, 60px) 0 clamp(60px, 7vw, 100px);
}

.jv-services__header {
  text-align: left;
  margin-bottom: 40px;
}

.jv-services__header .jv-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}

.jv-services__title {
  margin: 12px 0 16px;
}

.jv-services__subtitle {
  color: var(--jv-warm-grey);
  max-width: 680px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.jv-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jv-services__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--jv-border);
  cursor: pointer;
  transition: background .3s var(--jv-ease);
  position: relative;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.jv-services__item:last-child {
  border-bottom: 1px solid var(--jv-border);
}

.jv-services__item:hover {
  background: var(--jv-ivory);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.jv-services__number {
  font-family: var(--jv-font-display);
  font-size: 20px;
  color: var(--jv-warm-grey);
  font-weight: 400;
}

.jv-services__name {
  font-family: var(--jv-font-body);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--jv-black);
}

.jv-services__desc {
  font-size: 14px;
  color: var(--jv-warm-grey);
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.jv-services__arrow {
  font-size: 24px;
  color: var(--jv-warm-grey);
  transition: transform .3s var(--jv-ease), color .3s var(--jv-ease);
}

.jv-services__item:hover .jv-services__arrow {
  transform: translateX(6px);
  color: var(--jv-black);
}

/* Service item hover without image popup */

/* ── CASE STUDY ────────────────────────────────────────────── */
.jv-casestudy {
  padding: var(--jv-section-gap-lg) 0;
  background: var(--jv-ivory);
}

.jv-casestudy__eyebrow {
  margin-bottom: 24px;
}

.jv-casestudy__intro {
  max-width: 600px;
  margin-bottom: 60px;
}

.jv-casestudy__image-wrap {
  overflow: hidden;
  margin-bottom: 48px;
}

.jv-casestudy__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--jv-duration-slow) var(--jv-ease);
}

.jv-casestudy__image-wrap:hover .jv-casestudy__image {
  transform: scale(1.03);
}

.jv-casestudy__title {
  margin: 0 0 32px;
}

/* ── PICKUP & DELIVERY ─────────────────────────────────────── */
.jv-pickup {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.jv-pickup__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--jv-ease);
  z-index: 0;
}

.jv-pickup:hover .jv-pickup__bg {
  transform: scale(1.03);
}

.jv-pickup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.jv-pickup__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.jv-pickup__eyebrow {
  margin-bottom: 24px;
}

.jv-pickup__title {
  margin: 0 0 24px;
}

.jv-pickup__body {
  margin-bottom: 40px;
}

/* ── NEWS & UPDATES ────────────────────────────────────────── */
.jv-news {
  padding: var(--jv-section-gap-md) 0;
}

.jv-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.jv-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jv-news__item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--jv-border);
  transition: background .3s var(--jv-ease);
}

.jv-news__item:last-child {
  border-bottom: 1px solid var(--jv-border);
}

.jv-news__item:hover {
  background: var(--jv-ivory);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.jv-news__date {
  font-family: var(--jv-font-body);
  font-size: 13px;
  color: var(--jv-warm-grey);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-top: 4px;
}

.jv-news__title {
  font-family: var(--jv-font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--jv-black);
  margin: 0 0 8px;
  line-height: 1.3;
}

.jv-news__excerpt {
  font-size: 14px;
  color: var(--jv-warm-grey);
  line-height: 1.6;
}

/* ── FIND US ───────────────────────────────────────────────── */
.jv-findus {
  padding: var(--jv-section-gap-sm) 0;
  background: var(--jv-ivory);
}

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

.jv-findus__title {
  margin-bottom: 24px;
}

.jv-findus__info {
  font-size: 16px;
  color: var(--jv-warm-grey);
  line-height: 1.8;
}

.jv-findus__social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.jv-findus__social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--jv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--jv-ease);
}

.jv-findus__social-link:hover {
  background: var(--jv-black);
  border-color: var(--jv-black);
}

.jv-findus__social-link:hover img {
  filter: brightness(0) invert(1);
}

.jv-findus__social-link img {
  width: 16px;
  height: 16px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.jv-footer {
  background: var(--jv-black);
  color: rgba(255, 255, 255, .6);
  padding: 100px 0 0;
}

.jv-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.jv-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.jv-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .45);
  max-width: 300px;
}

.jv-footer__heading {
  font-family: var(--jv-font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--jv-white);
  margin: 0 0 24px;
}

.jv-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jv-footer__link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: color .3s var(--jv-ease);
}

.jv-footer__link:hover {
  color: var(--jv-white);
}

.jv-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

.jv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.jv-footer__legal {
  display: flex;
  gap: 24px;
}

.jv-footer__legal a {
  color: rgba(255, 255, 255, .3);
  transition: color .3s var(--jv-ease);
}

.jv-footer__legal a:hover {
  color: rgba(255, 255, 255, .6);
}

.jv-footer__social {
  display: flex;
  gap: 10px;
}

.jv-footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--jv-ease);
}

.jv-footer__social-link:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}

.jv-footer__social-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .3s var(--jv-ease);
}

.jv-footer__social-link:hover img {
  opacity: 1;
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────────── */
.jv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--jv-duration) var(--jv-ease),
              transform var(--jv-duration) var(--jv-ease);
}

.jv-reveal.jv-visible {
  opacity: 1;
  transform: translateY(0);
}

.jv-reveal--image {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity var(--jv-duration-slow) var(--jv-ease),
              transform var(--jv-duration-slow) var(--jv-ease);
}

.jv-reveal--image.jv-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveals */
.jv-reveal--d1 { transition-delay: 100ms; }
.jv-reveal--d2 { transition-delay: 200ms; }
.jv-reveal--d3 { transition-delay: 300ms; }
.jv-reveal--d4 { transition-delay: 400ms; }

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1199px) {
  .jv-container {
    padding-left: var(--jv-pad-tablet);
    padding-right: var(--jv-pad-tablet);
  }

  .jv-nav__inner {
    padding: 0 var(--jv-pad-tablet);
  }

  .jv-nav__links {
    display: none;
  }

  .jv-nav__hamburger {
    display: flex;
  }

  .jv-services__item {
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    padding: 24px 0;
  }

  .jv-news__item {
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
  }

  .jv-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .jv-findus__inner {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .jv-container {
    padding-left: var(--jv-pad-mobile);
    padding-right: var(--jv-pad-mobile);
  }

  .jv-nav__inner {
    padding: 0 var(--jv-pad-mobile);
  }

  .jv-nav {
    height: 72px;
  }

  .jv-nav__logo {
    height: 28px;
  }

  .jv-nav__actions {
    display: none;
  }

  .jv-hero__content {
    padding: 0 var(--jv-pad-mobile);
  }

  .jv-services__item {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px 0;
  }

  .jv-services__number {
    display: none;
  }

  .jv-services__preview {
    display: none;
  }

  .jv-news__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .jv-news__date {
    font-size: 12px;
  }

  .jv-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .jv-findus__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jv-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jv-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .jv-footer__legal {
    justify-content: center;
  }

  .jv-casestudy__image {
    aspect-ratio: 4 / 3;
  }

  .jv-pickup {
    min-height: 60vh;
  }

  /* Hide nav auth buttons on mobile */
  .jv-nav__auth-desktop {
    display: none;
  }
}

/* ── PREFERS REDUCED MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .jv-reveal,
  .jv-reveal--image {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .jv-casestudy__image,
  .jv-pickup__bg {
    transition: none;
  }

  .jv-nav {
    transition: none;
  }
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.jv-text-center { text-align: center; }
.jv-text-left { text-align: left; }
.jv-mb-0 { margin-bottom: 0; }
.jv-mt-auto { margin-top: auto; }
.jv-hidden-mobile { display: block; }
.jv-hidden-desktop { display: none; }

@media (max-width: 767px) {
  .jv-hidden-mobile { display: none; }
  .jv-hidden-desktop { display: block; }
}

/* Dropdown for favourites/cart - maintain existing behavior */
.jv-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 300px;
  background: var(--jv-white);
  border: 1px solid var(--jv-border);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s var(--jv-ease);
  z-index: 100;
}

.jv-dropdown-wrap:hover .jv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jv-dropdown__inner {
  padding: 16px;
  max-height: 360px;
  overflow-y: auto;
}

.jv-dropdown__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--jv-border);
  font-size: 14px;
}

.jv-dropdown__item:last-child {
  border-bottom: none;
}

.jv-dropdown__footer {
  padding: 12px 16px;
  border-top: 1px solid var(--jv-border);
}

.jv-dropdown__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--jv-border);
  background: none;
  cursor: pointer;
  transition: all .3s var(--jv-ease);
  color: var(--jv-black);
}

.jv-dropdown__btn:hover {
  background: var(--jv-black);
  color: var(--jv-white);
  border-color: var(--jv-black);
}

/* ── INNER PAGES / BREADCRUMB ─────────────────────────────── */
.jv-breadcrumb {
  background: var(--jv-black);
  color: var(--jv-white);
  padding: 140px 0 60px;
  text-align: center;
}

.jv-breadcrumb__title {
  font-family: var(--jv-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--jv-white);
}

.jv-breadcrumb__nav {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
}

.jv-breadcrumb__nav a {
  color: rgba(255, 255, 255, .6);
  transition: color .3s var(--jv-ease);
}

.jv-breadcrumb__nav a:hover {
  color: var(--jv-white);
}

/* ── ALL SERVICES PAGE ─────────────────────────────────────── */
.jv-page-section {
  padding: 80px 0 var(--jv-section-gap-md);
  background: var(--jv-white);
}

.jv-filter-box {
  background: var(--jv-ivory);
  border: 1px solid var(--jv-border);
  padding: 28px 20px;
}

.jv-filter-heading {
  font-family: var(--jv-font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--jv-black);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--jv-border);
  padding-bottom: 12px;
}

.jv-filter-search-wrap {
  position: relative;
  margin-bottom: 24px;
}

.jv-filter-search-input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 40px;
  background: var(--jv-white);
  border: 1px solid var(--jv-border);
  font-family: var(--jv-font-body);
  font-size: 14px;
  color: var(--jv-black);
  outline: none;
  transition: border-color .3s var(--jv-ease);
}

.jv-filter-search-input:focus {
  border-color: var(--jv-black);
}

.jv-filter-search-icon,
.rs-filter-search-icon {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  object-fit: contain;
  pointer-events: none;
}


.jv-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jv-filter-item {
  border-bottom: 1px solid var(--jv-border);
}

/* ── OVERRIDE LEGACY SERVICE.CSS GREEN BORDERS ─────────────── */
.rs-services-box,
.rs-services-box:hover {
  border: 1px solid #e5e5e5 !important;
  box-shadow: none !important;
  outline: none !important;
}

.rs-services-box:hover {
  border-color: rgba(186, 153, 88, 0.4) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

.rs-services-box button,
.rs-services-box:hover button {
  box-shadow: none !important;
}

/* ── BOOK NOW BUTTON (Nearest Stores) ───────────────────────── */
.jv-book-now-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 44px !important;
  width: 100% !important;
  background-color: #ffffff !important;
  color: #171717 !important;
  border: 1px solid #d4d4d4 !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.rs-services-box:hover .jv-book-now-btn {
  color: #171717 !important;
  border-color: #171717 !important;
  background-color: #ffffff !important;
}

.jv-book-now-btn:hover,
.rs-services-box .jv-book-now-btn:hover {
  background-color: #171717 !important;
  color: #ffffff !important;
  border-color: #171717 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* ── MODAL DOWNLOAD BUTTONS ─────────────────────────────────── */
.jv-modal-download-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 14px 20px !important;
  border-radius: 14px !important;
  background-color: #171717 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  text-decoration: none !important;
  border: 1px solid #171717 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}

.jv-modal-download-btn,
.jv-modal-download-btn * {
  color: #ffffff !important;
}

.jv-modal-download-btn:hover {
  background-color: #BA9958 !important;
  border-color: #BA9958 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(186, 153, 88, 0.3) !important;
}

.jv-modal-download-btn:hover,
.jv-modal-download-btn:hover * {
  color: #ffffff !important;
}


.jv-filter-item:last-child {
  border-bottom: none;
}

.jv-filter-item a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--jv-warm-grey);
  transition: all .2s var(--jv-ease);
  border-left: 2px solid transparent;
}

.jv-filter-item.active a,
.jv-filter-item a:hover {
  color: var(--jv-black);
  background: var(--jv-white);
  border-left-color: var(--jv-black);
  font-weight: 500;
}

/* Service Card Grid */
.jv-service-card {
  background: var(--jv-white);
  border: 1px solid var(--jv-border);
  transition: transform .3s var(--jv-ease), box-shadow .3s var(--jv-ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jv-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}

.jv-service-card__thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--jv-ivory);
}

.jv-service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--jv-duration-slow) var(--jv-ease);
}

.jv-service-card:hover .jv-service-card__thumb img {
  transform: scale(1.05);
}

.jv-service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jv-service-card__title {
  font-family: var(--jv-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--jv-black);
  margin: 0 0 10px;
  line-height: 1.25;
}

.jv-service-card__desc {
  font-size: 14px;
  color: var(--jv-warm-grey);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.jv-service-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--jv-border);
  display: flex;
  justify-content: flex-end;
}

/* ── ANIMATION UTILITIES ────────────────────────────────────── */
@keyframes jvFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jvFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes jvPulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.95; }
}

.jv-animate-fade-in {
  animation: jvFadeIn 0.8s var(--jv-ease) forwards;
}

.jv-animate-fade-up {
  animation: jvFadeInUp 0.8s var(--jv-ease) forwards;
}

.jv-delay-1 { animation-delay: 150ms; opacity: 0; animation-fill-mode: forwards; }
.jv-delay-2 { animation-delay: 300ms; opacity: 0; animation-fill-mode: forwards; }
.jv-delay-3 { animation-delay: 450ms; opacity: 0; animation-fill-mode: forwards; }
.jv-delay-4 { animation-delay: 600ms; opacity: 0; animation-fill-mode: forwards; }

/* Interactive Hover Lift & Focus Effects */
.jv-hover-card {
  transition: transform 0.4s var(--jv-ease), box-shadow 0.4s var(--jv-ease), border-color 0.3s ease;
}

.jv-hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(17, 17, 17, 0.08);
  border-color: rgba(186, 153, 88, 0.4) !important;
}

.jv-button-animated {
  transition: all 0.3s var(--jv-ease);
  position: relative;
  overflow: hidden;
}

.jv-button-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(17, 17, 17, 0.25);
}

.jv-button-animated:active {
  transform: translateY(0);
}

/* ── FIND US SECTION ───────────────────────────────────────── */
.jv-findus {
  padding: var(--jv-section-gap, 80px) 0;
  background: var(--jv-ivory, #FAF8F5);
  border-top: 1px solid var(--jv-border, #EBE8E3);
}

.jv-findus__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .jv-findus__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.jv-findus__title {
  color: var(--jv-black, #111111);
}

.jv-findus__info {
  font-family: var(--jv-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--jv-warm-grey, #77736C);
}

.jv-findus__social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.jv-findus__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.jv-findus__social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
  transition: all 0.25s ease;
}

.jv-findus__social-link:hover {
  background-color: #171717;
  border-color: #171717;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.jv-findus__social-link:hover img {
  filter: brightness(0) invert(1);
}


