/* =============================================================
   Life in Misool — lifein.css
   Namespaced .ra-* to avoid theme collisions.
   Breakpoints:
     Mobile portrait  : < 480px
     Mobile landscape : 480px – 767px
     Tablet portrait  : 768px – 1023px
     Tablet landscape : 1024px – 1279px
     Desktop          : ≥ 1280px
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --ra-sand: #F5F2ED;
  --ra-sand-deep: #ECE7DD;
  --ra-ocean: #1A4D6B;
  --ra-ocean-deep: #0E3349;
  --ra-forest: #2D4A3E;
  --ra-accent: #D4A373;
  --ra-coral: #C56E5A;
  --ra-white: #ffffff;

  --ra-font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ra-font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ra-radius-sm: 18px;
  --ra-radius-md: 28px;
  --ra-radius-lg: 40px;

  --ra-max: 1280px;

  /* nav height helpers */
  --ra-nav-h: 88px;
  --ra-nav-h-sm: 72px;
}

/* ---------- Global reset — remove browser default body margin ---------- */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* WordPress admin bar: push content down when logged in */
body.admin-bar .ra-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .ra-nav {
    top: 46px;
  }
}

/* ---------- Reset (scoped) ---------- */
.ra-root,
.ra-root *,
.ra-root *::before,
.ra-root *::after {
  box-sizing: border-box;
}

.ra-root {
  font-family: var(--ra-font-sans);
  color: var(--ra-ocean);
  background: var(--ra-sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.ra-root img {
  max-width: 100%;
  display: block;
}

.ra-root a {
  color: inherit;
  text-decoration: none;
}

.ra-root button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.ra-root h1,
.ra-root h2,
.ra-root h3,
.ra-root h4 {
  font-family: var(--ra-font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.ra-italic {
  font-style: italic;
}

/* ---------- Layout ---------- */
.ra-container {
  width: 100%;
  max-width: var(--ra-max);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .ra-container {
    padding-inline: 32px;
  }
}

@media (min-width: 1024px) {
  .ra-container {
    padding-inline: 48px;
  }
}

.ra-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ra-line {
  height: 1px;
  background: rgba(26, 77, 107, 0.18);
  border: 0;
  margin: 0;
}

/* =============================================================
   NAVBAR
   ============================================================= */
.ra-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 20px 0;
  transition: background-color .5s ease, padding .4s ease,
    box-shadow .4s ease, backdrop-filter .4s;
}

.ra-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(26, 77, 107, .07);
}

.ra-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.ra-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ra-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(14, 51, 73, .35));
  transition: width .4s, height .4s, filter .4s;
}

.ra-nav.is-scrolled .ra-brand-logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 10px rgba(14, 51, 73, .18));
}

.ra-brand-text {
  font-family: var(--ra-font-serif);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--ra-white);
  transition: color .4s;
}

.ra-brand-text small {
  display: block;
  margin-top: 4px;
  font-family: var(--ra-font-sans);
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
}

.ra-nav.is-scrolled .ra-brand-text {
  color: var(--ra-ocean);
}

/* Desktop nav links */
.ra-nav-links {
  display: none;
  gap: 30px;
}

@media (min-width: 1024px) {
  .ra-nav-links {
    display: flex;
  }
}

.ra-nav-links a {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}

.ra-nav-links a:hover {
  color: var(--ra-white);
  border-color: currentColor;
}

.ra-nav.is-scrolled .ra-nav-links a {
  color: var(--ra-ocean);
}

.ra-nav.is-scrolled .ra-nav-links a:hover {
  color: var(--ra-coral);
  border-color: var(--ra-coral);
}

/* Right cluster */
.ra-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ra-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ra-accent);
  color: var(--ra-ocean-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform .3s, background .3s;
  white-space: nowrap;
}

.ra-nav-cta:hover {
  transform: translateY(-1px);
  background: #e3b88a;
}

/* Hamburger */
.ra-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .3s;
}

.ra-nav.is-scrolled .ra-hamburger {
  background: rgba(26, 77, 107, .08);
  border-color: rgba(26, 77, 107, .15);
}

.ra-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ra-white);
  border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s;
  transform-origin: center;
}

.ra-nav.is-scrolled .ra-hamburger span {
  background: var(--ra-ocean);
}

.ra-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ra-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ra-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Show hamburger only below 1024px */
@media (min-width: 1024px) {
  .ra-hamburger {
    display: none;
  }
}

/* Mobile nav drawer */
.ra-nav-drawer {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  z-index: 55;
  padding-top: 100px;
  padding-inline: 24px;
  padding-bottom: 32px;
  background: rgba(14, 51, 73, .97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.ra-nav-drawer.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.ra-drawer-link {
  display: block;
  font-family: var(--ra-font-serif);
  font-size: clamp(28px, 6vw, 42px);
  font-style: italic;
  color: var(--ra-white) !important;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  transition: color .25s;
}

.ra-drawer-link:hover {
  color: var(--ra-accent);
}

.ra-drawer-cta {
  margin-top: 32px;
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .ra-nav-drawer {
    display: none !important;
  }
}

/* =============================================================
   HERO
   ============================================================= */
.ra-hero {
  position: relative;
  min-height: 100vh;
  height: 100svh;
  width: 100%;
  display: grid;
  place-items: center;
  padding-top: 110px;
  padding-bottom: 72px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ra-white);
}

.ra-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 51, 73, 0) 30%, rgba(14, 51, 73, .55) 72%, rgba(14, 51, 73, .92) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Parallax layers */
.ra-parallax {
  position: absolute;
  inset: -10% -2% -10% -2%;
  will-change: transform;
  transform: translate3d(0, var(--ra-parallax, 0px), 0) scale(var(--ra-zoom, 1));
  transition: transform 50ms linear;
}

.ra-hero-bg {
  background: radial-gradient(120% 80% at 70% 20%, #2b6f8f 0%, #163f5a 45%, #0a2e44 100%);
  z-index: 0;
}

.ra-hero-bg--overlay {
  background:
    linear-gradient(180deg, rgba(14, 51, 73, .05) 0%, rgba(14, 51, 73, .18) 50%, rgba(14, 51, 73, .55) 100%),
    radial-gradient(80% 50% at 50% 90%, rgba(14, 51, 73, .55), transparent 70%);
  z-index: 2;
}

.ra-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.93  0 0 0 0 0.85  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .14;
  mix-blend-mode: overlay;
}

.ra-hero-islands {
  z-index: 1;
  bottom: -2%;
  top: auto;
  inset-inline: -4%;
  height: 70%;
}

.ra-hero-islands svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ra-hero-photo {
  z-index: 0;
  inset: -8% -2% -8% -2%;
}

.ra-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.ra-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 51, 73, .25) 0%, rgba(14, 51, 73, .05) 30%, rgba(14, 51, 73, .55) 100%);
}

/* Hero inner content */
.ra-hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  max-width: 1100px;
  width: 100%;
}

.ra-hero-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 45%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #7b450f;
  margin-bottom: 24px;
}

.ra-hero h1 {
  font-size: clamp(48px, 8vw, 168px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .18);
  margin-bottom: 24px;
}

/* Title image mode */
.ra-hero-title-img {
  margin-bottom: 24px;
}

.ra-hero-title-img img {
  display: block;
  margin: 0 auto;
  max-width: min(680px, 88vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 32px rgba(0, 0, 0, .28));
}

/* Mobile portrait: tighter */
@media (max-width: 479px) {
  .ra-hero h1 {
    font-size: clamp(44px, 16vw, 72px);
  }

  .ra-hero-title-img img {
    max-width: 90vw;
  }
}

/* Mobile landscape */
@media (max-width: 767px) and (orientation: landscape) {
  .ra-hero {
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .ra-hero h1 {
    font-size: clamp(36px, 8vw, 64px);
  }

  .ra-hero-scroll {
    display: none;
  }
}

.ra-hero p.lede {
  font-size: clamp(14px, 1.55vw, 19px);
  font-weight: 300;
  line-height: 1.72;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.86;
}

@media (max-width: 479px) {
  .ra-hero p.lede {
    font-size: 14px;
    max-width: 100%;
  }
}

.ra-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .ra-cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }
}

.ra-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .3s;
  white-space: nowrap;
}

.ra-btn:active {
  transform: scale(.97);
}

.ra-root a.ra-btn-primary,
.ra-root .ra-btn-primary {
  background: var(--ra-white);
  color: var(--ra-ocean);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .45);
}

.ra-root a.ra-btn-primary:hover,
.ra-root .ra-btn-primary:hover {
  background: var(--ra-accent);
  color: var(--ra-ocean-deep);
}

.ra-root a.ra-btn-ghost,
.ra-root .ra-btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: var(--ra-white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ra-root a.ra-btn-ghost:hover,
.ra-root .ra-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ra-hero-scroll {
  position: absolute;
  bottom: 10px;
  left: 50.6%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-height: 680px) {
  .ra-hero-scroll {
    display: none;
  }
}

.ra-hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  animation: ra-scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes ra-scroll-pulse {

  0%,
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(0.4);
    opacity: .4;
  }
}

/* =============================================================
   SECTION SHELLS
   ============================================================= */
.ra-section {
  padding: 72px 0;
  position: relative;
}

@media (min-width: 768px) {
  .ra-section {
    padding: 96px 0;
  }
}

@media (min-width: 1024px) {
  .ra-section {
    padding: 128px 0;
  }
}

.ra-section.bg-sand {
  background: var(--ra-sand);
}

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

.ra-section.bg-ocean {
  background: var(--ra-ocean);
  color: var(--ra-white);
}

.ra-section.bg-deep {
  background: var(--ra-ocean-deep);
  color: var(--ra-white);
}

/* =============================================================
   INTRO + STATS
   ============================================================= */
.ra-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}

@media (min-width: 1024px) {
  .ra-intro {
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
  }
}

.ra-intro-heading {
  font-size: clamp(32px, 5.2vw, 72px);
  margin: 16px 0 22px;
}

.ra-intro-text {
  font-weight: 300;
  opacity: .74;
  max-width: 520px;
}

@media (max-width: 479px) {
  .ra-intro-text {
    max-width: 100%;
  }
}

.ra-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}

@media (min-width: 480px) {
  .ra-intro-stats {
    gap: 32px 48px;
  }
}

.ra-stat .num {
  font-family: var(--ra-font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-style: italic;
  color: var(--ra-coral);
  line-height: 1;
}

.ra-stat .lbl {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =============================================================
   VIRTUAL TOUR
   ============================================================= */
.ra-tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .ra-tour-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .ra-tour-grid {
    gap: 80px;
  }
}

.ra-tour-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  margin-bottom: 18px;
}

.ra-tour-intro {
  font-weight: 300;
  opacity: .7;
  max-width: 380px;
  margin-bottom: 28px;
  font-size: 15px;
}

@media (max-width: 479px) {
  .ra-tour-intro {
    max-width: 100%;
  }
}

.ra-tour-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ra-tour-pill {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 107, 0.18);
  color: var(--ra-ocean);
  background: transparent;
  font-family: var(--ra-font-sans);
  font-weight: 600;
  font-size: 12px;
  transition: background .3s, color .3s, transform .3s;
}

.ra-tour-pill:hover {
  background: rgba(26, 77, 107, .06);
}

.ra-tour-pill.is-active {
  background: var(--ra-ocean);
  color: #fff;
  transform: scale(1.06);
}

.ra-tour-frame {
  aspect-ratio: 16/10;
  border-radius: var(--ra-radius-lg);
  overflow: hidden;
  background: var(--ra-sand-deep);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(26, 77, 107, .35);
}

@media (max-width: 479px) {
  .ra-tour-frame {
    border-radius: var(--ra-radius-md);
    aspect-ratio: 4/3;
  }
}

.ra-tour-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease;
}

.ra-tour-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 51, 73, .7) 100%);
}

.ra-tour-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}

@media (min-width: 768px) {
  .ra-tour-caption {
    left: 32px;
    right: 32px;
    bottom: 28px;
  }
}

.ra-tour-caption h4 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  margin-bottom: 6px;
}

.ra-tour-caption p {
  font-size: 12px;
  opacity: .82;
}

/* =============================================================
   SECTION HEADER (Expeditions, etc.)
   ============================================================= */
.ra-section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .ra-section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }
}

.ra-section-title {
  font-size: clamp(32px, 5vw, 64px);
}

.ra-section-link {
  border-bottom: 1px solid var(--ra-ocean);
  padding-bottom: 5px;
  flex-shrink: 0;
}

/* =============================================================
   EXPEDITION CARDS
   ============================================================= */
.ra-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ra-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .ra-grid-2 {
    gap: 40px;
  }
}

.ra-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .ra-grid-3 { gap: 28px; }
}

@media (min-width: 1024px) {
  .ra-grid-3 { gap: 36px; }
}

/* In a 3-col row the body should be a touch more compact so all cards
   fit visually on one row without descenders breaking alignment. */
.ra-grid-3 .ra-card-title { font-size: clamp(20px, 1.8vw, 26px); }
.ra-grid-3 .ra-card-desc  { font-size: 13.5px; }

/* 3-col cards: thumbnail ALWAYS on top (column flex), overriding
   the default side-by-side behaviour at 600-767px and 1024px+. */
.ra-grid-3 .ra-card {
  flex-direction: column;
  align-items: stretch;
}
.ra-grid-3 .ra-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.ra-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 77, 107, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--ra-radius-md);
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
}

.ra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(26, 77, 107, .35);
}

/* Card image — 16:9 on mobile, square thumbnail when row layout kicks in */
.ra-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--ra-sand-deep);
  flex-shrink: 0;
}

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

  /* Landscape mobile: side-by-side */
  .ra-card {
    flex-direction: row;
    align-items: stretch;
  }

  .ra-card-img {
    width: 160px;
    aspect-ratio: auto;
    height: auto;
  }
}

@media (min-width: 768px) {

  /* Tablet: stacked within the 2-col grid */
  .ra-card {
    flex-direction: column;
  }

  .ra-card-img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {

  /* Desktop: side-by-side again */
  .ra-card {
    flex-direction: row;
    align-items: stretch;
  }

  .ra-card-img {
    width: 200px;
    aspect-ratio: auto;
    height: auto;
  }
}

.ra-card-img .ra-img-parallax {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.ra-card-body {
  flex: 1;
  padding: 24px;
}

@media (min-width: 768px) {
  .ra-card-body {
    padding: 28px;
  }
}

.ra-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ra-coral);
  margin-bottom: 10px;
}

.ra-card-title {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 12px;
}

.ra-card-desc {
  font-weight: 300;
  opacity: .7;
  font-size: 14px;
  margin: 14px 0;
}

.ra-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 14px;
}

.ra-card-meta .small {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ra-card-meta .price {
  font-size: 20px;
  font-weight: 700;
}

.ra-card-meta .price small {
  font-size: 10px;
  opacity: 0.5;
  font-weight: 400;
}

/* =============================================================
   DESTINATIONS
   ============================================================= */
.ra-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.ra-dest-heading {
  font-size: clamp(36px, 6vw, 84px);
  margin-bottom: 20px;
  margin-top: 14px;
}

.ra-heading p {
  font-weight: 300;
  opacity: 0.7;
  max-width: 540px;
  font-size: 16px;
}

.ra-heading .ra-line {
  width: 80px;
  background: var(--ra-accent);
  height: 2px;
  margin: 16px 0 24px;
}

.ra-dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ra-dest img {
    position: absolute;
    inset: -8% 0;
    width: 100%;
    height: 116%;
    object-fit: cover;
    transition: transform .8s ease, filter .8s ease;
    will-change: transform;
}

/* Tablet portrait dan ke atas: 3 kolom */
@media (min-width: 768px) {
  .ra-dest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.ra-dest {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--ra-radius-md);
  overflow: hidden;
  isolation: isolate;
}

/* Mobile portrait & landscape: 1 kolom, ratio landscape lebih nyaman di-scroll */
@media (max-width: 767px) {
  .ra-dest {
    aspect-ratio: 16/9;
  }
}

/* Tablet 3-col: portrait feel */
@media (min-width: 768px) {
  .ra-dest {
    aspect-ratio: 3/4;
  }
}

.ra-dest .ra-img-parallax {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  will-change: transform;
}

.ra-dest:hover .ra-img-parallax {
  filter: saturate(1.1);
}

.ra-dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 51, 73, 0) 35%, rgba(14, 51, 73, .85) 100%);
  z-index: 1;
}

.ra-dest-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--ra-white);
}

@media (min-width: 768px) {
  .ra-dest-body {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
}

.ra-dest-body .small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 7px;
  color: var(--ra-accent);
}

.ra-dest-body h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-style: italic;
}

/* =============================================================
   LOGISTICS
   ============================================================= */
.ra-logistics-label {
  text-align: center;
  margin-bottom: 40px !important;
  opacity: .5;
}

.ra-log-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ra-log-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.ra-log-card {
  padding: 24px;
  border: 1px solid rgba(26, 77, 107, 0.10);
  border-radius: var(--ra-radius-sm);
  transition: background .35s, transform .35s;
}

@media (min-width: 768px) {
  .ra-log-card {
    padding: 28px;
  }
}

.ra-log-card:hover {
  background: var(--ra-sand);
  transform: translateY(-3px);
}

.ra-log-card .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ra-coral);
  margin-bottom: 12px;
}

.ra-log-card p {
  font-weight: 300;
  opacity: 0.78;
  font-size: 14px;
}

/* =============================================================
   QUOTE / CULTURE
   ============================================================= */
.ra-quote {
  text-align: center;
}

.ra-quote .badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0 auto 32px;
  color: var(--ra-accent);
}

.ra-quote h2 {
  font-size: clamp(24px, 4.4vw, 60px);
  font-style: italic;
  font-weight: 300;
  max-width: 920px;
  margin: 0 auto;
}

.ra-quote .pillars {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =============================================================
   FOOTER
   ============================================================= */
.ra-footer {
  padding: 44px 0 10px;
  background: var(--ra-white);
  border-top: 1px solid rgba(26, 77, 107, 0.06);
}

.ra-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .ra-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.ra-footer-links {
  display: flex;
  gap: 24px;
}

/* Footer brand image */
.ra-footer-brand {
  display: flex;
  justify-content: center;
  padding: 0 20px 20px;
}

.ra-footer-brand img {
  height: auto;
  width: auto;
  display: block;
  opacity: 0.72;
  transition: opacity .3s;
}

.ra-footer-brand img:hover {
  opacity: 1;
}

/* Social icons row */
.ra-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 20px 0;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .ra-footer-social {
    padding-inline: 32px;
  }
}

@media (min-width: 1024px) {
  .ra-footer-social {
    padding-inline: 48px;
  }
}

.ra-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ra-ocean);
  opacity: 0.38;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

.ra-social-icon svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: block;
}

.ra-social-icon:hover {
  opacity: 1;
  transform: translateY(-3px);
  background: rgba(26, 77, 107, 0.06);
}

/* =============================================================
   REVEAL (intersection observer)
   ============================================================= */
.ra-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

.ra-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =============================================================
   CINEMATIC MODAL
   ============================================================= */
.ra-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 51, 73, 0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ra-modal.is-open {
  display: flex;
  animation: ra-fade .4s ease both;
}

@keyframes ra-fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.ra-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--ra-white);
  display: grid;
  place-items: center;
  transition: background .25s;
}

.ra-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ra-modal-frame {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 100px rgba(0, 0, 0, .5);
}

@media (max-width: 479px) {
  .ra-modal-frame {
    border-radius: 12px;
  }
}

.ra-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================
   HERO ENTRANCE ANIMATIONS (sekali jalan saat halaman pertama muat)
   Elemen parallax hanya fade opacity — transform dibiarkan ke JS parallax.
   Elemen inner: fade + slide up dengan delay bertahap.
   ============================================================= */
@keyframes ra-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ra-slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background layers — opacity only, jangan ganggu transform parallax JS */
.ra-hero-photo {
  animation: ra-fade-in 1.6s ease both;
}

.ra-hero-bg--overlay {
  animation: ra-fade-in 2.0s ease both 0.2s;
}

.ra-hero-islands {
  animation: ra-fade-in 1.2s ease both 0.4s;
}

/* Konten hero — staggered slide up */
.ra-hero-tag {
  animation: ra-slide-up 0.8s cubic-bezier(.2, .7, .2, 1) both 0.5s;
}

.ra-hero-inner h1,
.ra-hero-title-img {
  animation: ra-slide-up 0.9s cubic-bezier(.2, .7, .2, 1) both 0.7s;
}

.ra-hero-inner .lede {
  animation: ra-slide-up 0.8s cubic-bezier(.2, .7, .2, 1) both 0.95s;
}

.ra-cta-row {
  animation: ra-slide-up 0.8s cubic-bezier(.2, .7, .2, 1) both 1.15s;
}

.ra-hero-scroll {
  animation: ra-fade-in 0.8s ease both 1.5s;
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ra-parallax {
    transform: none !important;
    transition: none !important;
  }

  .ra-reveal {
    transition: none !important;
  }

  .ra-hero-photo,
  .ra-hero-bg--overlay,
  .ra-hero-islands,
  .ra-hero-tag,
  .ra-hero-inner h1,
  .ra-hero-title-img,
  .ra-hero-inner .lede,
  .ra-cta-row,
  .ra-hero-scroll {
    animation: none !important;
  }
}

/* =============================================================
   TABLET LANDSCAPE — fine tuning (1024px wide, short height)
   ============================================================= */
@media (min-width: 768px) and (max-width: 1279px) and (orientation: landscape) {
  .ra-hero {
    padding-top: 90px;
  }

  .ra-section {
    padding: 80px 0;
  }
}

/* =============================================================
   LARGE DESKTOP ≥ 1440px
   ============================================================= */
@media (min-width: 1440px) {
  :root {
    --ra-max: 1360px;
  }
}

/* =============================================================
   ARCHIVE & SINGLE — Inner pages
   ============================================================= */

/* Page hero (archive/single pages top header) */
.ra-page-hero {
  padding: calc(var(--ra-nav-h) + 64px) 0 80px;
  background: linear-gradient(135deg, var(--ra-ocean) 0%, var(--ra-ocean-deep) 100%);
  position: relative;
  overflow: hidden;
}

.ra-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 163, 115, .09) 0%, transparent 65%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .ra-page-hero {
    padding-top: calc(var(--ra-nav-h) + 96px);
    padding-bottom: 96px;
  }
}

.ra-back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.5);
  transition: color .25s;
}

.ra-back-link:hover {
  color: var(--ra-white);
}

.ra-page-hero .ra-eyebrow {
  color: var(--ra-accent);
}

.ra-page-title {
  font-size: clamp(40px, 7vw, 96px);
  margin: 14px 0 24px;
  line-height: 1;
  color: var(--ra-white);
}

.ra-page-intro {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  max-width: 560px;
  margin: 0;
  line-height: 1.7;
}

/* "View All" wrap on front page */
.ra-view-all-wrap {
  margin-top: 40px;
  text-align: right;
}

/* Card used as a link (anchor wrapper) */
.ra-card-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.ra-card-link:hover {
  color: inherit;
}

/* "View Details →" inline CTA inside card */
.ra-card-cta {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ra-coral);
  transition: letter-spacing .3s;
}

.ra-card-link:hover .ra-card-cta {
  letter-spacing: 0.32em;
}

/* Single post hero (full-bleed image) */
.ra-single-hero {
  position: relative;
  width: 100%;
  height: 55vw;
  max-height: 640px;
  min-height: 280px;
  overflow: hidden;
  margin-top: 0;
}

.ra-single-hero--tall {
  max-height: 780px;
}

.ra-single-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ra-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 51, 73, .08) 30%, rgba(14, 51, 73, .72) 100%);
}

.ra-single-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 20px;
  color: var(--ra-white);
}

@media (min-width: 768px) {
  .ra-single-hero-caption {
    padding: 48px 48px;
  }
}

.ra-single-hero-caption .ra-single-title {
  color: var(--ra-white);
}

/* Single post content area */
.ra-single-content {
  max-width: 820px;
}

.ra-single-breadcrumb {
  margin-bottom: 28px;
  opacity: 0.55;
  transition: opacity .25s;
}

.ra-single-breadcrumb a:hover {
  opacity: 1;
}

.ra-single-title {
  font-size: clamp(32px, 5.5vw, 72px);
  color: var(--ra-ocean);
  margin: 14px 0 0;
  line-height: 1;
}

.ra-single-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 24px 0 20px;
}

.ra-single-price .small {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ra-single-price .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--ra-ocean);
}

.ra-single-price .price small {
  font-size: 13px;
  opacity: 0.5;
  font-weight: 400;
}

.ra-single-body {
  margin-top: 28px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 700px;
}

.ra-single-body p {
  margin: 0 0 1.4em;
}

.ra-single-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* Empty state */
.ra-empty-msg {
  text-align: center;
  font-weight: 300;
  opacity: 0.55;
  padding: 80px 0;
  font-size: 16px;
}

/* Full-grid destinations archive (auto-fill on very wide screens) */
@media (min-width: 1200px) {
  .ra-dest-grid--full {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Legal pages (Privacy Policy, T&C) ──────────────────── */
.ra-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.ra-legal-content h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--ra-ocean);
  margin: 48px 0 12px;
}

.ra-legal-content h2:first-child {
  margin-top: 0;
}

.ra-legal-content p,
.ra-legal-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ra-text);
  opacity: 0.8;
}

.ra-legal-content ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.ra-legal-content li {
  margin-bottom: 6px;
}

.ra-legal-content strong {
  color: var(--ra-ocean);
  opacity: 1;
  font-weight: 600;
}

/* ── Footer legal links ─────────────────────────────────── */
.ra-footer-legal {
  text-align: center;
  padding: 12px 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  opacity: 0.4;
  margin-top: 10px;
}

.ra-footer-legal a {
  color: #020102;
  text-decoration: none;
  transition: opacity .2s;
}

.ra-footer-legal a:hover {
  opacity: 0.7;
}

.ra-footer-legal span {
  color: #020102;
}

/* ── Cookie consent banner ───────────────────────────────── */
.ra-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: min(560px, calc(100vw - 32px));
  background: var(--ra-ocean-deep);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .32);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
  opacity: 0;
}

.ra-cookie-banner--show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.ra-cookie-banner--hide {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}

.ra-cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  flex-wrap: wrap;
}

.ra-cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin: 0;
}

.ra-cookie-text a {
  color: var(--ra-accent);
  text-decoration: underline;
}

.ra-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ra-cookie-decline {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.ra-cookie-decline:hover {
  border-color: rgba(255, 255, 255, .6);
  color: var(--ra-white);
}

.ra-cookie-accept {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  background: var(--ra-accent);
  color: var(--ra-ocean-deep);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.ra-cookie-accept:hover {
  background: #e8b97a;
}

/* ── Stories (blog archive) ──────────────────────────────── */
.ra-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.ra-story-card {
  background: var(--ra-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 30, 60, .06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ra-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 30, 60, .12);
}

.ra-story-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ra-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ra-story-card:hover .ra-story-thumb img {
  transform: scale(1.04);
}

.ra-story-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ra-story-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.ra-story-title a {
  color: var(--ra-ocean);
  text-decoration: none;
}

.ra-story-title a:hover {
  color: var(--ra-coral);
}

.ra-story-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ra-text);
  opacity: 0.72;
  margin: 0;
  flex: 1;
}

.ra-text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ra-coral);
  text-decoration: none;
  letter-spacing: .02em;
  margin-top: 4px;
}

.ra-text-link:hover {
  color: var(--ra-ocean);
}

/* Pagination */
.ra-pagination {
  margin-top: 64px;
  text-align: center;
}

.ra-pagination .nav-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.ra-pagination a,
.ra-pagination span {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ra-ocean);
  border: 1.5px solid rgba(0, 66, 130, .2);
}

.ra-pagination a:hover {
  background: var(--ra-ocean);
  color: var(--ra-white);
  border-color: var(--ra-ocean);
}

.ra-pagination .current {
  background: var(--ra-ocean);
  color: var(--ra-white);
  border-color: var(--ra-ocean);
}

/* ============================================================ ABOUT US */
.ra-about-section {
  background: #0A2235;
  color: #E9DFD2;
}

.ra-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: stretch;
}
@media (min-width: 960px) {
  .ra-about { grid-template-columns: 5fr 7fr; gap: 96px; }
}

/* ---- LEFT: media + badge ---- */
.ra-about-media {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
}
.ra-about-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1A4665 0%, #0C2A3D 100%);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.ra-about-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.ra-about-media:hover .ra-about-media-frame img { transform: scale(1.04); }

.ra-about-media-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  color: rgba(233, 223, 210, .22);
}
.ra-about-media-placeholder svg { width: 72px; height: 72px; }
.ra-about-media-placeholder-text {
  font-family: var(--ra-font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .04em;
}

/* Circular "Born & Raised" badge */
.ra-about-badge {
  position: absolute;
  right: -8px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(160deg, #D89A77 0%, #B5694C 100%);
  color: #2A1410;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 18px 32px -12px rgba(0,0,0,.45);
}
@media (min-width: 600px) {
  .ra-about-badge { width: 152px; height: 152px; right: -22px; bottom: -22px; }
}
.ra-about-badge-strong {
  font-family: var(--ra-font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  letter-spacing: .01em;
}
.ra-about-badge-thin {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .85;
}

/* ---- RIGHT: content ---- */
.ra-about-content {
  color: #E9DFD2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.ra-about-content > * + * { margin-top: 22px; }

.ra-about-eyebrow {
  color: #D89A77 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.ra-about-quote {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  font-family: var(--ra-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: #F1E7DA;
  letter-spacing: -0.005em;
  max-width: 38ch;
}

.ra-about-desc { max-width: 56ch; }
.ra-about-desc p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(233, 223, 210, .78);
}
.ra-about-desc p:last-child { margin-bottom: 0; }

.ra-about-signature {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}
.ra-about-name {
  font-family: var(--ra-font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: #F1E7DA;
}
.ra-about-role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #D89A77;
}

.ra-about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  margin-top: auto;
  padding-top: 40px;
}
@media (min-width: 960px) {
  .ra-about-pillars { padding-top: 56px; }
}
.ra-about-pillar {
  display: flex; align-items: center; gap: 12px;
  flex: 1 1 140px;
  min-width: 0;
}
.ra-about-pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  flex-shrink: 0;
}
.ra-about-pillar-icon svg { width: 22px; height: 22px; }
.ra-about-pillar-icon.is-leaf { color: #7FB069; }
.ra-about-pillar-icon.is-gem  { color: #E8C265; }
.ra-about-pillar-icon.is-home { color: #EAE0D2; }

.ra-about-pillar-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #E9DFD2;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .ra-about-pillars { gap: 18px 24px; }
  .ra-about-pillar { flex: 1 1 100%; }
}

/* ============================================================ EXPEDITION DETAILS */
.ra-detail-heading {
  font-family: var(--ra-font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--ra-ocean-deep);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

/* --- Quick Facts grid --- */
.ra-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 36px;
  padding: 24px;
  background: rgba(26, 77, 107, .04);
  border: 1px solid rgba(26, 77, 107, .08);
  border-radius: var(--ra-radius-sm);
}
@media (min-width: 700px) {
  .ra-quick-facts { grid-template-columns: repeat(4, 1fr); }
}
.ra-qf-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ra-coral);
  margin-bottom: 6px;
}
.ra-qf-value {
  font-family: var(--ra-font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ra-ocean-deep);
  line-height: 1.25;
}

/* --- Itinerary timeline --- */
.ra-itinerary { margin: 48px 0; }
.ra-itinerary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.ra-itinerary-list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ra-accent), rgba(212, 163, 115, 0));
}
.ra-itinerary-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
}
.ra-itinerary-item:last-child { padding-bottom: 0; }
.ra-itinerary-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ra-ocean);
  color: var(--ra-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--ra-sand);
}
.ra-itinerary-body { padding-top: 6px; }
.ra-itinerary-title {
  font-family: var(--ra-font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ra-ocean-deep);
  margin: 0 0 6px;
  line-height: 1.3;
}
.ra-itinerary-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26, 77, 107, .78);
  margin: 0;
  max-width: 62ch;
}

/* --- Inclusions / Exclusions --- */
.ra-inex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 48px 0;
  padding: 32px;
  background: var(--ra-white);
  border-radius: var(--ra-radius-sm);
  border: 1px solid rgba(26, 77, 107, .08);
}
@media (min-width: 720px) {
  .ra-inex { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.ra-inex .ra-detail-heading { font-size: 22px; margin-bottom: 18px; }
.ra-inex-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ra-inex-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ra-ocean);
  border-bottom: 1px solid rgba(26, 77, 107, .06);
}
.ra-inex-list li:last-child { border-bottom: 0; }
.ra-inex-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ra-inex-incl svg { color: #4F9D69; }
.ra-inex-excl svg { color: #C56E5A; }
.ra-inex-excl li { color: rgba(26, 77, 107, .65); }