:root {
  --rcube-red: #d51f2a;
  --rcube-ink: #121212;
  --rcube-muted: #666;
  --rcube-line: #e8e2da;
  --rcube-soft: #fbf8f4;
  --rcube-gold: #b9823b;
}

body {
  color: var(--rcube-ink);
  background: #fff;
}

a {
  color: inherit;
}

.main-wrapper {
  overflow: hidden;
}

.rc-topbar {
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.rc-topbar a {
  color: #fff;
  text-decoration: none;
}

.rc-topbar-contact {
  flex: 1;
}

.rc-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rcube-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.rc-logo {
  align-items: center;
  background: #111;
  display: inline-flex;
  padding: 6px 12px;
}

.rc-logo img {
  max-height: 46px;
  width: auto;
}

.rc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rc-nav a {
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.rc-nav a:hover,
.rc-nav a.active {
  color: var(--rcube-red);
}

.rc-nav-dropdown {
  position: relative;
}

.rc-nav-menu {
  background: #fff;
  border: 1px solid var(--rcube-line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  display: none;
  left: 50%;
  min-width: 180px;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  z-index: 100;
}

.rc-nav-dropdown:hover .rc-nav-menu {
  display: block;
}

.rc-nav-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.rc-menu-button {
  border: 1px solid var(--rcube-line);
  background: #fff;
  height: 42px;
  width: 42px;
  display: none;
  align-items: center;
  justify-content: center;
}

.rc-mobile-panel {
  display: none;
  border-top: 1px solid var(--rcube-line);
  padding: 12px 0 18px;
}

.rc-mobile-panel a {
  display: block;
  padding: 12px 0;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.rc-mobile-location {
  border: 0;
}

.rc-mobile-location summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 12px 0;
  position: relative;
}

.rc-mobile-location summary::-webkit-details-marker {
  display: none;
}

.rc-mobile-location summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  position: absolute;
  right: 4px;
  top: 11px;
}

.rc-mobile-location[open] summary::after {
  content: "\2212";
}

.rc-mobile-location-menu {
  border-left: 2px solid var(--rcube-red);
  margin: 0 0 8px 4px;
  padding-left: 16px;
}

.rc-mobile-location-menu a {
  font-weight: 600;
  padding: 10px 0;
}

.rc-hero {
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.rc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.rc-hero-slider > .container {
  position: relative;
  z-index: 2;
}

.rc-hero-slides,
.rc-hero-slide {
  inset: 0;
  position: absolute;
}

.rc-hero-slides {
  z-index: 0;
}

.rc-hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 4.8s ease;
}

.rc-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.rc-hero-arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 34px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  z-index: 3;
}

.rc-hero-arrow:hover,
.rc-hero-arrow:focus-visible {
  background: var(--rcube-red);
}

.rc-hero-prev {
  left: 24px;
}

.rc-hero-next {
  right: 24px;
}

.rc-hero-dots {
  bottom: 22px;
  display: flex;
  gap: 9px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.rc-hero-dots button {
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition: background 200ms ease, width 200ms ease;
  width: 9px;
}

.rc-hero-dots button.active {
  background: #fff;
  border-radius: 5px;
  width: 28px;
}

.rc-hero-content {
  position: relative;
  color: #fff;
  padding: 120px 0 92px;
  max-width: 720px;
}

.rc-eyebrow {
  color: var(--rcube-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.rc-hero h1,
.rc-page-hero h1 {
  color: inherit;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  margin: 0 0 18px;
}

.rc-hero p,
.rc-page-hero p {
  color: inherit;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.rc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rc-card-body .rc-actions {
  margin-top: 18px;
}

.rc-event-detail-actions {
  margin-top: 24px;
}

.rc-btn {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.rc-btn-primary {
  background: var(--rcube-red);
  color: #fff;
}

.rc-btn-primary:hover {
  color: #fff;
  background: #b9151f;
}

.rc-btn-light {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.rc-btn-outline {
  background: transparent;
  border-color: var(--rcube-line);
  color: #111;
}

.rc-section {
  padding: 76px 0;
}

.rc-section-soft {
  background: var(--rcube-soft);
}

.rc-section-title {
  margin-bottom: 32px;
}

.rc-section-title h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
}

.rc-section-title p {
  color: var(--rcube-muted);
  margin: 12px 0 0;
  max-width: 760px;
}

.rc-feature-grid,
.rc-card-grid {
  display: grid;
  gap: 22px;
}

.rc-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-feature,
.rc-card,
.rc-directory-card,
.rc-service-card,
.rc-contact-card {
  background: #fff;
  border: 1px solid var(--rcube-line);
  border-radius: 8px;
}

.rc-feature {
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.rc-feature img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.rc-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74));
}

.rc-feature-body {
  bottom: 0;
  color: #fff;
  padding: 22px;
  position: absolute;
  z-index: 1;
}

.rc-feature-body h3,
.rc-card h3,
.rc-directory-card h3 {
  color: inherit;
  margin: 0 0 8px;
}

.rc-feature-body p {
  margin: 0;
}

.rc-card {
  overflow: hidden;
}

.rc-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.rc-card-body {
  padding: 22px;
}

.rc-card h3 a,
.rc-event-card-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.rc-event-detail-row > [class*="col-"] {
  display: flex;
}

.rc-event-detail-card {
  background: #fff;
  border: 1px solid var(--rcube-line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 28px 34px;
  width: 100%;
}

.rc-event-detail-card h2 {
  color: #06133d;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.rc-event-detail-card p {
  color: #24313f;
  font-size: 15px;
  line-height: 1.65;
  margin: 18px 0 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rc-rich-content {
  color: #24313f;
  font-size: 15px;
  line-height: 1.65;
  margin: 18px 0 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rc-rich-content a {
  color: var(--rcube-red);
  font-weight: 800;
  text-decoration: underline;
}

.rc-event-detail-list {
  display: grid;
  gap: 8px;
}

.rc-event-detail-list div {
  border-bottom: 1px solid var(--rcube-line);
  padding-bottom: 8px;
}

.rc-event-detail-list span {
  color: var(--rcube-muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-event-detail-list strong {
  color: #111;
  display: block;
  font-size: 15px;
  line-height: 1.25;
  margin-top: 2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rc-event-description-title {
  color: #06133d;
  font-size: 18px;
  margin: 22px 0 4px;
}

.rc-event-image-large {
  background: #fff;
  border: 1px solid var(--rcube-line);
  border-radius: 8px;
  height: 50vh;
  max-height: 520px;
  min-height: 340px;
  overflow: hidden;
  width: 100%;
}

.rc-event-image-large img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rc-page-hero {
  min-height: 390px;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.rc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.rc-quick-links-page-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rc-quick-links-page-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.rc-page-hero .container {
  position: relative;
  padding-bottom: 72px;
}

.rc-logo-wall-hero {
  background: #f4f1ec;
  overflow: hidden;
}

.rc-logo-wall-hero::before {
  background: rgba(0, 0, 0, 0.54);
  z-index: 1;
}

.rc-logo-wall-hero .container {
  z-index: 2;
}

.rc-hero-logo-wall {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  inset: -32px;
  opacity: 0.88;
  position: absolute;
  transform: rotate(-1deg) scale(1.04);
}

.rc-hero-logo-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  justify-content: center;
  min-height: 116px;
  padding: 18px;
}

.rc-hero-logo-item img {
  max-height: 86px;
  max-width: 100%;
  object-fit: contain;
}

.rc-filterbar {
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--rcube-line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
  padding: 16px;
}

.rc-search {
  color: #111;
  border: 1px solid var(--rcube-line);
  border-radius: 6px;
  display: block;
  font-size: 16px;
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.rc-search::placeholder {
  color: #777;
  opacity: 1;
}

.rc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-chip {
  background: #fff;
  border: 1px solid var(--rcube-line);
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 40px;
  padding: 9px 15px;
}

.rc-chip.active {
  background: var(--rcube-red);
  border-color: var(--rcube-red);
  color: #fff;
}

.rc-directory-grid {
  display: grid;
  gap: 30px 38px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-directory-card {
  color: #2b333c;
  min-height: 218px;
  padding: 14px 22px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rc-directory-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.rc-logo-box {
  align-items: center;
  background: #fff;
  border: 0;
  display: flex;
  height: 140px;
  justify-content: center;
  margin-bottom: 10px;
  padding: 14px;
}

.rc-logo-box img {
  max-height: 126px;
  max-width: 100%;
  object-fit: contain;
}

.rc-brand-tile {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.rc-brand-tile h3 {
  color: #2a3139;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin: 8px 0 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.rc-brand-detail {
  background: #fff;
  padding: 58px 0 76px;
  text-align: center;
}

.rc-brand-logo-large {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 210px;
  margin-bottom: 24px;
}

.rc-brand-logo-large img {
  max-height: 210px;
  max-width: min(420px, 90vw);
  object-fit: contain;
}

.rc-brand-detail h1 {
  color: #27313b;
  font-size: 26px;
  margin: 0 0 16px;
}

.rc-insta-link {
  align-items: center;
  color: #000;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  margin-bottom: 28px;
  text-decoration: none;
  width: 38px;
}

.rc-brand-description {
  color: #101828;
  font-size: 22px;
  line-height: 1.55;
  margin: 0 auto 48px;
  max-width: 820px;
}

.rc-website-block {
  margin: 0 auto 66px;
  max-width: 944px;
}

.rc-website-block p {
  color: #344054;
  margin-bottom: 12px;
}

.rc-website-block a {
  border: 1px solid #8f8f8f;
  color: #666;
  display: block;
  font-size: 20px;
  font-weight: 800;
  padding: 16px 20px;
  text-decoration: none;
  word-break: break-word;
}

.rc-brand-info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px;
}

.rc-brand-info-grid div {
  border-left: 1px solid #b8b8b8;
  min-width: 0;
  padding: 4px 26px 20px;
}

.rc-brand-info-grid div:first-child {
  border-left: 0;
}

.rc-brand-info-grid span {
  color: #000;
  display: block;
  font-size: 18px;
  margin-bottom: 28px;
}

.rc-brand-info-grid strong {
  color: #00b8ad;
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rc-brand-info-grid a {
  color: inherit;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: none;
  word-break: break-word;
}

.rc-meta {
  color: var(--rcube-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-quick-directory {
  background: #dedede;
  padding: 0 0 82px;
}

.rc-quick-hero {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 420px;
  position: relative;
}

.rc-quick-hero::before {
  background: linear-gradient(90deg, rgba(190, 158, 138, 0.72) 0%, rgba(190, 158, 138, 0.52) 38%, rgba(190, 158, 138, 0.14) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.rc-quick-hero .container {
  position: relative;
}

.rc-quick-hero-copy {
  color: #fff;
  max-width: 980px;
  padding: 84px 0 96px;
}

.rc-quick-hero-copy span {
  color: #6b123b;
  display: block;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 18px;
}

.rc-quick-directory h1 {
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.85;
  margin: 50px 0 30px;
  text-align: center;
  text-transform: uppercase;
}

.rc-quick-intro {
  color: #30363d;
  font-size: 18px;
  margin: -8px auto 34px;
  max-width: 740px;
  text-align: center;
}

.rc-quick-section {
  margin-top: 44px;
}

.rc-quick-section .rc-section-title {
  margin-bottom: 18px;
}

.rc-quick-section .rc-section-title h2 {
  font-size: 34px;
}

.rc-quick-directory .rc-directory-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  min-height: 216px;
}

.rc-quick-directory .rc-logo-box {
  background: transparent;
}

.rc-service-card {
  padding: 26px;
}

.rc-service-card span {
  align-items: center;
  background: var(--rcube-red);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.rc-footer {
  background: #111;
  color: #fff;
  padding: 58px 0 0;
}

.rc-footer a {
  color: #ddd;
  text-decoration: none;
}

.rc-footer a:hover {
  color: #fff;
}

.rc-footer h6 {
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.rc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rc-footer li {
  margin-bottom: 9px;
}

.rc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 40px;
  padding: 18px 0;
}

.rc-map iframe {
  display: block;
  width: 100%;
}

@media (max-width: 1199px) {
  .rc-nav {
    display: none;
  }

  .rc-menu-button {
    display: inline-flex;
  }

  .rc-mobile-panel.open {
    display: block;
  }

  .rc-feature-grid,
  .rc-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-brand-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-brand-info-grid div {
    border-left: 0;
    border-top: 1px solid #ddd;
  }
}

@media (max-width: 767px) {
  .rc-topbar .container {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
  }

  .rc-hero {
    min-height: 660px;
  }

  .rc-hero-content {
    padding: 88px 0 64px;
  }

  .rc-hero-arrow {
    height: 40px;
    width: 40px;
  }

  .rc-hero-prev {
    left: 10px;
  }

  .rc-hero-next {
    right: 10px;
  }

  .rc-section {
    padding: 52px 0;
  }

  .rc-feature-grid,
  .rc-card-grid,
  .rc-directory-grid,
  .rc-brand-info-grid,
  .rc-service-grid,
  .rc-filterbar {
    grid-template-columns: 1fr;
  }

  .rc-brand-description {
    font-size: 18px;
  }

  .rc-quick-hero {
    min-height: 520px;
  }

  .rc-quick-hero-copy {
    padding: 70px 0 72px;
  }

  .rc-event-detail-row > [class*="col-"] {
    display: block;
  }

  .rc-event-image-large img {
    height: auto;
    min-height: 0;
  }
}
