/* ── Skip link ─────────────────────────────────── */
.rjh-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--h-gold);
    color: var(--h-ink);
    padding: 8px 16px;
    font-family: var(--h-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    z-index: 9999;
    transition: top 0.2s;
}
.rjh-skip-link:focus { top: 1rem; }

/* ── Smooth scrolling ─────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Tokens ────────────────────────────────────────────────── */
:root {
    --h-ink:      #1e1e1e;
    --h-gold:     #f7c640;
    --h-gold-dim: rgba(247,198,64,0.12);
    --h-gold-mid: rgba(247,198,64,0.35);
    --h-warm:     #fafaf8;
    --h-card:     #f3f1ee;
    --h-muted:    #6b6b6b;
    --h-border:   rgba(30,30,30,0.10);
    --h-ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --h-serif:    'Playfair Display', Georgia, serif;
    --h-sans:     'Rubik', system-ui, sans-serif;
    --h-r:        4px;
}

/* ── Section shells ────────────────────────────────────────── */
.rjh-section          { padding: 90px 0; }
.rjh-section--dark    { background: var(--h-ink);  color: var(--h-warm); }
.rjh-section--warm    { background: var(--h-warm); }
.rjh-section--white   { background: #fff; }
.rjh-section--card    { background: var(--h-card); }

.rjh-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.rjh-eyebrow {
    display: inline-block;
    font-family: var(--h-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-gold);
    margin-bottom: 14px;
}
.rjh-display {
    font-family: var(--h-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--h-ink);
    margin: 0 0 20px;
}
.rjh-section--dark .rjh-display { color: var(--h-warm); }
.rjh-body {
    font-family: var(--h-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--h-muted);
    margin: 0 0 28px;
}
.rjh-section--dark .rjh-body { color: rgba(250,250,248,0.65); }
.rjh-rule { width: 48px; height: 2px; background: var(--h-gold); margin: 0 0 28px; border: none; }

/* ── Buttons ────────────────────────────────────────────────── */
.rjh-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    background: var(--h-gold); color: var(--h-ink);
    font-family: var(--h-sans); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; border: none; cursor: pointer;
    transition: background 0.3s var(--h-ease), transform 0.3s var(--h-ease), box-shadow 0.3s var(--h-ease);
}
.rjh-btn:hover { background: #fad76a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,198,64,0.35); color: var(--h-ink); text-decoration: none; }
.rjh-btn--ghost { background: transparent; border: 1px solid var(--h-gold); color: var(--h-gold); }
.rjh-btn--ghost:hover { background: var(--h-gold); color: var(--h-ink); }
.rjh-btn--dark { background: var(--h-ink); color: var(--h-warm); border: 1px solid rgba(255,255,255,0.12); }
.rjh-btn--dark:hover { background: #2d2d2d; color: var(--h-warm); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.rjh-btn--outline-dark { background: transparent; border: 1px solid var(--h-ink); color: var(--h-ink); }
.rjh-btn--outline-dark:hover { background: var(--h-ink); color: var(--h-warm); }
.rjh-btn--whatsapp { background: #25d366; color: #fff; border: none; }
.rjh-btn--whatsapp:hover { background: #1ebe5b; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.rjh-btn .fa-arrow-right { transition: transform 0.25s var(--h-ease); }
.rjh-btn:hover .fa-arrow-right { transform: translateX(4px); }

/* ═══ HERO ════════════════════════════════════════════════════ */
.rjh-hero {
    position: relative;
    height: calc(98vh - 80px);
    min-height: calc(98vh - 80px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.rjh-hero__carousel {
    position: absolute;
    inset: 0;
}
.rjh-hero__carousel .owl-carousel,
.rjh-hero__carousel .owl-stage-outer,
.rjh-hero__carousel .owl-stage,
.rjh-hero__carousel .owl-item,
.rjh-hero__carousel .item {
    height: calc(100vh - 80px);
}
.rjh-hero__slide {
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: center;
    position: relative;
}
.rjh-hero__slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.22) 55%, rgba(20,20,20,0.05) 100%);
}
.rjh-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 0 80px;
    top: 24vh;
}
.rjh-hero__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}
.rjh-hero__kicker {
    font-family: var(--h-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--h-gold);
    margin-bottom: 18px;
}
.rjh-hero__title {
    font-family: var(--h-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 24px;
    max-width: 760px;
    letter-spacing: -0.02em;
}
.rjh-hero__title em { font-style: italic; color: var(--h-gold); }
.rjh-hero__sub {
    font-family: var(--h-sans);
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    max-width: 500px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.rjh-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rjh-hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-family: var(--h-sans);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.rjh-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: rjh-scroll-line 1.8s ease-in-out infinite;
}
@keyframes rjh-scroll-line { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.4} }
.rjh-hero__carousel .owl-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
.rjh-hero__carousel .owl-dot span {
    background: rgba(255,255,255,0.35) !important;
    width: 28px !important; height: 2px !important;
    border-radius: 1px !important; margin: 0 3px !important;
    transition: background 0.3s, width 0.3s !important;
}
.rjh-hero__carousel .owl-dot.active span {
    background: var(--h-gold) !important;
    width: 48px !important;
}

/* ═══ TRUST BAR ══════════════════════════════════════════════ */
.rjh-trust { background: var(--h-ink); padding: 22px 0; border-bottom: 1px solid rgba(247,198,64,0.15); }
.rjh-trust__grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.rjh-trust__item { display: flex; align-items: center; gap: 12px; padding: 8px 32px; border-right: 1px solid rgba(255,255,255,0.08); color: rgba(250,250,248,0.75); font-family: var(--h-sans); font-size: 0.78rem; }
.rjh-trust__item:last-child { border-right: none; }
.rjh-trust__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--h-gold-dim); border: 1px solid var(--h-gold-mid); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--h-gold); }
.rjh-trust__label { font-weight: 600; color: var(--h-warm); font-size: 0.8rem; display: block; }
.rjh-trust__sub { font-size: 0.68rem; opacity: 0.6; display: block; }

/* ═══ EDITORIAL INTRO ════════════════════════════════════════ */
.rjh-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rjh-intro__left { padding-right: 20px; }
.rjh-intro__pull { font-family: var(--h-serif); font-size: clamp(1.2rem,3vw,1.6rem); font-weight: 300; line-height: 1.35; color: var(--h-ink); font-style: italic; border-left: 3px solid var(--h-gold); padding-left: 28px; margin: 32px 0; }
.rjh-intro__img { position: relative; border-radius: var(--h-r); overflow: hidden; aspect-ratio: 4/5; }
.rjh-intro__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--h-ease); }
.rjh-intro__img:hover img { transform: scale(1.04); }
.rjh-intro__badge { position: absolute; bottom: 28px; left: 28px; background: var(--h-gold); color: var(--h-ink); font-family: var(--h-sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; border-radius: 2px; }

/* ═══ JOURNEY TYPE CARDS ════════════════════════════════════ */
.rjh-types__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.rjh-type-card { position: relative; aspect-ratio: 3/4; border-radius: var(--h-r); overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.rjh-type-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--h-ease); }
.rjh-type-card:hover .rjh-type-card__bg { transform: scale(1.06); }
.rjh-type-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(20,20,20,0.85) 0%,rgba(20,20,20,0.1) 60%); }
.rjh-type-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; }
.rjh-type-card__tag { font-family: var(--h-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-gold); margin-bottom: 8px; }
.rjh-type-card__title { font-family: var(--h-serif); font-size: 1.7rem; font-weight: 400; color: #fff; line-height: 1.2; margin: 0 0 10px; }
.rjh-type-card__desc { font-family: var(--h-sans); font-size: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0; opacity: 0; transform: translateY(8px); transition: opacity 0.35s var(--h-ease), transform 0.35s var(--h-ease); }
.rjh-type-card:hover .rjh-type-card__desc { opacity: 1; transform: translateY(0); }
.rjh-type-card__arrow { position: absolute; top: 28px; right: 28px; width: 40px; height: 40px; border-radius: 50%; background: var(--h-gold); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.7); transition: opacity 0.3s var(--h-ease), transform 0.3s var(--h-ease); }
.rjh-type-card:hover .rjh-type-card__arrow { opacity: 1; transform: scale(1); }
.rjh-type-card__arrow i { font-size: 16px; color: var(--h-ink); }

/* ═══ FEATURED JOURNEYS GRID ════════════════════════════════ */
.rjh-journeys__grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 320px 320px; gap: 16px; margin-top: 52px; }
.rjh-journey-card { position: relative; border-radius: var(--h-r); overflow: hidden; display: block; text-decoration: none; }
.rjh-journey-card:nth-child(1) { grid-column: 1/8; grid-row: 1; }
.rjh-journey-card:nth-child(2) { grid-column: 8/13; grid-row: 1; }
.rjh-journey-card:nth-child(3) { grid-column: 1/5; grid-row: 2; }
.rjh-journey-card:nth-child(4) { grid-column: 5/9; grid-row: 2; }
.rjh-journey-card:nth-child(5) { grid-column: 9/13; grid-row: 2; }
.rjh-journey-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--h-ease); }
.rjh-journey-card:hover .rjh-journey-card__bg { transform: scale(1.05); }
.rjh-journey-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(20,20,20,0.82) 0%,transparent 55%); }
.rjh-journey-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.rjh-journey-card__sub { font-family: var(--h-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--h-gold); margin-bottom: 6px; }
.rjh-journey-card__title { font-family: var(--h-serif); font-size: 1.4rem; font-weight: 400; color: #fff; line-height: 1.2; margin: 0; }
.rjh-journey-card:nth-child(1) .rjh-journey-card__title { font-size: 1.9rem; }

/* ═══ VALUE PROPS ═══════════════════════════════════════════ */
.rjh-props__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; border: 1px solid var(--h-border); border-radius: var(--h-r); overflow: hidden; }
.rjh-prop { padding: 44px 32px; background: #fff; border-right: 1px solid var(--h-border); transition: background 0.35s var(--h-ease); }
.rjh-prop:last-child { border-right: none; }
.rjh-prop:hover { background: var(--h-gold-dim); }
.rjh-prop__icon { width: 52px; height: 52px; margin-bottom: 20px; object-fit: contain; filter: brightness(0); transition: filter 0.3s; }
.rjh-prop:hover .rjh-prop__icon { filter: brightness(0) sepia(1) hue-rotate(10deg) saturate(5); }
.rjh-prop__title { font-family: var(--h-serif); font-size: 1.25rem; font-weight: 600; color: var(--h-ink); margin: 0 0 10px; }
.rjh-prop__text { font-family: var(--h-sans); font-size: 0.82rem; color: var(--h-muted); line-height: 1.65; margin: 0; }

/* ═══ DESTINATIONS ══════════════════════════════════════════ */
.rjh-dest-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 52px; }
.rjh-dest-intro__cta { text-align: right; }
.rjh-dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.rjh-dest-card { display: block; text-decoration: none; border-radius: var(--h-r); overflow: hidden; border: 1px solid var(--h-border); background: #fff; transition: transform 0.35s var(--h-ease), box-shadow 0.35s var(--h-ease), border-color 0.35s; position: relative; }
.rjh-dest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(0,0,0,0.10); border-color: var(--h-gold); text-decoration: none; }
.rjh-dest-card__photo { height: 200px; background-size: cover; background-position: center; position: relative; transition: transform 0.6s var(--h-ease); overflow: hidden; }
.rjh-dest-card:hover .rjh-dest-card__photo { transform: scale(1.04); }
.rjh-dest-card__region { position: absolute; bottom: 12px; left: 12px; background: var(--h-gold); color: var(--h-ink); font-family: var(--h-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.rjh-dest-card__body { padding: 20px 20px 24px; }
.rjh-dest-card__icon { font-size: 1.5rem; margin-bottom: 10px; display: block; line-height: 1; color: var(--h-gold); }
.rjh-dest-card__name { font-family: var(--h-serif); font-size: 1.2rem; font-weight: 600; color: var(--h-ink); margin: 0 0 6px; line-height: 1.2; }
.rjh-dest-card__tagline { font-family: var(--h-sans); font-size: 0.75rem; color: var(--h-muted); line-height: 1.5; margin: 0 0 8px; font-weight: 600; }
.rjh-dest-card__desc { font-family: var(--h-sans); font-size: 0.75rem; color: var(--h-muted); line-height: 1.6; margin: 0 0 14px; }
.rjh-dest-card__link { font-family: var(--h-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h-ink); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s var(--h-ease), color 0.2s; }
.rjh-dest-card:hover .rjh-dest-card__link { gap: 12px; color: var(--h-gold); }
.rjh-dest-grid--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.rjh-dest-grid--wide .rjh-dest-card__photo { height: 240px; }
.rjh-dest-grid--wide .rjh-dest-card__name { font-size: 1.4rem; }
.rjh-dest-keywords { margin-top: 36px; padding: 20px 24px; background: var(--h-gold-dim); border: 1px solid var(--h-gold-mid); border-radius: var(--h-r); }
.rjh-dest-keywords__label { font-family: var(--h-sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--h-ink); opacity: 0.55; margin-bottom: 10px; display: block; }
.rjh-dest-keywords__list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.rjh-dest-keywords__list li a { display: inline-block; font-family: var(--h-sans); font-size: 0.75rem; font-weight: 500; color: var(--h-ink); background: #fff; border: 1px solid var(--h-border); padding: 5px 14px; border-radius: 20px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.rjh-dest-keywords__list li a:hover { border-color: var(--h-gold); background: var(--h-gold-dim); }

/* ═══ STORY / VIDEO ════════════════════════════════════════ */
.rjh-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rjh-story__video { position: relative; aspect-ratio: 16/11; border-radius: var(--h-r); overflow: hidden; cursor: pointer; }
.rjh-story__video img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--h-ease); }
.rjh-story__video:hover img { transform: scale(1.04); }
.rjh-story__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(20,20,20,0.2); transition: background 0.3s; }
.rjh-story__video:hover .rjh-story__play { background: rgba(20,20,20,0.35); }
.rjh-story__play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--h-gold); display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--h-ease), box-shadow 0.3s; }
.rjh-story__video:hover .rjh-story__play-btn { transform: scale(1.1); box-shadow: 0 12px 40px rgba(247,198,64,0.45); }
.rjh-story__play-btn i { font-size: 28px; color: var(--h-ink); margin-left: 4px; }

/* ═══ EXPERIENCE CARDS ════════════════════════════════════ */
.rjh-exp__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
.rjh-exp-card { position: relative; aspect-ratio: 3/4; border-radius: var(--h-r); overflow: hidden; display: block; text-decoration: none; }
.rjh-exp-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.65s var(--h-ease); }
.rjh-exp-card:hover .rjh-exp-card__bg { transform: scale(1.07); }
.rjh-exp-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(20,20,20,0.78) 0%,rgba(20,20,20,0.05) 60%); }
.rjh-exp-card__name { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-family: var(--h-serif); font-size: 1.15rem; font-weight: 400; color: #fff; padding: 0 12px; line-height: 1.25; }

/* ═══ STATS BAND ═══════════════════════════════════════════ */
.rjh-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.rjh-stat { padding: 52px 32px; border-right: 1px solid rgba(247,198,64,0.15); text-align: center; transition: background 0.35s; }
.rjh-stat:last-child { border-right: none; }
.rjh-stat:hover { background: rgba(247,198,64,0.06); }
.rjh-stat__number { font-family: var(--h-serif); font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 400; color: var(--h-gold); display: block; line-height: 1; margin-bottom: 10px; }
.rjh-stat__label { font-family: var(--h-sans); font-size: 0.78rem; font-weight: 500; color: rgba(250,250,248,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

/* ═══ FOUNDER NOTE (homepage version — audit #7) ═══════════ */
.rjh-founder { padding: 90px 0; background: var(--h-card); }
.rjh-founder__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: center; margin-top: 52px; }
.rjh-founder__photo { aspect-ratio: 4/5; border-radius: var(--h-r); overflow: hidden; position: relative; }
.rjh-founder__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rjh-founder__badge { position: absolute; top: 24px; left: 24px; background: var(--h-gold); color: var(--h-ink); font-family: var(--h-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; }
.rjh-founder__content { position: relative; padding-top: 24px; }
.rjh-founder__open-quote { font-family: var(--h-serif); font-size: 9rem; line-height: 0.6; color: var(--h-gold); opacity: 0.45; display: block; margin-bottom: -20px; }
.rjh-founder__quote { font-family: var(--h-serif); font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 300; font-style: italic; color: var(--h-ink); line-height: 1.65; margin: 0 0 32px; }
.rjh-founder__author { font-family: var(--h-sans); font-size: 0.85rem; font-weight: 600; color: var(--h-ink); margin: 0 0 4px; }
.rjh-founder__role { font-family: var(--h-sans); font-size: 0.75rem; color: var(--h-muted); margin: 0 0 24px; }
.rjh-founder__stars { color: var(--h-gold); font-size: 0.8rem; margin-bottom: 0; letter-spacing: 2px; }

/* ═══ PROCESS STEPS ════════════════════════════════════════ */
.rjh-process__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 60px; border: 1px solid var(--h-gold-mid); border-radius: var(--h-r); overflow: hidden; }
.rjh-process-step { padding: 52px 40px; border-right: 1px solid var(--h-gold-mid); position: relative; background: var(--h-ink); transition: background 0.35s; }
.rjh-process-step:last-child { border-right: none; }
.rjh-process-step:hover { background: #252525; }
.rjh-process-step__num { font-family: var(--h-serif); font-size: 5rem; font-weight: 400; color: var(--h-gold-dim); line-height: 1; position: absolute; top: 24px; right: 32px; pointer-events: none; user-select: none; }
.rjh-process-step__icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.rjh-process-step__title { font-family: var(--h-serif); font-size: 1.5rem; font-weight: 400; color: var(--h-warm); margin: 0 0 14px; }
.rjh-process-step__text { font-family: var(--h-sans); font-size: 0.82rem; color: rgba(250,250,248,0.55); line-height: 1.7; margin: 0; }
.rjh-process__cta { text-align: center; margin-top: 44px; }

/* ═══ SUSTAINABILITY ═══════════════════════════════════════ */
.rjh-sustain__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.rjh-sustain-card { padding: 44px 32px; border: 1px solid var(--h-border); border-radius: var(--h-r); background: #fff; transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s; }
.rjh-sustain-card:hover { border-color: var(--h-gold); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.rjh-sustain-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--h-gold-dim); border: 1px solid var(--h-gold-mid); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--h-gold); }
.rjh-sustain-card__title { font-family: var(--h-serif); font-size: 1.3rem; color: var(--h-ink); margin: 0 0 12px; }
.rjh-sustain-card__text { font-family: var(--h-sans); font-size: 0.82rem; color: var(--h-muted); line-height: 1.7; margin: 0; }

/* ═══ WHY CHOOSE US ════════════════════════════════════════ */
.rjh-why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.rjh-why-card { padding: 40px 32px; background: var(--h-card); border-radius: var(--h-r); border: 1px solid var(--h-border); transition: background 0.35s, transform 0.35s; }
.rjh-why-card:hover { background: #fff; transform: translateY(-6px); }
.rjh-why-card__icon { font-size: 2rem; margin-bottom: 16px; display: block; color: var(--h-gold); }
.rjh-why-card__title { font-family: var(--h-serif); font-size: 1.25rem; color: var(--h-ink); margin: 0 0 10px; }
.rjh-why-card__text { font-family: var(--h-sans); font-size: 0.82rem; color: var(--h-muted); line-height: 1.65; margin: 0; }

/* ═══ GUEST PROOF / REVIEWS (UPDATED: CAROUSEL SLIDER) ════ */
.rjh-reviews__slider .owl-carousel .owl-stage-outer { padding: 20px 0; }
.rjh-reviews__slider .owl-carousel .owl-item { display: flex; justify-content: center; }
.rjh-review-card {
    background: #fff;
    border: 1px solid var(--h-border);
    border-radius: var(--h-r);
    padding: 36px 32px;
    margin: 0 12px;
    height: 100%;
    transition: transform 0.3s var(--h-ease), box-shadow 0.3s;
}
.rjh-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.rjh-review-card__stars {
    color: var(--h-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.rjh-review-card__text {
    font-family: var(--h-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--h-ink);
    line-height: 1.65;
    margin: 0 0 20px;
}
.rjh-review-card__author {
    font-family: var(--h-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--h-ink);
    margin: 0 0 2px;
}
.rjh-review-card__origin {
    font-family: var(--h-sans);
    font-size: 0.72rem;
    color: var(--h-muted);
}
.rjh-review-card__source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--h-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--h-muted);
    margin-top: 16px;
}
/* Carousel dots for reviews */
.rjh-reviews__slider .owl-dots {
    margin-top: 28px;
    text-align: center;
}
.rjh-reviews__slider .owl-dot span {
    background: var(--h-border) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}
.rjh-reviews__slider .owl-dot.active span {
    background: var(--h-gold) !important;
    transform: scale(1.2);
}

/* ═══ INSIGHTS / BLOG ═════════════════════════════════════ */
.rjh-insights__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.rjh-insight-card { border-radius: var(--h-r); overflow: hidden; border: 1px solid var(--h-border); background: #fff; text-decoration: none; display: block; transition: transform 0.35s var(--h-ease), box-shadow 0.35s; }
.rjh-insight-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.rjh-insight-card__img { height: 200px; background-size: cover; background-position: center; transition: transform 0.65s var(--h-ease); overflow: hidden; }
.rjh-insight-card:hover .rjh-insight-card__img { transform: scale(1.04); }
.rjh-insight-card__body { padding: 24px; }
.rjh-insight-card__tag { display: inline-block; font-family: var(--h-sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--h-ink); background: var(--h-gold); padding: 3px 10px; border-radius: 2px; margin-bottom: 12px; }
.rjh-insight-card__title { font-family: var(--h-serif); font-size: 1.2rem; color: var(--h-ink); margin: 0 0 10px; line-height: 1.3; }
.rjh-insight-card__text { font-family: var(--h-sans); font-size: 0.8rem; color: var(--h-muted); line-height: 1.6; margin: 0 0 16px; }
.rjh-insight-card__link { font-family: var(--h-sans); font-size: 0.75rem; font-weight: 600; color: var(--h-ink); display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.05em; transition: gap 0.25s; }
.rjh-insight-card:hover .rjh-insight-card__link { gap: 12px; }

/* ═══ FAQ ══════════════════════════════════════════════════ */
.rjh-faq__wrap { max-width: 760px; margin: 52px auto 0; }
.rjh-faq-item { border-bottom: 1px solid var(--h-border); }
.rjh-faq-item:first-child { border-top: 1px solid var(--h-border); }
.rjh-faq-q { width: 100%; background: none; border: none; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; cursor: pointer; font-family: var(--h-sans); font-size: 0.95rem; font-weight: 600; color: var(--h-ink); transition: color 0.2s; }
.rjh-faq-q:hover { color: var(--h-gold); }
.rjh-faq-q:hover .rjh-faq-icon { border-color: var(--h-gold); background: var(--h-gold-dim); }
.rjh-faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--h-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--h-muted); transition: transform 0.3s var(--h-ease), background 0.2s, border-color 0.2s; font-style: normal; }
.rjh-faq-q.rjh-active .rjh-faq-icon { transform: rotate(45deg); background: var(--h-gold); border-color: var(--h-gold); color: var(--h-ink); }
.rjh-faq-a { display: none; padding: 0 0 22px; font-family: var(--h-sans); font-size: 0.88rem; color: var(--h-muted); line-height: 1.8; }

/* ═══ CTA BAND ════════════════════════════════════════════ */
.rjh-cta-band { background: var(--h-gold); padding: 72px 0; text-align: center; }
.rjh-cta-band__title { font-family: var(--h-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 400; color: var(--h-ink); margin: 0 0 12px; }
.rjh-cta-band__sub { font-family: var(--h-sans); font-size: 1rem; color: rgba(30,30,30,0.65); margin: 0 0 36px; }
.rjh-cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══ CTA AUDIENCE GRID (audit #8) ═══════════════════════ */
.rjh-cta-paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.rjh-cta-path { padding: 40px 32px; border-radius: var(--h-r); border: 1px solid var(--h-gold-mid); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.rjh-cta-path:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.rjh-cta-path__icon { font-size: 2rem; color: var(--h-gold); margin-bottom: 16px; display: block; }
.rjh-cta-path__title { font-family: var(--h-serif); font-size: 1.35rem; color: var(--h-warm); margin: 0 0 10px; }
.rjh-cta-path__text { font-family: var(--h-sans); font-size: 0.82rem; color: rgba(250,250,248,0.55); line-height: 1.65; margin: 0 0 24px; }

/* ═══ FULL‑SCREEN BRAND STATEMENT ─ container ═══════════════ */
.rjh-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--h-ink); /* fallback */
}
.rjh-fullscreen__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://rediscoversrilanka.com/wp-content/uploads/2026/06/Scenic-Hill-Country-Drive-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform, background-position;
    background-color: #1a1a1a;
}
.rjh-fullscreen__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.rjh-fullscreen__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}
.rjh-fullscreen__inner {
    max-width: 780px;
    margin: 0 auto;
}
.rjh-fullscreen__eyebrow {
    color: var(--h-gold);
    margin-bottom: 1rem;
}
.rjh-fullscreen__title {
    color: #fff;
    font-size: clamp(2.8rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
}
.rjh-fullscreen__title em {
    color: var(--h-gold);
    font-style: italic;
}
.rjh-fullscreen__sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}
.rjh-fullscreen__btn {
    background: var(--h-gold);
    color: var(--h-ink);
}
.rjh-fullscreen__btn:hover {
    background: #fad76a;
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1199px) {
    .rjh-journeys__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .rjh-journey-card:nth-child(1) { grid-column: 1/3; grid-row: auto; }
    .rjh-journey-card:nth-child(n) { grid-column: auto; grid-row: auto; }
    .rjh-props__grid { grid-template-columns: repeat(2,1fr); }
    .rjh-dest-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
    .rjh-section { padding: 64px 0; }
    .rjh-container { padding: 0 20px; }
    .rjh-intro { grid-template-columns: 1fr; gap: 40px; }
    .rjh-intro__left { padding-right: 0; }
    .rjh-types__grid { grid-template-columns: 1fr 1fr; }
    .rjh-types__grid .rjh-type-card:last-child { grid-column: 1/-1; aspect-ratio: 16/7; }
    .rjh-journeys__grid { display: flex; flex-direction: column; }
    .rjh-journey-card { height: 260px; }
    .rjh-exp__grid { grid-template-columns: repeat(2,1fr); }
    .rjh-stats__grid { grid-template-columns: repeat(2,1fr); }
    .rjh-stat { border-bottom: 1px solid rgba(247,198,64,0.12); }
    .rjh-founder__grid { grid-template-columns: 1fr; }
    .rjh-founder__photo { aspect-ratio: 0.9; }
    .rjh-process__grid { grid-template-columns: 1fr; }
    .rjh-process-step { border-right: none; border-bottom: 1px solid var(--h-gold-mid); }
    .rjh-process-step:last-child { border-bottom: none; }
    .rjh-sustain__grid { grid-template-columns: 1fr 1fr; }
    .rjh-why__grid { grid-template-columns: 1fr 1fr; }
    .rjh-insights__grid { grid-template-columns: 1fr 1fr; }
    .rjh-reviews__slider .owl-carousel .owl-item { display: block; }
    .rjh-story { grid-template-columns: 1fr; gap: 40px; }
    .rjh-trust__item { padding: 8px 16px; font-size: 0.72rem; }
    .rjh-dest-intro { grid-template-columns: 1fr; gap: 20px; }
    .rjh-dest-intro__cta { text-align: left; }
    .rjh-dest-grid { grid-template-columns: repeat(2,1fr); }
    .rjh-dest-grid--wide { grid-template-columns: 1fr; }
    .rjh-cta-paths { grid-template-columns: 1fr; }
    .rjh-fullscreen { min-height: 500px; }
    .rjh-fullscreen__title { font-size: 2.4rem; }
}
@media (max-width: 767px) {
    .rjh-hero__title { font-size: 2.4rem; }
    .rjh-types__grid { grid-template-columns: 1fr; }
    .rjh-types__grid .rjh-type-card:last-child { grid-column: auto; }
    .rjh-props__grid { grid-template-columns: 1fr; border-radius: 0; }
    .rjh-prop { border-right: none; border-bottom: 1px solid var(--h-border); }
    .rjh-prop:last-child { border-bottom: none; }
    .rjh-exp__grid { grid-template-columns: repeat(2,1fr); }
    .rjh-sustain__grid { grid-template-columns: 1fr; }
    .rjh-why__grid { grid-template-columns: 1fr; }
    .rjh-insights__grid { grid-template-columns: 1fr; }
    .rjh-trust__grid { flex-direction: column; align-items: flex-start; gap: 0; }
    .rjh-trust__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
    .rjh-hero__scroll { display: none; }
    .rjh-stats__grid { grid-template-columns: 1fr 1fr; }
    .rjh-dest-grid { grid-template-columns: 1fr; }
    .rjh-dest-grid--wide { grid-template-columns: 1fr; }
    .rjh-cta-band__actions { flex-direction: column; align-items: center; }
    .rjh-fullscreen { min-height: 400px; }
    .rjh-fullscreen__title { font-size: 2rem; }
}
@media (max-width: 480px) {
    .rjh-exp__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .rjh-stats__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .rjh-hero__scroll-line { animation: none; }
    * { transition-duration: 0.01ms !important; }
}