:root {
  --rb-cream: #f5f0e8;
  --rb-paper: #fefcf9;
  --rb-ink: #1c1c1c;
  --rb-forest: #1c1e1a;
  --rb-terra: #b85c38;
  --rb-terra-dark: #a04e30;
  --rb-muted: #6b635b;
  --rb-stone: #9a9189;
  --rb-line: #d8cfc4;
  --rb-white: #ffffff;
  --rb-serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --rb-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --rb-wrap: 1200px;
  --rb-gutter: clamp(20px, 4vw, 48px);
  --rb-radius: 8px;
}

.rb-wrap {
  width: min(var(--rb-wrap), 100% - var(--rb-gutter) * 2);
  margin-inline: auto;
}

.rb-section {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--rb-cream);
}

.rb-kicker {
  font-family: var(--rb-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rb-terra);
  margin: 0 0 16px;
}

.rb-kicker--light {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 5px;
  font-weight: 400;
  margin-bottom: 28px;
}

.rb-heading {
  font-family: var(--rb-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: var(--rb-ink);
  margin: 0;
  line-height: 1.1;
}

.rb-lead {
  font-family: var(--rb-sans);
  font-size: 15px;
  color: var(--rb-muted);
  line-height: 1.7;
  font-weight: 300;
  margin: 16px 0 0;
}

.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-family: var(--rb-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.rb-btn--primary {
  background: var(--rb-terra);
  color: var(--rb-white);
}

.rb-btn--primary:hover,
.rb-btn--primary:focus-visible {
  background: var(--rb-terra-dark);
  color: var(--rb-white);
}

.rb-btn--ghost {
  background: transparent;
  color: var(--rb-ink);
  border-color: var(--rb-line);
}

.rb-btn--ghost-light {
  background: transparent;
  color: var(--rb-white);
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.rb-btn--ghost-light:hover,
.rb-btn--ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--rb-white);
}

.rb-btn--block {
  width: 100%;
  margin-top: 8px;
}

.rb-text-link {
  font-family: var(--rb-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rb-terra);
}

.rb-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--rb-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rb-white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Hero */
.rb-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--rb-white);
  isolation: isolate;
}

.rb-hero__media,
.rb-hero__shade {
  position: absolute;
  inset: 0;
}

.rb-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rb-hero__shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.55) 100%);
}

.rb-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--rb-gutter);
  max-width: 800px;
}

.rb-hero__title {
  font-family: var(--rb-serif);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0;
  text-wrap: balance;
  color: var(--rb-white);
}

.rb-hero__text {
  font-family: var(--rb-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin: 32px auto 0;
  max-width: 440px;
  line-height: 1.75;
  font-weight: 300;
}

.rb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.rb-hero__discover {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--rb-sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .rb-hero__discover {
    animation: rb-float 3s ease-in-out infinite;
  }
}

@keyframes rb-float {
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Experiences */
.rb-experiences__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.rb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rb-tab {
  font-family: var(--rb-sans);
  font-size: 12px;
  letter-spacing: 0.3px;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--rb-muted);
  border: 1px solid var(--rb-line);
  font-weight: 400;
}

.rb-tab.is-active,
.rb-tab:hover,
.rb-tab:focus-visible {
  background: var(--rb-terra);
  color: var(--rb-white);
  border-color: var(--rb-terra);
  font-weight: 500;
}

.rb-experiences__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rb-trip {
  display: flex;
  flex-direction: column;
  border-radius: var(--rb-radius);
  overflow: hidden;
  background: var(--rb-paper);
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rb-trip:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
}

.rb-trip.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 420px;
}

.rb-trip.is-featured:hover {
  transform: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

.rb-trip__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.rb-trip.is-featured .rb-trip__media {
  aspect-ratio: auto;
  min-height: 420px;
}

.rb-trip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rb-trip:hover .rb-trip__img {
  transform: scale(1.04);
}

.rb-trip__body {
  padding: 24px 24px 28px;
}

.rb-trip.is-featured .rb-trip__body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rb-trip__title {
  font-family: var(--rb-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--rb-ink);
  margin: 0 0 8px;
  line-height: 1.2;
}

.rb-trip.is-featured .rb-trip__title {
  font-size: 36px;
  margin-bottom: 16px;
}

.rb-trip__desc {
  font-family: var(--rb-sans);
  font-size: 13px;
  color: var(--rb-muted);
  margin: 0 0 18px;
  line-height: 1.65;
  font-weight: 300;
}

.rb-trip.is-featured .rb-trip__desc {
  font-size: 14px;
  margin-bottom: 32px;
}

.rb-trip__meta {
  display: flex;
  gap: 32px;
  margin: 0 0 36px;
}

.rb-trip__meta dt {
  font-family: var(--rb-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rb-stone);
  margin: 0 0 6px;
}

.rb-trip__meta dd {
  font-family: var(--rb-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--rb-ink);
  margin: 0;
}

.rb-trip__foot {
  font-family: var(--rb-sans);
  font-size: 12px;
  color: var(--rb-stone);
  margin: 0;
}

.rb-trip[hidden] {
  display: none !important;
}

/* Destinations */
.rb-destinations {
  padding-top: 0;
}

.rb-destinations__head {
  margin-bottom: 56px;
}

.rb-destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rb-dest {
  position: relative;
  border-radius: var(--rb-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: var(--rb-white);
  text-decoration: none;
  display: block;
}

.rb-dest__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.rb-dest:hover .rb-dest__img {
  transform: scale(1.06);
}

.rb-dest__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.rb-dest__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.rb-dest__kicker {
  font-family: var(--rb-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.rb-dest__title {
  font-family: var(--rb-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.rb-dest__count {
  font-family: var(--rb-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* Social proof */
.rb-proof {
  background: var(--rb-forest);
  position: relative;
}

.rb-proof__inner {
  width: min(800px, 100% - var(--rb-gutter) * 2);
  margin: 0 auto;
  text-align: center;
}

.rb-proof__ornament {
  color: rgba(184, 92, 56, 0.5);
  margin-bottom: 40px;
}

.rb-proof__quote p {
  font-family: var(--rb-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0 0 32px;
}

.rb-proof__author {
  font-family: var(--rb-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
}

.rb-proof__role {
  font-family: var(--rb-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

.rb-proof__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px 64px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rb-proof__value {
  font-family: var(--rb-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--rb-terra);
  margin: 0 0 6px;
}

.rb-proof__label {
  font-family: var(--rb-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.rb-proof__press {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--rb-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.rb-proof__press span:not(.rb-proof__rule) {
  font-family: var(--rb-serif);
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
}

.rb-proof__rule {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
}

/* Inquiry */
.rb-inquiry {
  background: var(--rb-paper);
}

.rb-inquiry__inner {
  width: min(680px, 100% - var(--rb-gutter) * 2);
  margin: 0 auto;
  text-align: center;
}

.rb-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-top: 48px;
}

.rb-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rb-form label span,
.rb-form > label > span {
  font-family: var(--rb-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rb-stone);
  display: block;
  margin-bottom: 8px;
}

.rb-form input,
.rb-form select,
.rb-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rb-line);
  border-radius: 4px;
  font-family: var(--rb-sans);
  font-size: 16px;
  color: var(--rb-ink);
  background: var(--rb-white);
  outline: none;
}

.rb-form input:focus,
.rb-form select:focus,
.rb-form textarea:focus {
  border-color: var(--rb-terra);
}

.rb-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239A9189' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.rb-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.rb-form__error {
  color: #9b1c1c;
  font-family: var(--rb-sans);
  font-size: 14px;
}

.rb-inquiry__success .rb-heading {
  margin-top: 24px;
}

.rb-section-header {
  margin-bottom: 32px;
}

@media (max-width: 980px) {
  .rb-experiences__cards,
  .rb-destinations__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rb-trip.is-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rb-experiences__cards,
  .rb-destinations__grid,
  .rb-form__row {
    grid-template-columns: 1fr;
  }

  .rb-trip.is-featured .rb-trip__body {
    padding: 28px 22px;
  }

  .rb-hero {
    min-height: 92svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rb-trip,
  .rb-trip__img,
  .rb-dest__img,
  .rb-hero__discover {
    transition: none;
    animation: none;
  }
}
