/* RM Travel - Global Styles (Audley/Kensington-inspired) */

:root{
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5a5f66;
  --line: #e7e7ea;

  --brand: #c45500;           /* primary brand color (can be updated later) */
  --brand-soft: #f5f5f7;      /* subtle background */

  --cta: #c45500;             /* primary button bg */
  --cta-ink: #ffffff;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --max: 1180px;
  --pad: 24px;

  --h1: clamp(2.2rem, 3.5vw, 3.4rem);
  --h2: clamp(1.6rem, 2.4vw, 2.2rem);
  --h3: 1.25rem;
  --p: 1.02rem;
  --small: .92rem;

  --lh: 1.55;
  --ls-tight: -0.02em;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: var(--lh);
}

img{ max-width: 100%; height: auto; display:block; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

.container{
  width: min(var(--max), 100% - (var(--pad) * 2));
  margin-inline: auto;
}

.section{
  padding: 64px 0;
}

.section--tight{ padding: 44px 0; }

.eyebrow{
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1{
  font-size: var(--h1);
  line-height: 1.08;
  letter-spacing: var(--ls-tight);
  margin: 12px 0 14px;
}

h2{
  font-size: var(--h2);
  line-height: 1.15;
  letter-spacing: var(--ls-tight);
  margin: 0 0 10px;
}

h3{
  font-size: var(--h3);
  margin: 0 0 8px;
}

p{
  font-size: var(--p);
  color: var(--muted);
  margin: 0 0 16px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.10); }

.btn--primary{
  background: var(--cta);
  color: var(--cta-ink);
  border-color: var(--cta);
}

.btn--ghost{
  background: transparent;
  border-color: var(--line);
}

.btn-row{ display:flex; gap: 12px; flex-wrap: wrap; }

/* Cards / Grids */
.grid{
  display:grid;
  gap: 18px;
}

 .grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
}

.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-4, .grid-3{ grid-template-columns: 1fr; }
}



.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  box-shadow: none;
  transition: transform .14s ease, box-shadow .14s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }

.card__img{
  aspect-ratio: 16/10;
  background: var(--brand-soft);
}

.region-grid .card__img{
  height: clamp(160px, 18vw, 220px);
}

.card__body{
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card__meta{ font-size: .9rem; color: var(--muted); }

.card--darktext{
  color: #ffffff;
}
.card--darktext .card__meta{
  color: rgba(255,255,255,.85);
}

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:baseline;
  gap: 12px;
  white-space: nowrap;
}

.brand__name{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.18rem;
}

.brand__tag{
  font-size: .92rem;
  color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a{
  font-size: .96rem;
  color: var(--ink);
  opacity: .86;
}

.nav a:hover{ opacity: 1; }

.nav-cta{ margin-left: 8px; }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media{
  min-height: 25vh;
  background: var(--brand-soft);
  display:flex;
  align-items: stretch;
  justify-content: stretch;
}

.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.10) 55%, rgba(255,255,255,.00) 100%);
}

.hero__content{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:flex-start;
  padding: clamp(24px, 7vh, 72px) 0 0;
}

.hero__panel{
  width: min(720px, 100%);
  color: #fff;
}

.hero__panel p{ color: rgba(255,255,255,.85); max-width: 54ch; }
.hero__panel .eyebrow{ color: rgba(255,255,255,.78); }

.hero__kpis{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 clamp(18px, 4vh, 36px);
}

.hero__kpis .kpi{
  background: #111111;
  color: #ffffff;
  border-color: rgba(255,255,255,.12);
}

.hero__kpis .kpi span{
  color: rgba(255,255,255,.75);
}

/* Feature band */
.band{
  background: var(--brand-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kpi{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}
.kpi strong{ display:block; font-size: 1.12rem; }
.kpi span{ color: var(--muted); font-size: .95rem; }

@media (max-width: 820px){
  .kpis{ grid-template-columns: 1fr; }
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 820px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-links a{ display:block; color: var(--muted); padding: 6px 0; }
.footer-links a:hover{ color: var(--ink); }

/* Basic layout */
:root {
  --maxw: 1200px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 260px;
}

.brand{
  transform: scale(1.5);
  transform-origin: left center;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.1;
   font-size: 1.75rem;
}

.brand-tagline {
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.2;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.12);
}

.btn-primary {
  border-color: rgba(0,0,0,0.12);
}
/* ---------- Editorial (magazine-like) destination cards ---------- */

.editorial-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 980px){
  .editorial-grid{ grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 620px){
  .editorial-grid{ grid-template-columns: 1fr; }
}

.dest-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  box-shadow: none;
  border: 0;
  background: #eee;
  transition: transform .16s ease, box-shadow .16s ease;
}

.dest-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

.dest-card__img{
  position: absolute;
  inset: 0;
}

.dest-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.dest-card:hover .dest-card__img img{
  transform: scale(1.06);
}

/* soft editorial overlay */
.dest-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.30) 55%,
    rgba(0,0,0,.72) 100%
  );
}

.dest-card__content{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
}

.dest-card__title{
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.dest-card__meta{
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  margin: 0 0 12px;
}

.dest-card__pillrow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  backdrop-filter: blur(8px);
}

/* layout sizing for magazine rhythm */
.span-6{ grid-column: span 6; }
.span-4{ grid-column: span 4; }
.span-8{ grid-column: span 8; }

@media (max-width: 980px){
  .span-8{ grid-column: span 6; }
  .span-6{ grid-column: span 6; }
  .span-4{ grid-column: span 6; }
}
@media (max-width: 620px){
  .span-8, .span-6, .span-4{ grid-column: 1 / -1; }
  .dest-card{ min-height: 260px; }
}

.dest-card__overlay{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.12) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.75) 100%
  );
}

.pill{
  transition: background .2s ease, border-color .2s ease;
}
.dest-card:hover .pill{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
}
/* ---------- Cinematic destination hero ---------- */

.dest-hero{
  position: relative;
  min-height: 72vh;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.dest-hero__img{
  position: absolute;
  inset: 0;
}

.dest-hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-hero__shade{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 22% 72%, rgba(0,0,0,.65), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.65) 100%);
}

.dest-hero__content{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 64px;
}

.dest-hero__panel{
  width: min(760px, 100%);
  color: #fff;
}

.dest-hero__panel .eyebrow{ color: rgba(255,255,255,.82); }
.dest-hero__panel p{ color: rgba(255,255,255,.86); max-width: 56ch; }

.dest-hero__panel h1{
  margin-bottom: 10px;
}

/* ---------- Editorial feature blocks ---------- */

.feature-row{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px){
  .feature-row{ grid-template-columns: 1fr; }
}

.feature{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.feature__media{
  aspect-ratio: 16/10;
  background: var(--brand-soft);
}

.feature__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__body{
  padding: 18px;
}

.feature__title{
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.feature__desc{
  margin: 0 0 14px;
  color: var(--muted);
}

.link-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mini{
  font-size: .92rem;
  color: var(--muted);
}
/* ---------- Trip detail layout ---------- */

.trip-hero{
  position: relative;
  min-height: 66vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.trip-hero__img{
  position: absolute;
  inset: 0;
}

.trip-hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-hero__shade{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 22% 74%, rgba(0,0,0,.62), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.65) 100%);
}

.trip-hero__content{
  position: relative;
  min-height: 66vh;
  display:flex;
  align-items:flex-end;
  padding: 0 0 54px;
}

.trip-hero__panel{
  width: min(760px, 100%);
  color: #fff;
}

.trip-hero__panel .eyebrow{ color: rgba(255,255,255,.82); }
.trip-hero__panel p{ color: rgba(255,255,255,.86); max-width: 62ch; }

.tag-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  backdrop-filter: blur(8px);
}

/* Quick facts */
.facts{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.fact{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.fact strong{
  display:block;
  font-size: 1.05rem;
}
.fact span{
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 980px){
  .facts{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px){
  .facts{
    grid-template-columns: 1fr;
  }
}


/* ---------- Trip detail helpers ---------- */
.trip-shell{
  display:grid;
  grid-template-columns: 1.1fr 0.45fr;
  gap: 24px;
  align-items:start;
}
@media (max-width: 980px){
  .trip-shell{ grid-template-columns: 1fr; }
}

.rail{
  position: sticky;
  top: 110px;
  align-self:start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}
@media (max-width: 980px){
  .rail{ position: static; }
}

.hr{
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.timeline{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.step{
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{
  margin: 6px 0;
}

.mobile-cta{
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px 0;
  display: none;
  z-index: 40;
}
@media (max-width: 820px){
  .mobile-cta{ display: block; }
}



/* Launch mode helpers */
.is-disabled{
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-tag{
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: var(--muted);
}

.payment-shell,
.coming-soon-shell{
  max-width: 780px;
}

.payment-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.payment-card h2{
  margin-top: 0;
}

.payment-options{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .payment-options{ grid-template-columns: 1fr; }
}

.payment-options--two{
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px){
  .payment-options--two{ grid-template-columns: 1fr; }
}

.payment-option{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.payment-option h2{
  margin-top: 0;
}

.payment-option .btn{
  margin-top: auto;
  align-self: flex-start;
}
