/* =========================================================
   REGENT PARLOUR — style.css
   ========================================================= */

/* ---------------------------------------------------------
   1. VARIABLES & RESET
   --------------------------------------------------------- */
:root {
  --navy:          #1b2d52;
  --navy-mid:      #243868;
  --navy-light:    #2f4880;
  --sage:          #6d9278;
  --sage-light:    #9cb8a5;
  --sage-pale:     #dde9e2;
  --ivory:         #f8f3eb;
  --ivory-dark:    #ede5d6;
  --gold:          #c4a346;
  --gold-light:    #dfc278;
  --gold-pale:     #f5eac8;
  --rosewood:      #7b4343;
  --rosewood-light:#a06060;
  --taupe:         #b0a090;
  --taupe-light:   #d6cfc6;
  --white:         #ffffff;
  --dark:          #0f1823;
  --text:          #2c3548;
  --text-mid:      #4a5568;
  --text-light:    #718096;

  --font-head:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:       1280px;
  --max-w-mid:   960px;
  --max-w-sm:    720px;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 5rem;
  --sp-7: 8rem;

  --radius:     6px;
  --radius-lg:  14px;

  --trans:      0.28s ease;
  --shadow:     0 2px 12px rgba(27,45,82,0.09);
  --shadow-md:  0 6px 28px rgba(27,45,82,0.12);
  --shadow-lg:  0 12px 48px rgba(27,45,82,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ---------------------------------------------------------
   2. TYPOGRAPHY
   --------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.rp-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--sp-2);
}

.rp-label--sage { color: var(--sage); }
.rp-label--navy { color: var(--navy); }
.rp-label--ivory { color: var(--ivory); opacity: 0.7; }

.rp-italic {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15em;
}

/* ---------------------------------------------------------
   3. LAYOUT UTILITIES
   --------------------------------------------------------- */
.rp-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
.rp-container--mid { max-width: var(--max-w-mid); }
.rp-container--sm  { max-width: var(--max-w-sm); }

.rp-section { padding-block: var(--sp-6); }
.rp-section--xl { padding-block: var(--sp-7); }
.rp-section--sm { padding-block: var(--sp-5); }

.rp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.rp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.rp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }

.rp-flex { display: flex; align-items: center; }
.rp-flex--gap { gap: var(--sp-3); }

.rp-text-center { text-align: center; }
.rp-text-right  { text-align: right; }

.rp-mt-1 { margin-top: var(--sp-1); }
.rp-mt-2 { margin-top: var(--sp-2); }
.rp-mt-3 { margin-top: var(--sp-3); }
.rp-mt-4 { margin-top: var(--sp-4); }
.rp-mb-2 { margin-bottom: var(--sp-2); }
.rp-mb-3 { margin-bottom: var(--sp-3); }
.rp-mb-4 { margin-bottom: var(--sp-4); }

.rp-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-block: var(--sp-3);
}
.rp-divider--center { margin-inline: auto; }
.rp-divider--ivory  { background: rgba(248,243,235,0.35); }

.rp-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Fade-in on scroll */
.rp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.rp-reveal--delay-1 { transition-delay: 0.1s; }
.rp-reveal--delay-2 { transition-delay: 0.2s; }
.rp-reveal--delay-3 { transition-delay: 0.3s; }
.rp-reveal--delay-4 { transition-delay: 0.4s; }

/* ---------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------- */
.rp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}

.rp-btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.rp-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,163,70,0.35);
}

.rp-btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.rp-btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.rp-btn--ivory {
  background: var(--white);
  color: var(--navy);
}
.rp-btn--ivory:hover {
  background: var(--ivory);
  transform: translateY(-1px);
}

.rp-btn--outline-ivory {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.rp-btn--outline-ivory:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.rp-btn--ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.rp-btn--ghost::after { content: ' →'; transition: var(--trans); }
.rp-btn--ghost:hover::after { letter-spacing: 0.04em; }

.rp-btn-group { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* ---------------------------------------------------------
   5. COOKIE CONSENT
   --------------------------------------------------------- */
.rp-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.rp-cookie.is-visible { transform: translateY(0); }

.rp-cookie__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.rp-cookie__text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  min-width: 240px;
}
.rp-cookie__text a {
  color: var(--gold-light);
  text-decoration: underline;
}
.rp-cookie__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.rp-cookie__accept {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--trans);
}
.rp-cookie__accept:hover { background: var(--gold-light); }
.rp-cookie__decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--trans);
}
.rp-cookie__decline:hover { color: var(--white); }

/* ---------------------------------------------------------
   6. HEADER
   --------------------------------------------------------- */
.rp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.2rem;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.rp-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding-block: 0.85rem;
}
.rp-header__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.rp-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--trans);
}
.rp-logo__img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}
.rp-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.rp-logo__sub {
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}
.rp-header.is-scrolled .rp-logo { color: var(--navy); }
.rp-header.is-scrolled .rp-logo__sub { color: var(--gold); }

.rp-nav { display: flex; align-items: center; gap: 0.25rem; }
.rp-nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.rp-nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.rp-header.is-scrolled .rp-nav__link { color: var(--text-mid); }
.rp-header.is-scrolled .rp-nav__link:hover { color: var(--navy); background: var(--ivory); }

.rp-header__cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
}
.rp-header__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Burger */
.rp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px;
}
.rp-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.rp-header.is-scrolled .rp-burger span { background: var(--navy); }
.rp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rp-burger.is-open span:nth-child(2) { opacity: 0; }
.rp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.rp-nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.rp-nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.rp-nav-mobile__link {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--trans);
}
.rp-nav-mobile__link:hover { color: var(--gold-light); }
.rp-nav-mobile__cta {
  margin-top: var(--sp-3);
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------
   7. HERO
   --------------------------------------------------------- */
.rp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.rp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 35, 0.65);
}
.rp-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(196,163,70,0.025) 30px,
      rgba(196,163,70,0.025) 31px
    );
}
.rp-hero__ornament {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border: 1px solid rgba(196,163,70,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.rp-hero__ornament::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(196,163,70,0.08);
  border-radius: 50%;
}
.rp-hero__ornament::after {
  content: '';
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(196,163,70,0.05);
  border-radius: 50%;
}

.rp-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--sp-7) + 4rem) var(--sp-4) var(--sp-7);
  max-width: 760px;
}

.rp-hero__tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}
.rp-hero__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.rp-hero__tag-dot {
  color: rgba(196,163,70,0.4);
  margin-inline: 0.1rem;
}

.rp-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.rp-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.rp-hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  max-width: 580px;
  font-weight: 300;
}

.rp-hero__atmosphere {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rp-hero__atm-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---------------------------------------------------------
   8. IDENTITY BLOCK
   --------------------------------------------------------- */
.rp-identity {
  background: var(--ivory);
  padding-block: var(--sp-7);
}
.rp-identity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.rp-identity__left {}
.rp-identity__statement {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: var(--sp-3);
}
.rp-identity__statement em {
  font-style: italic;
  color: var(--gold);
}
.rp-identity__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
}
.rp-identity__note {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: var(--sp-3);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: var(--sp-3);
}
.rp-identity__note-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

.rp-identity__right {}
.rp-identity__panel {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 7rem;
}
.rp-identity__panel-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-3);
}
.rp-identity__panel-heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: var(--sp-3);
}
.rp-identity__panel-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.rp-identity__qualities {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.rp-identity__quality {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.rp-identity__quality-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.rp-identity__quality-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.rp-identity__quality-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ---------------------------------------------------------
   9. EXPERIENCE SHOWCASE
   --------------------------------------------------------- */
.rp-experiences { background: var(--white); padding-block: var(--sp-7); }

.rp-exp-header { text-align: center; margin-bottom: var(--sp-6); }
.rp-exp-header h2 { color: var(--navy); }

/* Module 1: Wide Split - Poker */
.rp-exp-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  min-height: 480px;
}
.rp-exp-split--reverse { direction: rtl; }
.rp-exp-split--reverse > * { direction: ltr; }

.rp-exp-split__img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.rp-exp-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rp-exp-split:hover .rp-exp-split__img img { transform: scale(1.03); }
.rp-exp-split__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ivory-dark) 100%);
}
.rp-exp-split--reverse .rp-exp-split__img-overlay {
  background: linear-gradient(to left, transparent 60%, var(--ivory-dark) 100%);
}

.rp-exp-split__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rp-exp-split--reverse .rp-exp-split__body {
  padding: var(--sp-5) var(--sp-4) var(--sp-5) var(--sp-5);
}
.rp-exp-split__number {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.rp-exp-split__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: var(--sp-1);
}
.rp-exp-split__mood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-3);
}
.rp-exp-split__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.rp-exp-split__occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-3);
}
.rp-exp-split__occ-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--taupe-light);
}

/* Module 2: Editorial - Blackjack */
.rp-exp-editorial {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.rp-exp-editorial__img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.rp-exp-editorial__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.85);
  transition: transform 0.6s ease;
}
.rp-exp-editorial:hover .rp-exp-editorial__img img { transform: scale(1.04); }
.rp-exp-editorial__body {
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
}
.rp-exp-editorial__number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.rp-exp-editorial__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--white);
  font-weight: 300;
}
.rp-exp-editorial__mood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}
.rp-exp-editorial__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.rp-exp-editorial__occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rp-exp-editorial__occ-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Module 3: Atmosphere Band - Roulette */
.rp-exp-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  min-height: 380px;
}
.rp-exp-band__img {
  position: absolute;
  inset: 0;
}
.rp-exp-band__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rp-exp-band:hover .rp-exp-band__img img { transform: scale(1.03); }
.rp-exp-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,18,33,0.88) 0%,
    rgba(11,18,33,0.65) 50%,
    rgba(11,18,33,0.25) 100%
  );
}
.rp-exp-band__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6) var(--sp-6);
  max-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}
.rp-exp-band__number {
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.rp-exp-band__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: var(--sp-1);
}
.rp-exp-band__mood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-3);
}
.rp-exp-band__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: var(--sp-3);
  max-width: 480px;
}
.rp-exp-band__occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rp-exp-band__occ-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Module 4: Stacked Detail - Dice */
.rp-exp-stacked {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rp-exp-stacked__img {
  overflow: hidden;
  min-height: 360px;
}
.rp-exp-stacked__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rp-exp-stacked:hover .rp-exp-stacked__img img { transform: scale(1.04); }
.rp-exp-stacked__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rp-exp-stacked__top {}
.rp-exp-stacked__number {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--rosewood-light);
  opacity: 0.2;
  line-height: 1;
}
.rp-exp-stacked__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: var(--sp-1);
}
.rp-exp-stacked__mood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rosewood);
  margin-bottom: var(--sp-3);
}
.rp-exp-stacked__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.rp-exp-stacked__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.rp-exp-stacked__detail {
  padding: var(--sp-2);
  background: var(--white);
  border-radius: var(--radius);
}
.rp-exp-stacked__detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.25rem;
}
.rp-exp-stacked__detail-val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

/* ---------------------------------------------------------
   10. TESTIMONIAL BANDS
   --------------------------------------------------------- */
.rp-testimonial-band {
  background: var(--navy);
  padding: var(--sp-6) var(--sp-4);
}
.rp-testimonial-band__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.rp-testimonial-band__quote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}
.rp-testimonial-band__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
}
.rp-testimonial-band__role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

/* Inline testimonials */
.rp-testimonial-inline {
  background: var(--ivory);
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ivory-dark);
}
.rp-testimonial-inline__quote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: var(--sp-2);
}
.rp-testimonial-inline__author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.rp-testimonial-inline__role {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ---------------------------------------------------------
   11. OCCASION TYPES
   --------------------------------------------------------- */
.rp-occasions { background: var(--white); padding-block: var(--sp-7); }
.rp-occasions__header { margin-bottom: var(--sp-6); }
.rp-occasions__header h2 { color: var(--navy); }

/* Featured - Private Receptions */
.rp-occ-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.rp-occ-featured::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(196,163,70,0.1);
  border-radius: 50%;
}
.rp-occ-featured__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}
.rp-occ-featured__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}
.rp-occ-featured__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.rp-occ-featured__panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,163,70,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.rp-occ-featured__panel-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}
.rp-occ-featured__panel-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rp-occ-featured__panel-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1rem;
  position: relative;
}
.rp-occ-featured__panel-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

/* Split - Wedding */
.rp-occ-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  align-items: stretch;
}
.rp-occ-split__card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rp-occ-split__card--accent { background: var(--sage-pale); }
.rp-occ-split__img {
  height: 220px;
  overflow: hidden;
}
.rp-occ-split__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 300;
  color: var(--taupe);
  background: var(--ivory-dark);
}
.rp-occ-split__body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.rp-occ-split__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-1);
}
.rp-occ-split__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: var(--sp-2);
}
.rp-occ-split__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: var(--sp-3);
  flex: 1;
}
.rp-occ-split__note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--taupe-light);
  padding-top: var(--sp-2);
}

/* Comparison strip - Corporate + Birthday */
.rp-occ-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.rp-occ-strip__item {
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--taupe-light);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: var(--trans);
}
.rp-occ-strip__item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.rp-occ-strip__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.rp-occ-strip__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 400;
}
.rp-occ-strip__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.rp-occ-strip__ideal {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  font-style: italic;
}

/* Recommendation tiles - Boutique + Social */
.rp-occ-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.rp-occ-tile {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.rp-occ-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rp-occ-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.rp-occ-tile__eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: var(--sp-1);
}
.rp-occ-tile__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: var(--sp-2);
}
.rp-occ-tile__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}
.rp-occ-tile__package {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rp-occ-tile__package::before {
  content: '◆';
  font-size: 0.5rem;
}

/* ---------------------------------------------------------
   12. WHAT SHAPES THE EXPERIENCE
   --------------------------------------------------------- */
.rp-shapes {
  background: var(--ivory);
  padding-block: var(--sp-7);
}
.rp-shapes__header { text-align: center; margin-bottom: var(--sp-6); }
.rp-shapes__header h2 { color: var(--navy); }

.rp-shapes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.rp-shape-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.rp-shape-item:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rp-shape-item:nth-child(2) { border-bottom-color: var(--sage); }
.rp-shape-item:nth-child(3) { border-bottom-color: var(--rosewood); }
.rp-shape-item:nth-child(4) { border-bottom-color: var(--navy); }
.rp-shape-item:nth-child(5) { border-bottom-color: var(--taupe); }
.rp-shape-item:nth-child(6) { border-bottom-color: var(--gold); }

.rp-shape-item__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.rp-shape-item__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: var(--sp-1);
}
.rp-shape-item__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.68;
}

/* ---------------------------------------------------------
   13. HOSTING PATH
   --------------------------------------------------------- */
.rp-path { background: var(--white); padding-block: var(--sp-7); }
.rp-path__header { text-align: center; margin-bottom: var(--sp-6); }
.rp-path__header h2 { color: var(--navy); }

.rp-path__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: var(--sp-3);
}
.rp-path__rail::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--taupe-light), var(--gold));
}

.rp-path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
}
.rp-path-step__marker {
  width: 4.4rem; height: 4.4rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.rp-path-step__num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
}
.rp-path-step__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
}
.rp-path-step__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   14. PACKAGES
   --------------------------------------------------------- */
.rp-packages { background: var(--ivory); padding-block: var(--sp-7); }
.rp-packages__header { text-align: center; margin-bottom: var(--sp-5); }
.rp-packages__header h2 { color: var(--navy); }

.rp-packages__strip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}
.rp-packages__strip-col {
  padding: var(--sp-3);
  text-align: center;
}
.rp-packages__strip-col:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rp-packages__strip-label {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0.25rem;
}
.rp-packages__strip-sub {
  font-size: 0.72rem;
  color: var(--gold-light);
  opacity: 0.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rp-packages__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.rp-pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border: 1px solid var(--taupe-light);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: var(--trans);
  position: relative;
}
.rp-pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.rp-pkg-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.02);
}
.rp-pkg-card--featured:hover { transform: scale(1.02) translateY(-3px); }

.rp-pkg-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.rp-pkg-card__name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.rp-pkg-card--featured .rp-pkg-card__name { color: var(--white); }

.rp-pkg-card__tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.2rem;
}
.rp-pkg-card--featured .rp-pkg-card__tagline { color: rgba(255,255,255,0.5); }

.rp-pkg-card__specs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.rp-pkg-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 0.85rem;
}
.rp-pkg-card--featured .rp-pkg-card__spec { border-bottom-color: rgba(255,255,255,0.1); }
.rp-pkg-card__spec-label { color: var(--text-light); }
.rp-pkg-card--featured .rp-pkg-card__spec-label { color: rgba(255,255,255,0.5); }
.rp-pkg-card__spec-val { font-weight: 600; color: var(--navy); }
.rp-pkg-card--featured .rp-pkg-card__spec-val { color: var(--gold-light); }

.rp-pkg-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rp-pkg-card__include {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.rp-pkg-card--featured .rp-pkg-card__include { color: rgba(255,255,255,0.7); }
.rp-pkg-card__include::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.rp-pkg-card--featured .rp-pkg-card__include::before { color: var(--gold-light); }

.rp-pkg-card__cta { margin-top: auto; }

/* ---------------------------------------------------------
   15. FINAL CTA
   --------------------------------------------------------- */
.rp-cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, #0e1c38 100%);
  padding-block: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.rp-cta-final::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(196,163,70,0.08);
  border-radius: 50%;
}
.rp-cta-final::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  border: 1px solid rgba(196,163,70,0.05);
  border-radius: 50%;
}
.rp-cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--sp-4);
}
.rp-cta-final h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}
.rp-cta-final h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.rp-cta-final__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.rp-cta-final__note {
  margin-top: var(--sp-3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

/* ---------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------- */
.rp-footer {
  background: var(--dark);
  color: var(--white);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-4);
}
.rp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-4);
}
.rp-footer__brand {}
.rp-footer__logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.rp-footer__logo-sub {
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.rp-footer__brand-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: var(--sp-2);
  max-width: 280px;
}
.rp-footer__contact {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rp-footer__contact-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.rp-footer__contact-item a { color: var(--gold-light); opacity: 0.8; }
.rp-footer__contact-item a:hover { opacity: 1; }

.rp-footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: var(--sp-2);
}
.rp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.rp-footer__link {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.rp-footer__link:hover { color: var(--white); }

.rp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.rp-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.rp-footer__legal {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.rp-footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--trans);
}
.rp-footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ---------------------------------------------------------
   17. INNER PAGE STYLES
   --------------------------------------------------------- */
.rp-page-hero {
  background: var(--navy);
  padding: calc(var(--sp-7) + 4rem) var(--sp-4) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(196,163,70,0.07) 0%, transparent 60%);
}
.rp-page-hero__inner { position: relative; z-index: 2; }
.rp-page-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: var(--sp-2);
}
.rp-page-hero h1 em { font-style: italic; color: var(--gold-light); }
.rp-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Breadcrumb */
.rp-breadcrumb {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--ivory-dark);
  margin-bottom: var(--sp-5);
}
.rp-breadcrumb__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
}
.rp-breadcrumb__link { color: var(--navy); transition: color var(--trans); }
.rp-breadcrumb__link:hover { color: var(--gold); }
.rp-breadcrumb__sep { color: var(--taupe); }

/* Experience inner page */
.rp-exp-detail {
  padding-block: var(--sp-6);
}
.rp-exp-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
  margin-bottom: var(--sp-5);
}
.rp-exp-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.rp-exp-detail__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.rp-exp-detail__body {}
.rp-exp-detail__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--navy);
  font-weight: 300;
  margin-bottom: var(--sp-1);
}
.rp-exp-detail__mood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-3);
}
.rp-exp-detail__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.rp-exp-detail__setup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.rp-exp-detail__setup-item {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
}
.rp-exp-detail__setup-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}
.rp-exp-detail__setup-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
}

/* Occasions inner page */
.rp-occ-detail {
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--ivory-dark);
}
.rp-occ-detail:last-child { border-bottom: none; }
.rp-occ-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.rp-occ-detail--reverse .rp-occ-detail__grid { direction: rtl; }
.rp-occ-detail--reverse .rp-occ-detail__grid > * { direction: ltr; }
.rp-occ-detail__body {}
.rp-occ-detail__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}
.rp-occ-detail__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  font-weight: 300;
  margin-bottom: var(--sp-2);
}
.rp-occ-detail__intro {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: var(--sp-3);
}
.rp-occ-detail__notes {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: var(--sp-3);
  margin-top: var(--sp-2);
}
.rp-occ-detail__notes-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-1);
}
.rp-occ-detail__notes-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}
.rp-occ-detail__visual {
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-occ-detail__visual-text {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 300;
  color: var(--taupe);
  opacity: 0.4;
  text-align: center;
  padding: var(--sp-4);
  line-height: 1.2;
}

/* Packages inner page */
.rp-pkg-full {
  padding-block: var(--sp-6);
}
.rp-pkg-full__header { text-align: center; margin-bottom: var(--sp-5); }
.rp-pkg-compare {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--taupe-light);
  margin-bottom: var(--sp-5);
}
.rp-pkg-compare__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ivory-dark);
}
.rp-pkg-compare__row:last-child { border-bottom: none; }
.rp-pkg-compare__row--head { background: var(--navy); }
.rp-pkg-compare__cell {
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-mid);
  border-right: 1px solid var(--ivory-dark);
  display: flex;
  align-items: center;
}
.rp-pkg-compare__cell:last-child { border-right: none; }
.rp-pkg-compare__row--head .rp-pkg-compare__cell {
  color: rgba(255,255,255,0.7);
  border-right-color: rgba(255,255,255,0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rp-pkg-compare__row--head .rp-pkg-compare__cell:nth-child(3) {
  color: var(--gold-light);
  font-weight: 700;
}
.rp-pkg-compare__cell--feat { font-weight: 600; color: var(--navy); }
.rp-pkg-compare__check { color: var(--sage); font-size: 1rem; }
.rp-pkg-compare__dash { color: var(--taupe); font-size: 0.8rem; }

/* About page */
.rp-about-story {
  padding-block: var(--sp-6);
}
.rp-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.rp-about-story__text {}
.rp-about-story__pull {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--navy);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}
.rp-about-story__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.rp-about-story__visual {
  position: relative;
}
.rp-about-story__block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  color: var(--white);
}
.rp-about-story__block-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: var(--sp-3);
}
.rp-about-story__values {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.rp-about-story__value {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.rp-about-story__value-line {
  width: 20px; height: 1px;
  background: var(--gold);
  margin-top: 0.65rem;
  flex-shrink: 0;
}
.rp-about-story__value-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.rp-about-story__value-text strong { color: var(--white); }

/* Hosting Notes / FAQ page */
.rp-notes { padding-block: var(--sp-6); }
.rp-accordion {}
.rp-accordion-item {
  border-bottom: 1px solid var(--ivory-dark);
}
.rp-accordion-item:first-child { border-top: 1px solid var(--ivory-dark); }
.rp-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.rp-accordion-btn__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
}
.rp-accordion-btn__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
  font-size: 1.1rem;
  color: var(--gold);
}
.rp-accordion-item.is-open .rp-accordion-btn__icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.rp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.rp-accordion-panel__inner {
  padding-bottom: var(--sp-3);
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}
.rp-accordion-panel__inner p { margin-bottom: 0.75em; }
.rp-accordion-panel__inner p:last-child { margin-bottom: 0; }

.rp-notes-section {
  margin-bottom: var(--sp-5);
}
.rp-notes-section__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-1);
  border-bottom: 2px solid var(--gold-pale);
}

/* Contact */
.rp-contact { padding-block: var(--sp-6); }
.rp-contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-5);
  align-items: start;
}
.rp-contact__info {}
.rp-contact__info-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--navy);
  font-weight: 300;
  margin-bottom: var(--sp-3);
}
.rp-contact__info-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: var(--sp-4);
}
.rp-contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.rp-contact__detail {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.rp-contact__detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 70px;
  padding-top: 0.1rem;
}
.rp-contact__detail-val {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Form */
.rp-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border: 1px solid var(--ivory-dark);
  box-shadow: var(--shadow);
}
.rp-form__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.rp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.rp-form__row--full {
  grid-template-columns: 1fr;
}
.rp-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rp-form__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.8;
}
.rp-form__input,
.rp-form__select,
.rp-form__textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--taupe-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.rp-form__input:focus,
.rp-form__select:focus,
.rp-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,70,0.12);
}
.rp-form__input.is-error,
.rp-form__select.is-error,
.rp-form__textarea.is-error {
  border-color: var(--rosewood);
}
.rp-form__input--error-msg {
  font-size: 0.75rem;
  color: var(--rosewood);
  margin-top: 0.2rem;
  display: none;
}
.rp-form__group.has-error .rp-form__input--error-msg { display: block; }
.rp-form__textarea { resize: vertical; min-height: 130px; }
.rp-form__submit { width: 100%; padding: 0.95rem; font-size: 0.82rem; }

.rp-form__success {
  display: none;
  text-align: center;
  padding: var(--sp-5);
}
.rp-form__success-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.rp-form__success-text {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* Legal pages */
.rp-legal { padding-block: var(--sp-6); }
.rp-legal__body {
  max-width: 760px;
  margin-inline: auto;
}
.rp-legal__updated {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.rp-legal__body h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-4);
  border-bottom: 1px solid var(--ivory-dark);
  padding-bottom: var(--sp-1);
}
.rp-legal__body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  margin-top: var(--sp-3);
}
.rp-legal__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}
.rp-legal__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--sp-2);
}
.rp-legal__body ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* ---------------------------------------------------------
   18. RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1100px) {
  .rp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .rp-packages__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .rp-pkg-card--featured { transform: none; }
  .rp-pkg-card--featured:hover { transform: translateY(-3px); }
  .rp-pkg-badge { display: none; }
}

@media (max-width: 900px) {
  .rp-burger { display: flex; }
  .rp-nav, .rp-header__cta { display: none; }
  .rp-nav-mobile { display: flex; }

  .rp-hero__ornament { display: none; }
  .rp-hero__content { max-width: 100%; }

  .rp-identity__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .rp-identity__panel { position: static; }

  .rp-exp-split { grid-template-columns: 1fr; }
  .rp-exp-split__img { min-height: 280px; }
  .rp-exp-split__img-overlay { display: none; }
  .rp-exp-split--reverse { direction: ltr; }

  .rp-exp-editorial { grid-template-columns: 1fr; }
  .rp-exp-editorial__img { min-height: 240px; }
  .rp-exp-editorial__body { padding: var(--sp-4); }

  .rp-exp-band__content { max-width: 100%; }

  .rp-exp-stacked { grid-template-columns: 1fr; }
  .rp-exp-stacked__img { min-height: 260px; }

  .rp-path__rail { grid-template-columns: 1fr 1fr; }
  .rp-path__rail::before { display: none; }

  .rp-shapes__grid { grid-template-columns: 1fr 1fr; }

  .rp-occ-split { grid-template-columns: 1fr; }
  .rp-occ-strip { grid-template-columns: 1fr; }
  .rp-occ-tiles { grid-template-columns: 1fr; }
  .rp-occ-featured { grid-template-columns: 1fr; }

  .rp-contact__grid { grid-template-columns: 1fr; }
  .rp-about-story__grid { grid-template-columns: 1fr; }
  .rp-exp-detail__grid { grid-template-columns: 1fr; }
  .rp-occ-detail__grid { grid-template-columns: 1fr; }
  .rp-occ-detail--reverse .rp-occ-detail__grid { direction: ltr; }

  .rp-pkg-compare__row { grid-template-columns: 1fr 1fr; }
  .rp-pkg-compare__cell:nth-child(3),
  .rp-pkg-compare__cell:nth-child(4) { display: none; }
  .rp-packages__strip { grid-template-columns: 1fr; }

  h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
}

@media (max-width: 600px) {
  :root {
    --sp-6: 4rem;
    --sp-7: 5.5rem;
  }

  .rp-grid-3, .rp-grid-4 { grid-template-columns: 1fr; }
  .rp-shapes__grid { grid-template-columns: 1fr; }
  .rp-path__rail { grid-template-columns: 1fr; }
  .rp-footer__grid { grid-template-columns: 1fr; }
  .rp-form__row { grid-template-columns: 1fr; }
  .rp-exp-detail__setup { grid-template-columns: 1fr 1fr; }
  .rp-exp-stacked__details { grid-template-columns: 1fr; }

  .rp-hero__tags { display: none; }
  .rp-btn-group { flex-direction: column; }
  .rp-btn-group .rp-btn { text-align: center; justify-content: center; }

  .rp-cookie__inner { flex-direction: column; gap: var(--sp-2); }
  .rp-cookie__text { min-width: auto; }
}
