:root {
  /* Brand palette (extracted from RR Grand logo vibe) */
  --primary-color: #2b2f36; /* deep charcoal used in logo */
  --primary-600: #1f2329; /* darker shade for hovers/headers */
  --primary-700: #15181d; /* darkest, for overlays/footer */

  --secondary-color: #f6f3ea; /* warm ivory tint for soft sections */
  --text-color: #3a3d45; /* elegant neutral for body text */
  --muted-text: #6f7380; /* subtle slate for secondary copy */

  --accent-color: #2b2f36; /* warm gold accent */

  /* Neutrals & utility */
  --white-color: #ffffff;
  --surface-color: #ffffff;
  --divider-color: #a38f651a; /* gold @ ~10% */
  --dark-divider-color: #ffffff1a;
  --error-color: #e65757;

  /* Effects & tokens */
  --focus-ring: 0 0 0 3px #a38f6533; /* accessible gold focus */
  --shadow-sm: 0 6px 18px rgba(17, 24, 39, 0.06);
  --shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
  --radius: 28px;
  /* Typography (luxury pairing) */
  --default-font: "Instrument Sans", system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  --heading-font: "Instrument Sans", system-ui, -apple-system, "Segoe UI",
    Roboto, Arial, sans-serif;
  --gap: clamp(14px, 2.4vw, 24px);
  /* Fancy brand gradient (subtle metallic gold) */
  --brand-gradient: linear-gradient(
    135deg,
    #2b2f36 0%,
    #2b2f36 48%,
    #2b2f36 100%
  );
}

/************************************/
/***         02. General css       ***/
/************************************/
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-700);
  border-left: 1px solid var(--primary-700);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-700);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--accent-contrast);
  background-color: var(--primary-color);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--primary-color);
  font-family: var(--heading-font);
  letter-spacing: 0.2px;
}

figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

/* Image sheen */
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* Reveal */
.reveal {
  position: relative;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

/* Grid */
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > * {
  padding-right: 0;
  padding-left: 0;
}

/* Buttons (charcoal + gold) */
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--accent-contrast);
  border: none;
  padding: 17px 54px 17px 30px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  z-index: 0;
}
.btn-default:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: var(--shadow);
  border: 1px solid var(--accent-color);
}
.btn-default:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-default::before {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: 16px;
  right: 30px;
  font-size: 18px;
  color: var(--accent-contrast);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
  color: var(--accent-color);
  transform: rotate(0deg);
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--brand-gradient);
  transform: skew(30deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-default.btn-highlighted:hover:before {
  color: var(--primary-color);
}
.btn-default.btn-highlighted::after {
  background: var(--white-color);
}

/* Link CTA */
.readmore-btn {
  position: relative;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 25px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover {
  color: var(--primary-color);
}
.readmore-btn:after {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 18px;
  color: var(--accent-color);
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover:after {
  color: var(--primary-color);
  transform: translateY(-50%) rotate(0deg);
}

/* Cursor & preloader */
.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(
    1200px 800px at 50% 50%,
    #2b2f36 0%,
    #1f2329 60%,
    #15181d 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container,
.loading {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  position: relative;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear infinite;
  transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Helpful backgrounds & chips using ivory tint + gold */
.bg-tint {
  background: var(--secondary-color);
}
.card {
  background: var(--surface-color);
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--divider-color);
  color: var(--text-color);
}

/* ========= Header ========== */
.rg-h {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--secondary-color);
}
.rg-bar {
  /* max-width: 1320px; */
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.rg-brand img {
  height: 38px;
  width: auto;
  display: block;
}

/* center glass capsule */
.rg-center {
  justify-self: center;
}
.rg-nav {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--divider-color);
  background: rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}
.rg-item {
  position: relative;
}
.rg-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-size: 17px;
}
.rg-link:hover {
  background: #f6f6f2;
  transform: translateY(-1px);
}
.rg-link .chev {
  transition: transform 0.2s ease;
}

/* animated underline */
.rg-underline {
  position: absolute;
  bottom: 8px;
  height: 3px;
  width: 0;
  background: var(--accent-color);
  border-radius: 3px;
  left: 12px;
  transition: left 0.25s ease, width 0.25s ease;
}

/* dropdown */
.rg-dd {
  position: absolute;
  top: calc(100% + 12px);
  left: 12px;
  min-width: 240px;
  padding: 12px;
  background: #fff;
  border: 1px solid #eee8de;
  border-radius: 14px;
  list-style: none;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s linear;
}
.rg-dd a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  color: var(--text-color);
  font-weight: 500;
}
.rg-dd a:hover {
  background: var(--accent-contrast);
  color: #111;
}

/* hover open (desktop) */
@media (hover: hover) {
  .has-dd:hover > .rg-dd,
  .has-dd:focus-within > .rg-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .has-dd:hover .chev {
    transform: rotate(180deg);
  }
}

/* CTA */
.rg-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border-radius: calc(var(--radius));
  background: black;
  color: white;
  font-weight: 700;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.rg-cta:hover {
  transform: translateY(-2px);
  background: var(--brand-gradient);
  color: #fff;
}

/* CTA */
.rg-cta-1 {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border-radius: calc(var(--radius));
  background: black;
  color: white;
  font-weight: 700;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.rg-cta-1:hover {
  transform: translateY(-2px);
  background: var(--brand-gradient);
  color: #fff;
}

/* burger (shown <1100px) */
.rg-burger {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--divider-color);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
  font-size: 18px;
}

/* scroll shadow */
.rg-h.scrolled .rg-bar {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ========= Drawer (mobile) ========= */
.rg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1400;
}
.rg-overlay.show {
  opacity: 1;
  visibility: visible;
}

.rg-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(92vw, 420px);
  max-width: 420px;
  background: #fffefc;
  border-right: 1px solid var(--divider-color);
  box-shadow: var(--shadow);
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
}
.rg-drawer.open {
  transform: translateX(0);
}
.rg-d-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--divider-color);
  position: sticky;
  top: 0;
  background: #fffefc;
  z-index: 2;
}
.rg-d-logo {
  height: 30px;
}
.rg-d-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--divider-color);
  background: #fff;
  color: var(--primary-color);
}

.rg-d-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--divider-color);
}
.rg-d-search input {
  flex: 1;
  height: 42px;
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  color: var(--primary-color);
}

.rg-d-nav {
  padding: 10px 16px 0;
  overflow: auto;
}
.rg-d-group {
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  margin: 12px 0;
  overflow: hidden;
  background: #fff;
}
.rg-d-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--primary-color);
}
.rg-d-group > summary::-webkit-details-marker {
  display: none;
}
.rg-d-group[open] > summary i.fa-angle-right {
  transform: rotate(90deg);
}
.rg-d-group a,
.rg-d-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--text-color);
  text-decoration: none;
}
.rg-d-group a + a {
  border-top: 1px solid var(--divider-color);
}
.rg-d-link {
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  margin: 12px 0;
  background: #fff;
  font-weight: 600;
}

.rg-d-cta {
  margin: 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ========= Responsive ========= */
@media (max-width: 1100px) {
  .rg-center,
  .rg-cta {
    display: none;
  }
  .rg-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rg-bar {
    grid-template-columns: auto 1fr auto;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* === Remove borders around each menu item (keep only the big pill) === */

/* common selectors across our versions */
.rg-nav > li,
.rg-nav .rg-link,
.rrg-menu > li,
.rrg-menu .rrg-link,
.xh-menu > li,
.xh-menu .xh-link {
  border: none !important;
  box-shadow: none !important;
  background: transparent; /* default state = plain text */
}

/* keep subtle hover fill only (no stroke) */
.rg-nav .rg-link:hover,
.rrg-menu .rrg-link:hover,
.xh-menu .xh-link:hover {
  background: #f7f7f7;
}

/* focus ring (accessible) without adding a border box */
.rg-nav .rg-link:focus-visible,
.rrg-menu .rrg-link:focus-visible,
.xh-menu .xh-link:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.18);
  outline-offset: 3px;
  border-radius: 10px; /* just for the focus shape */
}

/* if any li got a stroke from a reset */
.rg-nav > li,
.rrg-menu > li,
.xh-menu > li {
  border: 0 !important;
}

/* keep the big capsule border & shadow */
.rg-nav,
.rrg-menu,
.xh-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  border-radius: 36px;
}

/* Frame */
.rrg-hero {
  position: relative;
  isolation: isolate;
}
.rrg-hero .swiper {
  width: 100%;
}

/* Height: comfy on desktop, smaller on mobile */
.rrg-hero--compact .swiper {
  height: min(80vh, 720px);
}
@media (max-width: 991px) {
  .rrg-hero--compact .swiper {
    height: 64vh;
  }
}
@media (max-width: 767px) {
  .rrg-hero--compact .swiper {
    height: 52vh;
    min-height: 360px;
  }
}
@media (max-width: 479px) {
  .rrg-hero--compact .swiper {
    height: 46vh;
    min-height: 300px;
  }
}

/* Slide bg */
.rrg-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.rrg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* Overlay (charcoal gradient) */
.rrg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 24, 29, 0.35) 0%,
    rgba(21, 24, 29, 0.5) 60%,
    rgba(21, 24, 29, 0.6) 100%
  );
}

/* Content */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
}
.rrg-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.rrg-chip {
  align-self: flex-start;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.rrg-title {
  font-family: var(--default-font);
  font-weight: 400;
  margin: 0 0 10px 0;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 56px);
  color: #fff;
}
.rrg-sub {
  max-width: 680px;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}
.rrg-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Button reads your theme */
.btn-default {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-default:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Nav arrows (glass) */
.rrg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.rrg-nav:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scale(1.04);
}
.rrg-prev {
  left: 16px;
}
.rrg-next {
  right: 16px;
}

@media (max-width: 767px) {
  .rrg-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Pagination bullets */
.rrg-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* Mobile text tweaks */
@media (max-width: 767px) {
  .rrg-title {
    font-size: clamp(22px, 6.4vw, 32px);
  }
  .rrg-sub {
    font-size: 14px;
  }
  .btn-default {
    padding: 12px 18px;
  }
}

/* ===== Ken Burns (background zoom-in) ===== */
.rrg-bg {
  will-change: transform;
  transform-origin: center center;
  transform: scale(1.02); /* base */
}

/* active slide runs the zoom */
.rrg-slide.is-animating .rrg-bg {
  animation: rrg-kenburns var(--kb-duration, 7000ms) ease-out both;
}

/* Keyframes: gentle zoom in */
@keyframes rrg-kenburns {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.14);
  }
}

/* Smaller / subtler on mobile */
@media (max-width: 767px) {
  .rrg-slide.is-animating .rrg-bg {
    animation-duration: 5200ms;
  }
  @keyframes rrg-kenburns {
    0% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1.1);
    }
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rrg-slide.is-animating .rrg-bg {
    animation: none;
    transform: scale(1.02);
  }
}

/* ===== Center hero text (desktop + mobile) ===== */
.rrg-hero .rrg-content,
.rrg-hero .rrg-hero__content {
  display: flex; /* ensure flex is applied */
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center; /* center text lines */
}

/* Chip + copy + CTA centered */
.rrg-hero .rrg-chip {
  align-self: center;
}
.rrg-hero .rrg-sub {
  margin-left: auto;
  margin-right: auto;
}
.rrg-hero .rrg-cta {
  justify-content: center;
}

/* If you previously forced left align on mobile, override it */
@media (max-width: 768px) {
  .rrg-hero .rrg-content,
  .rrg-hero .rrg-hero__content {
    align-items: center !important;
    text-align: center !important;
  }
}

/* ================= THEME-AWARE STYLES ================= */
:root {
  /* assumes your variables are already defined exactly as you sent */
  --gap: clamp(16px, 3vw, 28px);
}

/* Section shell */
.rrg-about-v2 {
  background: var(--secondary-color);
  padding: clamp(48px, 8vw, 120px) 0;
  color: var(--text-color);
}

/* Layout constraints */
.rrg-about-v2 .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top split */
.rrg-about-v2__top {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: var(--gap);
  align-items: start;
  margin-bottom: clamp(28px, 6vw, 48px);
}

/* LEFT */
.eyebrow {
  margin: 0 0 14px 0;
  font: 600 14px/1 var(--default-font);
  letter-spacing: 0.4px;
  color: var(--primary-color);
}
.lede {
  margin: 0 0 20px 0;
  font: 400 clamp(15px, 2.2vw, 18px) / 1.7 var(--default-font);
  color: var(--text-color);
}

/* CTA pill with side dots */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  font: 700 16px/1 var(--default-font);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.cta-pill:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cta-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-color);
  opacity: 0.9;
}

/* RIGHT */
.display {
  margin: 0;
  font-family: var(--default-font);
  font-weight: 400; /* Instrument Sans 400 */
  line-height: 1.05;
  color: var(--primary-color);
  letter-spacing: 0.2px;
  font-size: clamp(28px, 5.6vw, 40px); /* huge, responsive */
}

/* Gallery */
.rrg-about-v2__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.card {
  margin: 0;
  background: var(--surface-color);
  border: 1px solid var(--divider-color);
  border-radius: calc(var(--radius) - 12px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card img {
  display: block;
  width: 100%;
  height: clamp(260px, 38vh, 420px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.card:hover img {
  transform: scale(1.06);
}

/* Responsive stacking */
@media (max-width: 1024px) {
  .rrg-about-v2__top {
    grid-template-columns: 1fr;
    gap: calc(var(--gap) + 6px);
  }
  .display {
    font-size: clamp(20px, 5.5vw, 38px);
  }
}
@media (max-width: 640px) {
  .rrg-about-v2__gallery {
    grid-template-columns: 1fr;
  }
  .cta-pill {
    height: 56px;
  }
}

/* Section frame */
.rrg-amenities {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

/* Background photo + soft vignette */
.rrg-amenities__bg {
  position: absolute;
  inset: 0;
  background: url("../images/why.jpg") center/cover no-repeat;
  transform: scale(1.04);
}
.rrg-amenities__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 24, 29, 0.3) 0%,
    rgba(21, 24, 29, 0.55) 60%,
    rgba(21, 24, 29, 0.7) 100%
  );
}

/* Glass card */
.rrg-amenities__glass {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  padding: clamp(22px, 4vw, 40px);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  text-align: center;
}

/* Headline + sub */
.amenities-title {
  margin: 0 0 12px 0;
  font-family: var(--default-font);
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.06;
  font-size: clamp(28px, 5vw, 56px);
  color: #fff;
}
.amenities-sub {
  margin: 0 auto clamp(18px, 3.6vw, 28px);
  max-width: 960px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.7;
}

/* Pills row (wrap on desktop, smooth horizontal scroll on mobile) */
.amenities-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 18px);
  margin: 0 auto clamp(18px, 3.6vw, 28px);
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .amenities-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .amenities-pills {
    display: block;
    
  }
  .amenities-pills .pill {
   margin-bottom: 20px;
  }
  .rg-tst-pagination{
    display: none !important;
  }
}

/* Individual pill */
.pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}
.pill img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.pill span {
  font: 600 clamp(14px, 1.8vw, 16px) / 1 var(--default-font);
  color: #fff;
}

/* CTA pill centered */
.amenities-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: var(--primary-color);
  height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font: 700 16px/1 var(--default-font);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    color 0.25s ease;
}
.amenities-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}
.amenities-cta .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

/* Compact on small screens */
@media (max-width: 640px) {
  .rrg-amenities__glass {
    padding: 18px;
  }
  .amenities-cta {
    height: 56px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rrg-amenities__bg {
    transform: none;
  }
  .pill:hover {
    transform: none;
  }
  .amenities-cta:hover {
    transform: none;
  }
}

.rrg-rooms-available {
  background: var(--secondary-color);
  padding: clamp(48px, 8vw, 120px) 0;
  color: var(--text-color);
}
.rrg-rooms-available .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.rra-head {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: var(--gap);
  align-items: end;
  margin-bottom: clamp(24px, 5vw, 36px);
}
.rra-heading h2 {
  margin: 0 0 8px 0;
  font-family: var(--default-font);
  font-weight: 400; /* Instrument Sans 400 */
  color: var(--primary-color);
  line-height: 1.05;
  letter-spacing: 0.2px;
  font-size: clamp(30px, 6vw, 64px);
}
.rra-heading p {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.7;
}

/* Filter chips */
.rra-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chip {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.chip:hover {
  background: color-mix(in oklab, #fff, var(--primary-color) 6%);
}
.chip.is-active {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}

/* Grid */
.rra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

/* Room card */
.room-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.room-photo {
  position: relative;
  margin: 0;
}
.room-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-color);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
}

.room-info {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.room-name {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
}
.room-desc {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}
.room-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.room-amenities li {
  padding: 6px 10px;
  border: 1px solid var(--divider-color);
  border-radius: 999px;
  background: var(--white-color);
  font-size: 13px;
}

.room-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 18px;
}
.price span {
  color: var(--muted-text);
  font-weight: 600;
}

/* Reuse your button token */
.btn-default {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-default:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 1100px) {
  .rra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-photo img {
    height: 210px;
  }
}
@media (max-width: 720px) {
  .rra-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .rra-filters {
    justify-content: flex-start;
  }
  .rra-grid {
    grid-template-columns: 1fr;
  }
  .room-photo img {
    height: 200px;
  }
}

/* Section shell */
.rg-amen-grid {
  background: var(--white-color);
  padding: clamp(48px, 6vw, 120px) 0;
  color: var(--text-color);
}
.rg-amen-grid .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.rg-amen-head {
  text-align: center;
}
.rg-amen-title {
  margin: 0 0 10px 0;
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.2px;
  color: var(--primary-color);
  font-size: clamp(29px, 6vw, 64px);
}
.rg-amen-sub {
  margin: 0 auto clamp(20px, 4vw, 34px);
  max-width: 900px;
  font-size: clamp(14px, 2.1vw, 18px);
  line-height: 1.7;
  color: var(--text-color);
}

/* CTA pill */
.rg-amen-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.rg-amen-pill:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rg-amen-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

/* Grid */
.rg-amen-grid__list {
  margin: clamp(24px, 5vw, 36px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  list-style: none;
  padding: 0;
}
@media (max-width: 1100px) {
  .rg-amen-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .rg-amen-grid__list {
    grid-template-columns: 1fr;
  }
}

/* Card */
.amen-card {
  position: relative;
  border-radius: calc(var(--radius) - 12px);
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
  background: #000;
}
@media (max-width: 640px) {
  .amen-card {
    min-height: 360px;
  }
}

.amen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

/* Soft overlay + inner content */
.amen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.45) 68%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* small white dot top-left */
.amen-dot {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

/* visible copy (kicker + title) */
.amen-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}
.amen-kicker {
  margin: 0 0 6px 0;
  opacity: 0.88;
  font-size: 14px;
  line-height: 1.3;
}
.amen-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 24px);
}

/* plus button */
.amen-plus {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
}
.amen-plus::before {
  content: "+";
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 22px;
  font-weight: 600;
}

/* reveal panel (hidden by default; shows on hover or card.is-open) */
.amen-reveal {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 112px;
  z-index: 2;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s linear;
  font-size: 14px;
  line-height: 1.6;
}

/* Hover interaction (desktop) */
@media (hover: hover) {
  .amen-card:hover .amen-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Tap-to-toggle (mobile support) */
.amen-card.is-open .amen-reveal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.amen-card.is-open .amen-plus::before {
  content: "×";
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .amen-reveal {
    transition: none;
  }
  .rg-amen-pill {
    transition: none;
  }
}

/* ============== THEME-AWARE STYLES (uses your :root tokens) ============== */
.rrg-stay {
  background: var(--secondary-color);
  padding: clamp(40px, 7vw, 96px) 0;
  color: var(--text-color);
}
.rrg-stay .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.stay-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: end;
  margin-bottom: clamp(18px, 4.5vw, 28px);
}
.stay-head__copy h2 {
  margin: 0 0 6px 0;
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.05;
  letter-spacing: 0.2px;
  font-size: clamp(28px, 4.8vw, 44px);
}
.stay-head__copy p {
  margin: 0;
  font-size: clamp(14px, 2.1vw, 16px);
  line-height: 1.7;
}

/* CTA pill */
.stay-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.stay-pill:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.stay-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

/* List rows */
.stay-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.stay-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--surface-color);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 40px;
}

/* Info (left) */
.stay-info {
  padding: 16px 16px 18px 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.stay-name {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 20px);
}
.stay-blurb {
  margin: 0;
  color: var(--text-color);
  font-size: 16px;
}
/* Price styling for room rows */
.stay-price{
  margin: 2px 0 8px;
  color: var(--primary-color);
  font-weight: 800;
  font-size: clamp(21px, 2.1vw, 18px);
}
.stay-price span{ color: var(--muted-text); font-weight: 600; }

.stay-bullets {
  margin: 2px 0 8px;
  padding-left: 16px;
  display: grid;
  gap: 10px;
  font-size: 16px;
}


.stay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
 width: fit-content;
  height: 46px;
  padding: 0 26px;
  border-radius: calc(var(--radius));
  background: black;
  color: white;
  font-weight: 700;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.stay-link:hover {
  transform: translateX(3px);
  transform: translateY(-2px);
  background: var(--brand-gradient);
  color: #fff;
}
.stay-link::after {
  content: "";
  position: absolute;
  left: 0;
  /* right: 24px; */
  bottom: -6px;
  height: 2px;
  background: color-mix(in oklab, var(--primary-color), #fff 40%);
  border-radius: 2px;
}

/* Media (right) */
.stay-media {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.stay-media img {
      display: block;
    width: 100%;
    height: 238px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 900ms 
ease;
    will-change: transform;
    border-radius: 21px;
}
/* Smooth zoom on hover/focus row */
.stay-card:hover .stay-media img,
.stay-card:focus-within .stay-media img {
  transform: scale(1.08);
   border-radius: 21px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stay-head {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stay-pill {
    justify-self: center;
  }
}
@media (max-width: 760px) {
  .stay-card {
    grid-template-columns: 1fr;
    padding: 0px;
  }
  .stay-media img {
    height: 210px;
  }
}




:root{ --rg-gap: clamp(14px, 2.4vw, 24px); }

.rg-testimonials{
  background: var(--white-color);
  padding: clamp(48px, 5vw, 120px) 0;
  color: var(--text-color);
}
.rg-testimonials .container{ max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* Header */
.rg-tst-head{ text-align:center; margin-bottom: clamp(22px, 5vw, 36px); }
.rg-tst-title{
  margin: 0 0 10px 0;
  font-family: var(--default-font);
  font-weight: 400;                 /* Instrument Sans 400 */
  color: var(--primary-color);
  line-height: 1.06;
  letter-spacing: .2px;
  font-size: clamp(28px, 5.6vw, 48px);
}
.rg-tst-sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.7;
}

/* Swiper wrapper / fallback */
.rg-tst-swiper{ overflow: visible; }
.rg-tst-swiper.no-swiper .swiper-wrapper{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--rg-gap);
}
@media (max-width: 992px){
  .rg-tst-swiper.no-swiper .swiper-wrapper{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px){
  .rg-tst-swiper.no-swiper .swiper-wrapper{ grid-template-columns: 1fr; }
}

/* Testimonial card */
.rg-tst-card{
  position: relative;
  height: auto;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--secondary-color), #fff 15%) 0%, #fff 100%);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  border-radius: calc(var(--radius) - 8px);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 14px;
  display: grid;
  gap: 16px;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rg-tst-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }

/* Quote text with oversized open-quote mark */
.rg-tst-quote{
  position: relative;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.8;
  color: var(--text-color);
  padding-top: 16px;
}
.rg-tst-quote::before{
  content: "“";
  position: absolute; left: -4px; top: -6px;
  font-size: 56px; line-height: 1; color: color-mix(in oklab, var(--primary-color), #fff 40%);
  font-weight: 600; pointer-events: none;
}

/* Meta area */
.rg-tst-meta{
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  border-top: 1px dashed color-mix(in oklab, var(--primary-color), #fff 85%);
  padding-top: 12px;
}
.rg-tst-avatar{
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid color-mix(in oklab, var(--primary-color), #fff 80%);
}
.rg-tst-id strong{ display:block; color: var(--primary-color); font-weight: 700; }
.rg-tst-id span{ display:block; font-size: 13px; color: var(--muted-text); }

/* Star rating (monochrome to match theme) */
.rg-tst-stars{
  font-size: 14px; letter-spacing: 2px;
  color: var(--primary-color);
}

/* Swiper nav + pagination (only visible when Swiper is active) */
.rg-tst-nav{
  position: absolute; top: -64px; right: 0; z-index: 2;
  width: 48px; height: 48px; border-radius: 999px;
  display:grid; place-items:center;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  background:#fff; color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.rg-tst-prev{ right: 56px; }
.rg-tst-nav:hover{ transform: translateY(-1px); box-shadow: var(--shadow); background: color-mix(in oklab, #fff, var(--primary-color) 6%); }

.rg-tst-pagination{
  position: absolute; top: -48px; left: 0; right: 120px; display:flex; justify-content:center;
}
.rg-tst-pagination .swiper-pagination-bullet{
  width:8px; height:8px; margin:0 6px !important; background: color-mix(in oklab, var(--primary-color), #fff 35%); opacity:1;
}
.rg-tst-pagination .swiper-pagination-bullet-active{ background: var(--primary-color); }

/* On smaller screens, move nav below */
@media (max-width: 768px){
  .rg-tst-nav{ position: static; display:inline-grid; margin: 10px 6px 0 0; }
  .rg-tst-pagination{ position: static; margin-top: 10px; }
  .rg-tst-swiper{ text-align:center; }
}

/* =============== THEME-AWARE BOOKING STYLES =============== */
:root{ --gap: clamp(14px, 2.6vw, 26px); }

.rg-booking{
  position: relative; isolation: isolate;
  min-height: clamp(520px, 78vh, 760px);
  display: grid; place-items: center;
  color: #fff;
}
.rg-booking .container{ width:100%; max-width:1300px; padding: 0 20px; margin: 0 auto; }

/* Background */
.rg-booking__bg{
  position:absolute; inset:0; background: url('../images/room-2.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.rg-booking__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(21,24,29,.25) 0%, rgba(21,24,29,.55) 60%, rgba(21,24,29,.75) 100%);
}

/* Glass card */
.rg-booking__card{
  position: relative; z-index: 1;
  margin: 0 auto; width: min(1100px, 100%);
  padding: clamp(18px, 4vw, 34px);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 40px 80px rgba(0,0,0,.24);
}

/* Header */
.rg-booking__head{ text-align:center; margin-bottom: 8px; }
.rg-booking__head h2{
  margin: 0 0 6px;
  font-family: var(--default-font); font-weight: 400; line-height:1.06;
  letter-spacing:.2px; color:#fff; font-size: clamp(26px, 4.8vw, 40px);
}
.rg-booking__head p{ margin:0; color: rgba(255,255,255,.92); font-size: clamp(14px, 2vw, 16px); }

/* Tabs */
.rg-booking__tabs{ display:flex; gap:10px; justify-content:center; margin: 14px 0 10px; flex-wrap:wrap; }
.tab{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.16); color:#fff; border:1px solid rgba(255,255,255,.26);
  height:42px; padding:0 14px; border-radius: 999px; cursor: pointer;
}
.tab.is-active{ background:#fff; color: var(--primary-color); }

/* Form grid */
.rg-booking__form{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--gap);
  align-items: end;
  margin-top: 12px;
}
.field{ display:grid; gap:8px; }
.field--wide{ grid-column: span 2; }
.label{ font-weight: 700; font-size: 13px; color:#fff; opacity:.95; display:flex; align-items:center; gap:8px; }

/* Inputs */
.field input[type="date"],
.field input[type="text"]{
  width:100%;
  height:56px;
  padding: 0 14px;
  color: var(--primary-color);
  background:#fff;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.field input::placeholder{ color: color-mix(in oklab, var(--primary-color), #fff 45%); }

/* Stepper */
.stepper{
  height:56px; display:grid; grid-template-columns: 44px 1fr 44px; align-items:center;
  background:#fff; border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  border-radius: 14px; box-shadow: var(--shadow-sm);
}
.stepper input{
  height: 54px; width:100%; border:0; text-align:center; font-weight:700; color: var(--primary-color);
}
.stepper-btn{
  width:44px; height:54px; display:grid; place-items:center; border:0; background:transparent;
  color: var(--primary-color); cursor:pointer; font-size:14px;
}

/* Simple number input styled like other controls */
.num-input{
  width:100%;
  height:56px;
  padding: 0 14px;
  color: var(--primary-color);
  background:#fff;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  border-radius:14px;
  box-shadow: var(--shadow-sm);
}

/* Optional: hide browser spin buttons for a cleaner look */
.num-input::-webkit-outer-spin-button,
.num-input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.num-input{ -moz-appearance: textfield; }

/* CTA */
.rg-booking__cta{
  grid-column: span 4;
  height:64px; border-radius: 14px; font-weight: 800;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background: black; color:#fff; border:1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.rg-booking__cta:hover{ background:white; color: black;   }

/* Summary */
.rg-booking__summary{
  margin-top: 12px; text-align:center; color:#fff;
}
.summary-line{ opacity:.95; }
.summary-price{ margin-top: 6px; font-size: 18px; }
.summary-price strong{ color:#fff; }

/* Responsive */
@media (max-width: 900px){
  .rg-booking__form{ grid-template-columns: repeat(2,1fr); }
  .rg-booking__cta{ grid-column: span 2; }
}
@media (max-width: 560px){
  .rg-booking__form{ grid-template-columns: 1fr; }
  .field--wide{ grid-column: span 1; }
  .rg-booking__cta{ grid-column: 1; height: 56px; }
}


/* ===== RR GRAND • PREMIUM FOOTER SKIN (uses your :root tokens) ===== */

.rrg-foot{
  position:relative; isolation:isolate;
  background: var(--secondary-color);
  color: var(--text-color);
  overflow:hidden;
  padding: clamp(44px, 4vw, 96px) 0 0;
}

/* Ambient luxury glow */
.rrg-foot::before,
.rrg-foot::after{
  content:""; position:absolute; pointer-events:none; z-index:0;
  filter: blur(20px); opacity:.10;
}
.rrg-foot::before{
  width:640px; height:640px; left:-220px; top:-260px;
  background: radial-gradient(closest-side, var(--primary-color) 10%, transparent 55%);
}
.rrg-foot::after{
  width:520px; height:520px; right:-200px; top:-140px;
  background: radial-gradient(closest-side, var(--primary-color) 10%, transparent 60%);
}

.rrg-foot .container{ position:relative; z-index:1; max-width:1300px; margin:0 auto; padding:0 20px; }

/* -------- Top grid -------- */
.rrg-foot__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: clamp(20px, 3.2vw, 44px);
  align-items:start;
}

/* Brand column */
.rrg-foot__brand .brand-line{ display:flex; align-items:center; gap:14px; }
.brand-mark{
   height:56px; object-fit:contain;
  border-radius:14px;
  background:#fff;
  box-shadow: var(--shadow-sm);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  padding:6px;
}
.rrg-foot__brand h3{ /* if you add a heading later it will auto-style */
  margin:0; font-family:var(--default-font); font-weight:800;
  color:var(--primary-color); letter-spacing:.2px; font-size:28px;
}
.brand-blurb{
  margin:12px 0 0; max-width:520px; line-height:1.8;
  color: var(--text-color);
}

/* Section titles */
.rrg-foot__col h4{
  margin:0 0 14px; color: var(--primary-color);
  font: 800 22px/1.2 var(--default-font);
}

/* Link lists with premium underline animation */
.linklist{ margin:0; padding:0; list-style:none; display:grid; gap:30px; }
.linklist a{
  text-decoration:none; color: var(--text-color);
  background: linear-gradient(currentColor 0 0) 0 100% / 0 1px no-repeat;
  transition: background-size .3s ease, color .3s ease;
  padding:2px 0;
}
.linklist a:hover{ color: var(--primary-color); background-size: 100% 1px; }

/* Contact list with icon chips */
.contact{ margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.contact li{ display:flex; gap:12px; align-items:flex-start; }
.contact i{
  width:36px; height:36px; border-radius:999px; flex:0 0 36px;
  display:grid; place-items:center; color: var(--primary-color);
  background: #fff; border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  box-shadow: var(--shadow-sm);
}
.contact a{ color: var(--text-color); text-decoration:none; border-bottom: 1px solid transparent; margin-top:10px;}
.contact a:hover{ border-color: color-mix(in oklab, var(--primary-color), #fff 35%); }
.contact address{ font-style:normal; line-height: 1.5rem; }

/* Divider */
.rrg-foot__rule{
  margin: clamp(26px, 5vw, 40px) 0 0;
  border:0; height:1px;
  background: color-mix(in oklab, var(--primary-color), #fff 86%);
}

/* -------- Bottom row -------- */
.rrg-foot__bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap; padding: 14px 0 28px;
  color: var(--muted-text);
}
.rrg-social{ display:flex; gap:18px; align-items:center; }
.rrg-social a{
  display:flex; align-items:center; gap:8px; text-decoration:none;
  color: var(--text-color);
  padding:6px 10px; border-radius:10px;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  background:#fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}
.rrg-social a:hover{
  transform: translateY(-1px); box-shadow: var(--shadow);
  color: var(--primary-color);
}

/* Back-to-top */
.rrg-top{
  position: fixed; right:18px; bottom:18px; z-index:25;
  width:52px; height:52px; border-radius:999px;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  background:#fff; color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  display:grid; place-items:center; cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  opacity:0; pointer-events:none;
}
.rrg-top.is-show{ opacity:1; pointer-events:auto; }
.rrg-top:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }

/* -------- Responsive -------- */
@media (max-width: 1024px){
  .rrg-foot__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .rrg-foot__grid{ grid-template-columns: 1fr; }
  .brand-mark{  height:52px; }
}

/* Right-arrow placed BEFORE the link text */
.linklist--arrow a{
  position: relative;
  padding-left: 22px;          /* room for the icon on the left */
}

/* Prefer Font Awesome; fallback to a plain arrow if FA isn't loaded */
.linklist--arrow a::before{
  content: "\f061";                   /* FA solid arrow-right */
  font-family: "Font Awesome 6 Free"; /* or "Font Awesome 5 Free" */
  font-weight: 900;
  /* Fallback if FA isn't available: */
  /* content: "→"; font-family: inherit; font-weight: 700; */

  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
  color: var(--primary-color);
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease, color .25s ease;
}

.linklist--arrow a:hover::before{
  transform: translate(4px, -50%);    /* gentle slide to the right on hover */
  opacity: 1;
  color: var(--primary-600);
}




/* ============== THEME-AWARE STYLES ============== */
.rg-intro-cards{
  background: var(--white-color);
  color: var(--text-color);
  padding: clamp(44px, 8vw, 110px) 0;
}
.rg-intro-cards .container{ max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* Desktop grid: corner media around core */
.intro-wrap{
  display: grid;
  grid-template-columns: 1fr minmax(540px, 780px) 1fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  position: relative;
}

.intro-core{
  grid-column: 2;
  grid-row: 1 / span 2;
  text-align: center;
}

.intro-kicker{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-text);
  font-weight: 700;
}

.intro-title{
  margin: 0 0 12px;
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.05;
  letter-spacing: .2px;
  font-size: clamp(28px, 5.8vw, 64px);
}

.intro-sub{
  margin: 0 auto clamp(16px, 3vw, 26px);
  max-width: 760px;
  font-size: clamp(14px, 2.1vw, 18px);
  line-height: 1.75;
  color: var(--text-color);
}

/* Pill CTA with dots */
.intro-cta{
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff; text-decoration: none; font-weight: 800;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 80%);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.intro-cta:hover{ transform: translateY(-2px); box-shadow: var(--shadow); background: var(--primary-600); }
.intro-cta .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: .9;
}

/* Corner images */
.intro-media{
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  box-shadow: var(--shadow-sm);
  background: #fff;
  aspect-ratio: 4 / 3;
  max-width: 360px;
}
.intro-media img{
  width: 100%; height: 100%; object-fit: cover; display:block;
  transform: scale(1.03);
  transition: transform .9s ease;
}
.intro-media::before{
  content:""; position:absolute; left:10px; top:10px;
  width:10px; height:10px; border-radius:50%;
  background: var(--primary-color); opacity:.9;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary-color), #fff 82%);
}
.intro-media:hover img{ transform: scale(1.08); }

/* Place the four cards */
.intro-top-left{ grid-column: 1; grid-row: 1; justify-self: start; }
.intro-top-right{ grid-column: 3; grid-row: 1; justify-self: end; }
.intro-bottom-left{ grid-column: 1; grid-row: 2; justify-self: start; }
.intro-bottom-right{ grid-column: 3; grid-row: 2; justify-self: end; }

/* Subtle float animation for media (optional) */
@keyframes floatY { from { transform: translateY(0); } 50% { transform: translateY(-6px); } to { transform: translateY(0); } }
.intro-media{ animation: floatY 6s ease-in-out infinite; }
.intro-bottom-right{ animation-delay: .6s; }
.intro-top-right{ animation-delay: 1.2s; }
.intro-bottom-left{ animation-delay: 1.8s; }

/* ---------- Mobile layout ---------- */
@media (max-width: 900px){
  .intro-wrap{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 18px;
  }
  .intro-core{ grid-column: 1; grid-row: 2; }
  .intro-title br.br-md{ display:none; }

  /* top pair */
  .intro-top-left, .intro-top-right,
  .intro-bottom-left, .intro-bottom-right{
    max-width: none; width: 100%; aspect-ratio: 4/3;
  }
  .intro-top-left{ grid-row: 1; }
  .intro-top-right{ grid-row: 1; }
  .intro-bottom-left{ grid-row: 3; }
  .intro-bottom-right{ grid-row: 3; }

  /* two-up rows */
  .intro-top-left, .intro-top-right,
  .intro-bottom-left, .intro-bottom-right{
    display:block;
  }
  /* make the two-up rows */
  .intro-top-left, .intro-top-right{ }
  .intro-bottom-left, .intro-bottom-right{ }

  /* Use CSS grid trick: wrap pairs with full width using auto placement */
  .intro-top-left, .intro-top-right,
  .intro-bottom-left, .intro-bottom-right{
    justify-self: stretch;
  }
  /* side-by-side pairs */
  .intro-top-left, .intro-top-right{ }
}

/* Small screens: explicitly arrange with a mini grid wrapper */
@media (max-width: 900px){
  .intro-wrap{
    display: grid;
  }
  /* create two mini grids for media using utility rows */
  .intro-top-left, .intro-top-right{
    display:inline-block; width: calc(50% - 9px);
  }
  .intro-top-left{ margin-right: 9px; }
  .intro-top-right{ margin-left: 9px; }

  .intro-bottom-left, .intro-bottom-right{
    display:inline-block; width: calc(50% - 9px);
  }
  .intro-bottom-left{ margin-right: 9px; }
  .intro-bottom-right{ margin-left: 9px; }
}

/* ---------- Mobile fix (≤ 640px) ---------- */
@media (max-width: 640px){

  /* 2 columns for media, copy spans both */
  .intro-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    align-items: start;
  }

  /* Top pair */
  .intro-top-left{
    grid-column: 1; grid-row: 1;
  }
  .intro-top-right{
    grid-column: 2; grid-row: 1;
  }

  /* Core copy in the middle, full width */
  .intro-core{
    grid-column: 1 / -1; grid-row: 2;
    text-align: center;
    padding: 0 8px;
  }
  .intro-title{
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
  }
  .intro-sub{
    max-width: 34ch;
    margin-left: auto; margin-right: auto;
    font-size: 14.5px;
  }
  .intro-cta{
    margin: 8px auto 0;
    padding: 14px 20px;
  }

  /* Bottom pair */
  .intro-bottom-left{
    grid-column: 1; grid-row: 3;
  }
  .intro-bottom-right{
    grid-column: 2; grid-row: 3;
  }

  /* Media cards: full-width in grid cells */
  .intro-media{
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    justify-self: stretch;
  }

  /* Remove previous inline-block hacks / animations if any */
  .intro-top-left, .intro-top-right,
  .intro-bottom-left, .intro-bottom-right{
    display: block;            /* ensure grid controls layout */
    animation: none;           /* optional: stop float on small screens */
  }

  /* Hide manual line break inside title if you added one */
  .intro-title .br-md{ display:none; }
}


.intro-sub + .intro-sub{
  margin-top: 8px;
  color: color-mix(in oklab, var(--text-color), #000 70%);
  opacity: .95;
}


/* ============ RR GRAND • BREADCRUMB + HERO (COMBINED) ============ */

/* Base band */
.rrg-breadcrumb{
  background: var(--secondary-color);
  padding: clamp(14px, 3.4vw, 26px) 0;
  position: relative;
  overflow: hidden;
}

.rrg-breadcrumb .container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Centered breadcrumb pill */
.crumbs{
  display: grid;
  place-items: center;
}

.crumbs ol{
  list-style: none;
  margin: 0;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-color);
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.crumbs li{
  position: relative;
  font-family: var(--default-font);
  font-size: clamp(13px, 1.9vw, 14.5px);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text-color);
  max-width: 40ch;
}

.crumbs li a{
  color: inherit;
  text-decoration: none;
  background: linear-gradient(currentColor 0 0) 0 100% / 0 1px no-repeat;
  transition: background-size .25s ease, color .25s ease;
}
.crumbs li a:hover{
  color: var(--primary-color);
  background-size: 100% 1px;
}

/* Separator (Font Awesome chevron; fallback to › if FA not loaded) */
.crumbs li + li::before{
  content: "\f105";                                   /* FA6 chevron-right */
  font-family: "Font Awesome 6 Free";                 /* or "Font Awesome 5 Free" */
  font-weight: 900;
  color: var(--muted-text);
  margin-right: 6px;
  /* Fallback: comment the 3 lines above and use:
     content: "›"; */
}

.crumbs li.current{
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Compact phones */
@media (max-width: 420px){
  .crumbs ol{ padding: 8px 12px; gap: 10px; }
  .crumbs li{ max-width: 28ch; }
}

/* ============ HERO VARIANT (background image + gradient + centered title) ============ */
/* Add class .hero-crumb to .rrg-breadcrumb and provide --bg inline for the image */

.hero-crumb{
  color: #fff;
  text-align: center;
  
  padding: clamp(48px, 12vw, 73px) 0 clamp(20px, 4vw, 85px);
  isolation: isolate;
}

.hero-crumb .rrg-crumb__bg{
  position: absolute; inset: 0; z-index: -2;
  background:url('../images/gallery-2.jpg') center/cover no-repeat;
  transform: scale(1.06);               /* gentle premium zoom */
}

.hero-crumb .rrg-crumb__overlay{
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21,24,29,.55) 0%, rgba(21,24,29,.45) 35%, rgba(21,24,29,.30) 100%),
    linear-gradient(0deg, rgba(21,24,29,.30), rgba(21,24,29,.30));
}

/* Page title over image */
.crumb-title{
  margin: 0 0 clamp(10px, 2.2vw, 16px);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.06;
  letter-spacing: .2px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}

/* Hero: adjust crumb pill colors for legibility */
.hero-crumb .crumbs ol{
  background: rgba(255,255,255,.92);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  color: var(--primary-color);
}
.hero-crumb .crumbs li,
.hero-crumb .crumbs li a{
  color: var(--primary-color);
}
.hero-crumb .crumbs li a:hover{
  color: var(--primary-600);
}

/* Responsive tweaks for hero */
@media (max-width: 640px){
  .hero-crumb{
    padding: clamp(36px, 18vw, 72px) 0 clamp(16px, 6vw, 24px);
  }
  .hero-crumb .crumbs ol{
    padding: 8px 12px; gap: 10px;
  }
}


/* =============== THEME-AWARE STYLES =============== */
.rg-about2{
  background: var(--white-color);
  color: var(--text-color);
  padding: clamp(48px, 9vw, 120px) 0;
}
.rg-about2 .container{ max-width:1300px; margin:0 auto; padding:0 20px; }

.about2-wrap{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items:center;
}

/* ---- Media collage ---- */
.about2-media{ position: relative; min-height: 520px; }
.about2-media figure{ margin:0; overflow:hidden; border-radius: calc(var(--radius, 28px) - 8px);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 86%); box-shadow: var(--shadow-sm); }
.about2-media img{ width:100%; height:100%; object-fit:cover; display:block; transform: scale(1.02);
  transition: transform .9s ease; }
.about2-media figure:hover img{ transform: scale(1.07); }

.about2-main{ position:absolute; inset:auto 0 0 0; height:70%; }
.about2-tile{ position:absolute; width:44%; height:38%; }
.about2-tile.t1{ left:0; top:0; }
.about2-tile.t2{ right:0; top:0%; }

.about2-badge{
  position:absolute; left:12px; top:12px; display:flex; gap:10px; align-items:center;
  padding:10px 12px; border-radius: 16px;
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(8px) saturate(120%); backdrop-filter: blur(8px) saturate(120%);
  border:1px solid rgba(255,255,255,.5); box-shadow: var(--shadow-sm);
  color: var(--primary-color);
}
.about2-badge i{ font-size:16px; }
.about2-badge strong{ display:block; line-height:1.1; }
.about2-badge span{ font-size:12px; color: var(--muted-text); }

/* ---- Copy ---- */
.about2-kicker{
  display:inline-flex; gap:8px; align-items:center;
  font-weight:700; font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color: var(--primary-color);
  background: color-mix(in oklab, var(--primary-color), #fff 90%);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 75%);
  padding:8px 12px; border-radius:999px;
}

.about2-title{
  margin: 12px 0 10px;
  font-family: var(--default-font);
  font-weight: 400;                /* Instrument Sans 400 */
  color: var(--primary-color);
  letter-spacing:.2px; line-height:1.06;
  font-size: clamp(28px, 5.6vw, 53px);
}

.about2-lead{
  margin: 8px 0 16px;
  font-size: clamp(14px, 2.1vw, 18px);
  line-height: 1.8;
}

/* Features */
.about2-features{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px; list-style:none; padding:0; margin: 0 0 14px;
}
.about2-features .feat{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px; border-radius: 14px; background:#fff;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  box-shadow: var(--shadow-sm); font-weight:700;
}
.about2-features i{ color: var(--primary-color); }

/* Stats */
.about2-stats{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px; margin: 8px 0 16px;
}
.about2-stats .stat{
  background: var(--secondary-color);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  border-radius: 16px; padding: 14px; text-align:center; box-shadow: var(--shadow-sm);
}
.about2-stats .num{ display:block; color: var(--primary-color); font-weight:800; font-size: clamp(18px, 2.6vw, 24px); }
.about2-stats .lbl{ display:block; color: var(--muted-text); font-size: 13px; }

/* CTA row */
.about2-cta-row{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.about2-link{
  display:inline-flex; gap:8px; font-weight: 800; color: var(--primary-color); text-decoration:none;
  position: relative; padding-bottom: 2px;
  background: linear-gradient(currentColor 0 0) 0 100% / 0 2px no-repeat;
  transition: background-size .25s ease, color .25s ease;
}
.about2-link:hover{ color: var(--primary-600); background-size: 100% 2px; }
.about2-link .arr{ transition: transform .25s ease; }
.about2-link:hover .arr{ transform: translateX(3px); }

/* ---- Responsive ---- */
@media (max-width: 1024px){
  .about2-wrap{ grid-template-columns: 1fr; }
  .about2-media{ order: -1; min-height: 420px; }
}
@media (max-width: 640px){
  .about2-media{ min-height: 360px; }
  .about2-tile{ width: 52%; height: 38%; }
  .about2-tile.t2{ top: 0%; }
  .about2-features{ grid-template-columns: 1fr; }
  .about2-stats{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px){
  .about2-stats{ grid-template-columns: 1fr 1fr; }
}


.rrg-gallery{
  background: var(--white-color);
  color: var(--text-color);
  padding: clamp(44px, 8vw, 110px) 0;
}
.rrg-gallery .container{ max-width:1300px; margin:0 auto; padding:0 20px; }

.rg-g-head{ text-align:center; max-width: 860px; margin: 0 auto clamp(18px, 3vw, 30px); }
.rg-g-kicker{
  display:inline-block; margin-bottom: 8px;
  font-size:12px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color: var(--muted-text);
}
.rg-g-title{
  margin:0 0 8px; color: var(--primary-color);
  font-family: var(--default-font); font-weight:400;
  font-size: clamp(26px, 5.2vw, 44px); line-height:1.1;
}
.rg-g-sub{
  margin: 0 auto; max-width: 62ch; line-height: 1.8;
  font-size: clamp(14px, 2vw, 18px);
}

/* Grid */
.rg-g-grid{
  list-style:none; margin: clamp(16px, 3vw, 28px) 0 0; padding:0;
  display:grid; gap: clamp(10px, 2vw, 16px);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Card */
.rg-g-card{
  position:relative; display:block; overflow:hidden; border-radius: var(--radius, 18px);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  background:#fff; box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.rg-g-card img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1.02); transition: transform .8s ease;
}
.rg-g-card:hover img{ transform: scale(1.08); }

/* Overlay icon */
.rg-g-overlay{
  position:absolute; inset:auto 10px 10px auto;
  width:36px; height:36px; display:grid; place-items:center;
  background: rgba(255,255,255,.85);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  border-radius: 12px; color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transform: translateY(6px); opacity:0; transition: all .25s ease;
}
.rg-g-card:hover .rg-g-overlay{ transform: translateY(0); opacity:1; }

/* Lightbox */
.rg-g-lightbox{
  position: fixed; inset:0; z-index: 60;
  display:none; place-items:center;
  background: color-mix(in oklab, var(--primary-700, #15181d), rgba(0,0,0,.92) 70%);
  padding: clamp(10px, 4vw, 30px);
}
.rg-g-lightbox:target{ display:grid; }
.rg-g-lightbox img{
  max-width: 96vw; max-height: 86vh; border-radius: 12px;
  box-shadow: var(--shadow); background:#000;
}

/* Click anywhere (close) */
.rg-g-close{
  position:absolute; inset:0; cursor: zoom-out;
}

/* Responsive polish */
@media (max-width: 560px){
  .rg-g-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Default: 3-up on large/desktop */
.rg-g-grid{
  display: grid;
  gap: clamp(10px, 2vw, 16px);
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ← 3 columns */
}

/* 2-up on tablets & mobile */
@media (max-width: 900px){
  .rg-g-grid{
    grid-template-columns: repeat(2, 1fr);        /* ← 2 columns */
  }
}

/* (Optional) super-small phones: keep 2-up but tighten gap */
@media (max-width: 380px){
  .rg-g-grid{ gap: 8px; }
}

/* ============== CONTACT LUXE (alt design) ============== */
.rrg-contactLuxe{
  position:relative; isolation:isolate;
  padding: clamp(56px, 4vw, 140px) 0;
  background: var(--white-color);
  color: var(--text-color);
}

/* Ambient canvas: soft radial glows */
.cxL-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1100px 520px at 12% -8%, color-mix(in oklab, var(--primary-color), #fff 92%) 0%, transparent 55%),
    radial-gradient(1000px 520px at 100% -10%, color-mix(in oklab, var(--primary-color), #fff 94%) 0%, transparent 60%),
    linear-gradient(180deg, #fff, var(--secondary-color));
}

/* Container */
.rrg-contactLuxe .container{max-width:1300px;margin:0 auto;padding:0 20px;}

/* Header */
.cxL-head{ text-align:center; margin-bottom: clamp(18px, 4.5vw, 40px); }
.cxL-kicker{
  display:inline-flex; gap:8px; align-items:center;
  font:700 12px/1 var(--default-font); letter-spacing:.18em; text-transform:uppercase;
  color: var(--primary-color);
  padding:8px 12px; border-radius:999px;
  background: color-mix(in oklab, var(--primary-color), #fff 90%);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 75%);
}
.cxL-title{
  margin:12px 0 8px; color: var(--primary-color);
  font: 400 clamp(28px, 5.8vw, 52px)/1.06 var(--default-font);
  letter-spacing:.2px;
}
.cxL-sub{ max-width: 62ch; margin:0 auto; line-height:1.8; }

/* Chips */
.cxL-chips{
  list-style:none; padding:0; margin: clamp(12px, 2.6vw, 20px) 0 0;
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
.cxL-chips .chip{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px; border-radius:999px; background:#fff;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  box-shadow: var(--shadow-sm); font-weight:800;
}
.cxL-chips .chip a{ color: var(--primary-color); text-decoration:none; }
.cxL-chips .chip i{ color: var(--primary-color); }

/* Main grid */
.cxL-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items:start;
}

/* Form card (frosted glass) */
.cxL-form{
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.94));
  backdrop-filter: blur(9px) saturate(140%); -webkit-backdrop-filter: blur(9px) saturate(140%);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  border-radius: 22px; padding: clamp(14px, 2.2vw, 18px);
  box-shadow: 0 12px 28px rgba(17,24,39,.12), 0 1px 0 #fff inset;
}
.cxL-form__head{ display:flex; gap:10px; align-items:center; margin-bottom: 10px; }
.cxL-form__head strong{ display:block; color: var(--primary-color); letter-spacing:.02em; }
.cxL-form__head small{ color: var(--muted-text); }


.row{ display:grid; gap:12px; margin-bottom:12px; }
.row.two{ grid-template-columns: 1fr 1fr; }

.field{ display:flex; flex-direction:column; gap:6px; }
.label{ font-weight:800; font-size:13px; color: var(--primary-color); }
.field input, .field textarea{
  width:100%; border-radius:14px; padding:12px 14px; box-sizing:border-box;
  background: linear-gradient(180deg,#fff,#f8fafc);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 85%);
  box-shadow: 0 1px 0 #fff inset, var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea{ min-height: 120px; resize:vertical; }
.field input:hover, .field textarea:hover{ border-color: color-mix(in oklab, var(--primary-color), #fff 70%); }
.field input:focus, .field textarea:focus{
  outline:none; border-color: var(--primary-color);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary-color), transparent 70%), 0 1px 0 #fff inset; background:#fff;
}

.btn-default.wide{ width:100%; border-radius:999px; font-weight:800; box-shadow:0 14px 28px rgba(17,24,39,.14);padding: 20px 0px; }
.btn-default.wide:hover{ transform: translateY(-1px); box-shadow:0 18px 34px rgba(17,24,39,.18); background:black; color:white; }

/* Info stack */
.cxL-info{ display:grid; gap:12px; }

/* Hours (dark glass) */
.hours{
  background: linear-gradient(180deg, rgba(21,24,29,.86), rgba(21,24,29,.78));
  color:#fff; border-radius:18px; padding:14px;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 10px 30px rgba(17,24,39,.22), inset 0 1px 0 rgba(255,255,255,.1);
}
.h-head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.h-head strong{ letter-spacing:.02em; }
.h-head small{ display:block; color:#d8dde7; }
.h-list{ list-style:none; margin:0; padding:0; }
.h-list li{
  display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:12px;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  transition:.2s;
}
.h-list li + li{ margin-top:8px; }
.h-list li:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }

/* Map */
.map{
  border-radius:18px; overflow:hidden;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  box-shadow: var(--shadow-sm);
}
.map iframe{ display:block; width:100%; height: 320px; filter: grayscale(8%) contrast(105%); }

/* Quick cards */
.quick{ display:grid; gap:12px; }
.q{
  display:flex; gap:12px; align-items:flex-start; background:#fff; border-radius:16px;
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 86%); padding:12px; box-shadow: var(--shadow-sm);
  transition:.18s;
}
.q:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,24,39,.12); }
.q-ico{
  width:40px; height:40px; border-radius:999px; display:grid; place-items:center;
  background: radial-gradient(85% 85% at 30% 20%, #fff 0%, #f5f6f8 60%, #eef0f4 100%);
  color: var(--primary-color);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 72%);
  box-shadow: 0 6px 14px rgba(17,24,39,.12);
}
.q a{ color: var(--primary-color); font-weight:800; text-decoration:none; margin-bottom: 0px !important; }
.q a:hover{ color: var(--primary-600); }

/* Responsive */
@media (max-width: 1000px){
  .cxL-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .row.two{ grid-template-columns: 1fr; }
  .map iframe{ height: 280px; }
}

/* ============== THEME-AWARE FLOATING CONTACT ============== */
.rrg-float{
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: calc(clamp(12px, 3vw, 24px) + env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  gap: 10px;
  font-family: var(--default-font);
}

/* Base FAB */
.fab{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-family: var(--default-font);
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.fab i{ font-size: 18px; line-height: 0; }
.fab:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--primary-color), #fff 70%);
}

/* WhatsApp style (theme-matched capsule) */
.fab-wa{
  background:#25d366 ;
  color: #fff;
  border-color: color-mix(in oklab, var(--primary-color), #fff 75%);
}
.fab-wa:hover{
  background: #25d366 ;
}

/* Call */
.fab-call{
  cursor: pointer;
  list-style: none;       /* summary default marker removal */
}
.fab-call::-webkit-details-marker{ display:none; } /* Safari */

/* Speed-dial panel */
.fab-menu{
  position: relative;
}
.fab-menu[open] .dial{
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.dial{
  position: absolute;
  right: 0; bottom: calc(100% + 8px);
  display: grid; gap: 8px;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 82%);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  min-width: max(240px, 14vw);
  opacity: 0; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.dial-item{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--primary-color); text-decoration: none; font-weight: 800;
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 88%);
  background: #fff;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.dial-item:hover{
  background: color-mix(in oklab, #fff, var(--secondary-color) 10%);
  border-color: color-mix(in oklab, var(--primary-color), #fff 70%);
  transform: translateY(-1px);
}

/* Label visibility (hide on tight desktops) */
.fab-label{ font-weight: 800; }

/* ================= Mobile layout: sticky action bar ================= */
@media (max-width: 640px){
  .rrg-float{
    left: 0; right: 0; bottom: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px clamp(10px, 4vw, 16px);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.02));
  }
  .fab, .fab-call{
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .fab-label{ display: inline; }
  .fab i{ font-size: 16px; }
  /* make dial a full-width sheet above the bar */
  .dial{
    position: fixed;
    inset: auto 0 calc(64px + env(safe-area-inset-bottom)) 0;
    margin: 0 auto;
    max-width: min(560px, 92vw);
    min-width: unset;
    border-radius: 16px;
    padding: 10px;
  }
}



/* ===== Section frame ===== */
.rg-dest{padding:clamp(48px,8vw,110px) 0;background:var(--white-color);color:var(--text-color);}
.rg-dest .container{max-width:1300px;margin:0 auto;padding:0 20px;}
.rg-dest__head{text-align:center;margin-bottom:clamp(18px,4vw,36px);}
.rg-dest .kicker{
  display:inline-flex;gap:8px;align-items:center;
  font:700 12px/1 var(--default-font);letter-spacing:.18em;text-transform:uppercase;
  color:var(--primary-color);padding:8px 12px;border-radius:999px;
  background:color-mix(in oklab,var(--primary-color),#fff 90%);
  border:1px solid color-mix(in oklab,var(--primary-color),#fff 75%);
}
.rg-dest .title{
  margin:12px 0 8px;font:400 clamp(28px,5.8vw,48px)/1.06 var(--default-font);
  color:var(--primary-color);letter-spacing:.2px;
}
.rg-dest .sub{max-width:62ch;margin:0 auto;line-height:1.8;color:var(--muted-text);}

/* ===== Map canvas ===== */
.rg-map{position:relative;border-radius:20px;overflow:hidden;
  border:1px solid color-mix(in oklab,var(--primary-color),#fff 86%);box-shadow:var(--shadow-sm);}
.rg-map img{display:block;width:100%;height:auto;}

/* ===== Pins ===== */
.pin{
  position:absolute; width:16px;height:16px;border-radius:50%;
  background:var(--primary-color); border:2px solid #fff;
  box-shadow:0 8px 18px rgba(17,24,39,.18);
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease;
  touch-action: manipulation;
}
.pin::after{
  content:""; position:absolute; inset:-9px; border-radius:50%;
  background:color-mix(in oklab,var(--primary-color),transparent 70%);
  opacity:0; transition:opacity .18s ease;
}
.pin:hover{ transform: scale(1.08); box-shadow:0 12px 28px rgba(17,24,39,.22); }
.pin:hover::after{ opacity:.8; }

/* ===== Flyout card (shown on hover/tap) ===== */
.rg-flycard{
  position:absolute; z-index:3; display:none;
  max-width:min(360px, 80vw);
  padding:12px; border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,255,255,.97));
  border:1px solid color-mix(in oklab,var(--primary-color),#fff 82%);
  box-shadow:0 14px 30px rgba(17,24,39,.18);
  backdrop-filter: blur(8px) saturate(130%); -webkit-backdrop-filter: blur(8px) saturate(130%);
  color:var(--text-color);
  animation: flyIn .18s ease;
}
@keyframes flyIn{ from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:translateY(0)} }
.rg-flycard h3{margin:0 0 6px;color:var(--primary-color);font-weight:600; font-size: 16px;}
.rg-flycard p{margin:0 0 8px;line-height:1.6;}
.rg-flycard .meta{display:flex;gap:12px;flex-wrap:wrap;color:var(--muted-text);font-weight:700;font-size:.95em;}

/* Make pins/cards slightly smaller on narrow phones */
@media (max-width: 480px){
  .pin{ width:14px; height:14px; }
  .rg-flycard{ max-width: min(320px, 90vw); padding: 10px; }
}

/* Desktop: reduce map height by controlling width + aspect-ratio */
@media (min-width: 1024px){
  .rg-map--desk-short{
    /* tweak these two lines to get the height you want */
    width: min(1100px, 92vw);      /* narrower = shorter height */
    aspect-ratio: var(--map-ratio, 16/9); /* must match your image ratio */
    margin: 0 auto;               /* center on page */
    position: relative;           /* already present in your base */
  }
  .rg-map--desk-short img{
    width: 100%;
    height: 100%;
    object-fit: cover;            /* with correct ratio, no cropping occurs */
    display: block;
  }
}

/* Optional presets if you want even smaller: apply one of these classes too */
@media (min-width: 1024px){
  .rg-map--desk-sm { width: min(760px, 88vw); }
  .rg-map--desk-xs { width: min(640px, 84vw); }
}

/* Mobile stays fluid; nothing to change */
@media (max-width: 1023.98px){
  .rg-map--desk-short{ width: 100%; aspect-ratio: auto; } /* falls back to your existing responsive rules */
}


@media(max-width:600px){
  .rg-flycard h3{
    font-size:14px !important;
    font-weight: 600;
  }
  .rg-flycard p{
    font-size: 14px !important;
  }
}

/* ============ NEARBY DIVINE SPOTS (2-up) ============ */
.rg-divine{
  padding: clamp(48px, 8vw, 110px) 0;
  background: var(--white-color);
  color: var(--text-color);
}
.rg-divine .container{ max-width:1300px; margin:0 auto; padding:0 20px; }

/* Header */
.rg-divine__head{ text-align:center; margin-bottom: clamp(18px, 4.2vw, 36px); }
.rg-divine .kicker{
  display:inline-flex; gap:8px; align-items:center;
  font:700 12px/1 var(--default-font); letter-spacing:.18em; text-transform:uppercase;
  color: var(--primary-color);
  padding:8px 12px; border-radius:999px;
  background: color-mix(in oklab, var(--primary-color), #fff 90%);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 75%);
}
.rg-divine .title{
  margin:12px 0 8px; color: var(--primary-color);
  font: 400 clamp(28px, 5.6vw, 46px)/1.06 var(--default-font);
  letter-spacing:.2px;
}
.rg-divine .sub{ max-width:62ch; margin:0 auto; line-height:1.8; color: var(--muted-text); }

/* Grid */
.rg-divine__grid{
  list-style:none; padding:0; margin:0;
  display:grid; gap: clamp(12px, 2.4vw, 18px);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px){
  .rg-divine__grid{ grid-template-columns: 1fr; }
}

/* Card */
.d-card{
  position:relative; overflow:hidden; border-radius: var(--radius, 28px);
  border: 1px solid color-mix(in oklab, var(--primary-color), #fff 86%);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;               /* keeps consistent height; tweak if needed */
  background: var(--secondary-color);
  isolation: isolate;
}

/* Media (image) */
.d-media, .d-media img{ width:100%; height:100%; display:block; }
.d-media img{
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

/* Overlay gradient + content */
.d-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column;
  justify-content:space-between; padding: clamp(12px, 2.2vw, 18px);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(21,24,29,.45) 68%, rgba(21,24,29,.68) 100%);
  color:#fff;
}
.d-top{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; font-weight:800;
  background: rgba(255,255,255,.86);
  color: var(--primary-color);
  border:1px solid color-mix(in oklab, var(--primary-color), #fff 78%);
  box-shadow: 0 6px 14px rgba(17,24,39,.12);
}
.chip i{ color: var(--primary-color); }

.d-bottom{ margin-top:auto; }
.d-title{
  margin: 6px 0 2px;
  font-family: var(--default-font);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.d-copy{ margin: 2px 0 10px; line-height:1.65; color: #e8eaf0; max-width: 50ch; }
.d-cta{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; color:#fff; text-decoration:none;
  padding:10px 14px; border-radius:999px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-600));
  border: 1px solid color-mix(in oklab, #fff, var(--primary-color) 82%);
  box-shadow: 0 10px 22px rgba(17,24,39,.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.d-cta:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(17,24,39,.22); }

/* Hover: zoom image slightly for premium feel */
.d-card:hover .d-media img{ transform: scale(1.08); }

/* Small tweaks on phones */
@media (max-width: 540px){
  .d-card{ aspect-ratio: 16/14; }
  .d-copy{ font-size: .95rem; }
}

/* Optional: tighter desktop height if needed */
@media (min-width: 1024px){
  .rg-divine--short .d-card{ aspect-ratio: 16/10; }
}


