/* RAL Japan Trading — Homepage */

html:has(body.rj-home-page) {
  background: #FAF8F4;
  scroll-behavior: smooth;
}

body.rj-home-page {
  --rj-stone: #EDE8E0;
  --rj-paper: #FAF8F4;
  --rj-ink: #121212;
  --rj-muted: #5E5C56;
  --rj-line: rgba(18, 18, 18, 0.09);
  --rj-line-strong: rgba(18, 18, 18, 0.14);
  --rj-teal: #BC002D;
  --rj-teal-d: #8B0020;
  --rj-teal-soft: rgba(188, 0, 45, 0.08);
  --rj-clay: #B84A35;
  --rj-gold: #C9982E;
  --rj-gold-light: #E8C56A;
  --rj-radius: 16px;
  --rj-radius-lg: 24px;
  --rj-shadow: 0 20px 50px rgba(18, 18, 18, 0.08);
  --rj-shadow-lg: 0 32px 64px rgba(18, 18, 18, 0.12);
  --rj-font: 'Outfit', system-ui, sans-serif;
  --rj-serif: 'Fraunces', Georgia, serif;
  --rj-gutter: max(20px, calc((100vw - 1280px) / 2 + 20px));
  --rj-band-inset: 40px;
  --rj-band-fade-y: 16px;

  font-family: var(--rj-font);
  background: var(--rj-paper);
  color: var(--rj-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.rj-home-page .page-loader {
  background: var(--rj-paper);
}

body.rj-home-page .page-loader .loader-ring {
  border-top-color: var(--rj-teal);
}

/* ── Layout primitives ──────────────────────────────────────── */

.rj-home { overflow-x: visible; }

@media (min-width: 769px) {
  body.rj-home-page,
  body.rj-home-page main,
  body.rj-home-page .rj-collection {
    overflow-x: visible;
  }
}

.rj-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rj-teal);
  margin: 0 0 10px;
}

.rj-kicker--light { color: var(--rj-gold-light); }

.rj-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.rj-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.rj-section-head h2 {
  font-family: var(--rj-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: var(--rj-ink);
}

.rj-section-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--rj-muted);
  margin: 10px 0 0;
  max-width: 48ch;
}

.rj-section-head--center .rj-section-lead {
  margin-left: auto;
  margin-right: auto;
}

.rj-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rj-teal);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.rj-link:hover { gap: 12px; color: var(--rj-teal-d); }
.rj-link--sm { font-size: 0.8rem; }

.rj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rj-btn:hover { transform: translateY(-1px); }
.rj-btn:focus-visible {
  outline: 2px solid var(--rj-teal);
  outline-offset: 3px;
}

.rj-btn--solid {
  background: var(--rj-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(188, 0, 45, 0.22);
}

.rj-btn--solid:hover {
  background: var(--rj-teal-d);
  box-shadow: 0 10px 28px rgba(188, 0, 45, 0.28);
}

.rj-btn--ghost {
  background: #fff;
  color: var(--rj-ink);
  border-color: var(--rj-line-strong);
}

.rj-btn--ghost:hover {
  border-color: var(--rj-ink);
  background: #fff;
}

.rj-btn--ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.rj-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.rj-btn--light {
  background: #fff;
  color: var(--rj-teal);
  box-shadow: none;
}

.rj-btn--light:hover { background: #f5f5f4; }
.rj-btn--compact { padding: 11px 18px; font-size: 0.84rem; }

/* ── Hero ─────────────────────────────────────────────────── */

.rj-hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(188, 0, 45, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 4% 92%, rgba(185, 74, 53, 0.05) 0%, transparent 52%),
    var(--rj-paper);
}

.rj-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 32px;
}

.rj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rj-line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rj-muted);
  margin-bottom: 24px;
}

.rj-hero__flag {
  width: 26px;
  height: 17px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--rj-line);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.rj-hero__flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 50%, #BC002D 36%, transparent 37%);
}

.rj-hero__title { margin: 0 0 24px; line-height: 0.98; }

.rj-hero__title-line {
  display: block;
  font-family: var(--rj-serif);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--rj-ink);
}

.rj-hero__title-line--accent {
  font-style: italic;
  color: var(--rj-teal);
}

.rj-hero__desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--rj-muted);
  max-width: 440px;
  margin: 0 0 32px;
}

.rj-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.rj-hero__metrics {
  display: flex;
  gap: 14px;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid var(--rj-line);
}

.rj-hero__metrics > div {
  min-width: 0;
  flex: 1;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.03);
}

.rj-hero__metrics dt {
  font-family: var(--rj-serif);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--rj-ink);
  line-height: 1;
  margin: 0;
}

.rj-hero__metrics dd {
  margin: 8px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rj-muted);
}

.rj-hero__stage {
  position: relative;
  min-height: 400px;
  padding-bottom: 8px;
}

.rj-spotlight {
  display: block;
  color: inherit;
  text-decoration: none;
}

.rj-spotlight__frame {
  position: relative;
  border-radius: var(--rj-radius-lg);
  overflow: hidden;
  background: var(--rj-stone);
  aspect-ratio: 4 / 3;
  box-shadow: var(--rj-shadow-lg);
  border: 1px solid var(--rj-line);
}

.rj-spotlight__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rj-spotlight:hover .rj-spotlight__frame img { transform: scale(1.03); }

.rj-spotlight__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 35%, rgba(18, 18, 18, 0.35) 100%);
  pointer-events: none;
}

.rj-spotlight__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 3.5rem;
  color: var(--rj-muted);
  opacity: 0.3;
}

.rj-spotlight__meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.12);
}

.rj-spotlight--empty .rj-spotlight__meta {
  position: static;
  margin-top: 16px;
  background: #fff;
}

.rj-spotlight__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rj-clay);
  margin-bottom: 4px;
}

.rj-spotlight__meta strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.25;
}

.rj-spotlight__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rj-teal);
}

.rj-spotlight__price small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.75;
}

.rj-hero__thumbs {
  position: absolute;
  top: 20px;
  right: -16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.rj-hero__thumb {
  width: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--rj-shadow);
  border: 2px solid #fff;
  color: var(--rj-ink);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.rj-hero__thumb:hover { transform: translateX(-4px); }

.rj-hero__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rj-hero__thumb span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  padding: 5px 4px 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
}

/* ── Finder ─────────────────────────────────────────────────── */

.rj-finder {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin-top: -8px;
  padding: 24px 28px;
  background: var(--rj-ink);
  border-radius: var(--rj-radius-lg);
  color: #fff;
  box-shadow: var(--rj-shadow-lg);
  border-top: 3px solid var(--rj-gold);
}

.rj-finder__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rj-gold-light);
  margin-bottom: 14px;
}

.rj-finder__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr) auto;
  gap: 10px;
  align-items: stretch;
}

.rj-finder__bar select,
.rj-finder__bar input {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rj-finder__bar select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.rj-finder__bar select option { color: var(--rj-ink); background: #fff; }

.rj-finder__bar select:focus,
.rj-finder__bar input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.rj-finder__bar input::placeholder { color: rgba(255, 255, 255, 0.42); }

.rj-finder__bar .rj-btn--solid {
  background: var(--rj-gold);
  color: var(--rj-ink);
  white-space: nowrap;
  box-shadow: none;
  align-self: stretch;
}

.rj-finder__bar .rj-btn--solid:hover {
  background: var(--rj-gold-light);
  transform: none;
}

/* ── Marquee ────────────────────────────────────────────────── */

.rj-marquee {
  background: transparent;
}

.rj-marquee__frame {
  overflow: hidden;
  padding-block: 16px;
  background: var(--rj-stone);
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 var(--rj-band-inset), #000 calc(100% - var(--rj-band-inset)), transparent),
    linear-gradient(180deg, transparent, #000 var(--rj-band-fade-y), #000 calc(100% - var(--rj-band-fade-y)), transparent);
  mask-image:
    linear-gradient(90deg, transparent, #000 var(--rj-band-inset), #000 calc(100% - var(--rj-band-inset)), transparent),
    linear-gradient(180deg, transparent, #000 var(--rj-band-fade-y), #000 calc(100% - var(--rj-band-fade-y)), transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.rj-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: rj-marquee 40s linear infinite;
}

.rj-marquee__track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rj-muted);
  white-space: nowrap;
}

.rj-marquee__track span em {
  font-style: normal;
  color: var(--rj-teal);
}

@keyframes rj-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rj-marquee__track { animation: none; }
}

/* ── Trust bar ──────────────────────────────────────────────── */

/* Shared content band — matches marquee fade inset */
body.rj-home-page .rj-band {
  padding-inline: var(--rj-band-inset);
}

/* ── Collection rail ────────────────────────────────────────── */

.rj-collection {
  padding: 80px 0 96px;
  overflow: visible;
}

.rj-section-head__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.rj-collection__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rj-collection__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rj-line-strong);
  background: #fff;
  color: var(--rj-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rj-collection__arrow:hover:not(:disabled) {
  background: var(--rj-teal);
  border-color: var(--rj-teal);
  color: #fff;
  transform: translateY(-1px);
}

.rj-collection__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rj-collection__arrow:focus-visible {
  outline: 2px solid var(--rj-teal);
  outline-offset: 2px;
}

.rj-collection__clip {
  container-type: inline-size;
  container-name: collection;
  overflow: hidden;
  padding-block: 36px 48px;
  width: calc(100vw - var(--rj-gutter) * 2);
  max-width: 1240px;
  margin-inline: auto;
}

@media (max-width: 1080px) {
  .rj-collection__clip {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-block: 20px 28px;
    padding-inline: max(20px, env(safe-area-inset-left, 0px)) max(20px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
}

.rj-collection__viewport {
  display: block;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rj-collection__viewport::-webkit-scrollbar {
  display: none;
}

.rj-collection__rail {
  display: flex;
  gap: var(--rj-card-gap, 20px);
  width: max-content;
  min-width: 100%;
}

.rj-unit {
  --rj-visible-cards: 3;
  --rj-card-width: calc(
    (100cqw - (var(--rj-card-gap, 20px) * (var(--rj-visible-cards) - 1)))
    / var(--rj-visible-cards)
  );
  flex: 0 0 var(--rj-card-width);
  width: var(--rj-card-width);
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--rj-radius);
  overflow: hidden;
  border: 1px solid var(--rj-line);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rj-unit:hover {
  box-shadow: var(--rj-shadow);
  transform: translateY(-2px);
  border-color: var(--rj-line-strong);
}

.rj-unit__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rj-stone);
}

.rj-unit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rj-unit:hover .rj-unit__media img { transform: scale(1.04); }

.rj-unit__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--rj-ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rj-unit__body { padding: 18px 20px 20px; }

.rj-unit__stock {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rj-muted);
  margin: 0 0 6px;
}

.rj-unit__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.35;
}

.rj-unit__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rj-unit__body h3 a:hover { color: var(--rj-teal); }

.rj-unit__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.rj-unit__specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--rj-muted);
  background: var(--rj-stone);
  padding: 5px 11px;
  border-radius: 999px;
}

.rj-unit__specs li i {
  font-size: 0.68rem;
  color: var(--rj-teal);
  opacity: 0.85;
}

.rj-unit__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--rj-line);
}

.rj-unit__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rj-teal);
  letter-spacing: -0.02em;
}

.rj-unit__price small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-left: 2px;
}

/* ── Bento ──────────────────────────────────────────────────── */

.rj-bento {
  padding-block: 56px 96px;
}

.rj-bento__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rj-bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 28px 28px 26px;
  border-radius: var(--rj-radius-lg);
  background: #fff;
  border: 1px solid var(--rj-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.rj-bento__cell:hover {
  border-color: rgba(188, 0, 45, 0.18);
  box-shadow: 0 14px 36px rgba(18, 18, 18, 0.06);
  transform: translateY(-2px);
}

.rj-bento__eyebrow {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(188, 0, 45, 0.28);
}

.rj-bento__cell i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rj-teal-soft);
  font-size: 1.05rem;
  color: var(--rj-teal);
  margin-bottom: 18px;
}

.rj-bento__cell h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.rj-bento__cell p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--rj-muted);
  margin: 0;
}

.rj-bento__cell .rj-link {
  margin-top: auto;
  padding-top: 18px;
}

.rj-bento__cell--feature {
  min-height: 220px;
  border-color: rgba(188, 0, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(188, 0, 45, 0.03) 0%, rgba(188, 0, 45, 0) 42%),
    #fff;
}

.rj-bento__cell--feature::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: var(--rj-radius-lg) 0 0 var(--rj-radius-lg);
  background: linear-gradient(180deg, var(--rj-teal), var(--rj-gold));
}

.rj-bento__cell--feature p {
  max-width: 38ch;
}

.rj-bento__cell--cta {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, var(--rj-teal-d) 0%, var(--rj-teal) 55%, #8B0020 100%);
  box-shadow: 0 18px 44px rgba(188, 0, 45, 0.16);
  overflow: hidden;
}

.rj-bento__cell--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 197, 106, 0.18), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.rj-bento__cell--cta:hover {
  transform: none;
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(188, 0, 45, 0.2);
}

.rj-bento__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px;
  flex-wrap: wrap;
}

.rj-bento__cta-copy {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.rj-bento__cta-copy i {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--rj-gold-light);
  font-size: 1.1rem;
}

.rj-bento__cell--cta h3 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.rj-bento__cell--cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.rj-bento__cell--cta .rj-btn {
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.12);
}

.rj-bento__cell--cta .rj-btn i {
  width: auto;
  height: auto;
  margin: 0 0 0 8px;
  background: none;
  font-size: 0.82rem;
}

/* ── Route ──────────────────────────────────────────────────── */

.rj-route {
  padding: 88px 0;
  background: var(--rj-stone);
  border-block: 1px solid var(--rj-line);
}

.rj-route__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.rj-route__copy h2 {
  font-family: var(--rj-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.rj-route__lead {
  color: var(--rj-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 38ch;
}

.rj-route__steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  border-left: 2px solid var(--rj-line-strong);
}

.rj-route__steps li {
  padding: 0 0 40px 32px;
  position: relative;
}

.rj-route__steps li:last-child { padding-bottom: 0; }

.rj-route__num {
  position: absolute;
  left: -14px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rj-teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px var(--rj-stone);
}

.rj-route__steps h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.rj-route__steps p {
  font-size: 0.88rem;
  color: var(--rj-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}

/* ── Destinations ───────────────────────────────────────────── */

.rj-destinations { padding-block: 88px; }

.rj-destinations__panel {
  position: relative;
  padding: 56px 60px;
  border-radius: var(--rj-radius-lg);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.rj-destinations__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(188, 0, 45, 0.94) 0%, rgba(139, 0, 32, 0.97) 100%);
  z-index: -1;
}

.rj-destinations__panel h2 {
  font-family: var(--rj-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.rj-destinations__panel > p {
  max-width: 520px;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.rj-destinations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.rj-destinations__tags span {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Testimonials ───────────────────────────────────────────── */

.rj-voices { padding-block: 88px; }

.rj-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rj-voice {
  margin: 0;
  padding: 28px;
  background: #fff;
  border-radius: var(--rj-radius);
  border: 1px solid var(--rj-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rj-voice:hover {
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.05);
  border-color: var(--rj-line-strong);
  transform: translateY(-2px);
}

.rj-voice__mark {
  font-family: var(--rj-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--rj-teal);
  opacity: 0.25;
  margin-bottom: 4px;
}

.rj-voice p {
  font-family: var(--rj-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--rj-ink);
}

.rj-voice footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.8rem;
  padding-top: 16px;
  border-top: 1px solid var(--rj-line);
}

.rj-voice footer strong { font-weight: 700; }
.rj-voice footer span:not(.rj-voice__stars) { color: var(--rj-muted); }

.rj-voice__stars {
  color: var(--rj-gold);
  letter-spacing: 1px;
  margin-left: auto;
  font-style: normal;
}

/* ── Journal ────────────────────────────────────────────────── */

.rj-journal { padding-block: 0 88px; }

.rj-journal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}

.rj-journal__item {
  padding: 24px 0 0;
  border-top: 1px solid var(--rj-line-strong);
}

.rj-journal__item time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rj-teal);
}

.rj-journal__item h3 {
  font-family: var(--rj-serif);
  font-size: 1.28rem;
  margin: 10px 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.rj-journal__item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rj-journal__item h3 a:hover { color: var(--rj-teal); }

.rj-journal__item p {
  font-size: 0.88rem;
  color: var(--rj-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA strip ──────────────────────────────────────────────── */

.rj-strip {
  background: var(--rj-ink);
  color: #fff;
  padding: 56px 0;
  border-top: 3px solid var(--rj-teal);
}

.rj-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.rj-strip__inner h2 {
  font-family: var(--rj-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.15rem);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.rj-strip__inner p {
  margin: 0;
  opacity: 0.72;
  max-width: 420px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.rj-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rj-strip .rj-btn--solid {
  background: #22c55e;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}

.rj-strip .rj-btn--solid:hover {
  background: #16a34a;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.3);
}
