:root {
  color-scheme: light;
  --rb-bg: #f4f8f8;
  --rb-bg-deep: #03090d;
  --rb-surface: rgba(255, 255, 255, 0.84);
  --rb-surface-strong: #e8f2f2;
  --rb-surface-soft: rgba(18, 102, 108, 0.055);
  --rb-line: rgba(14, 80, 88, 0.13);
  --rb-line-strong: rgba(14, 80, 88, 0.22);
  --rb-text: #10272c;
  --rb-muted: #61777b;
  --rb-green: #0f817a;
  --rb-green-strong: #0284c7;
  --rb-action-start: #5eead4;
  --rb-action-end: #38bdf8;
  --rb-yellow: #9a6400;
  --rb-violet: #a78bfa;
  --rb-shadow: 0 30px 80px rgba(31, 75, 82, 0.14);
  --rb-radius-xl: 28px;
  --rb-radius-lg: 20px;
  --rb-radius-md: 14px;
  --rb-container: 1180px;
  /* fixed mobile bottom nav footprint: 70px height + 12px offset */
  --rb-mobile-nav-clearance: 82px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-title: 19px;
  --font-size-hero: clamp(2.125rem, 3.3vw, 3.25rem);
  --font-size-display: clamp(2.5rem, 4vw, 4rem);
  --line-height-xs: 1.4;
  --line-height-sm: 1.35;
  --font-weight-normal: 500;
  --font-weight-bold: 800;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--rb-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 4%, rgba(94, 234, 212, 0.2), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(167, 139, 250, 0.16), transparent 30rem),
    linear-gradient(145deg, #fbfdfc 0%, #eef7f7 48%, #f7f4ff 100%);
  color: var(--rb-text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  z-index: 0;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  pointer-events: none;
  content: "";
}

body::before {
  top: -14rem;
  left: -12rem;
  background: #2dd4bf;
}

body::after {
  right: -14rem;
  bottom: -14rem;
  background: #8b5cf6;
}

body > nav,
body > header,
body > main,
body > footer,
body > div {
  position: relative;
  z-index: 1;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--rb-container), calc(100% - 40px));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

/* Floating glass navigation */
.site-navbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.site-navbar > .container {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--rb-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(37, 78, 84, 0.14), inset 0 1px rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: auto;
}

.site-logo {
  display: inline-flex;
  min-width: 156px;
  align-items: center;
}

.site-logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-item {
  position: relative;
}

.site-nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.active,
.nav-dropdown-parent.is-open > .site-nav-link {
  background: rgba(15, 87, 94, 0.075);
  color: var(--rb-text);
}

.site-nav-link:focus-visible,
.mobile-nav-popup-link:focus-visible,
.product-actions a:focus-visible,
.front-stat-read-more:focus-visible {
  outline: 2px solid var(--rb-green);
  outline-offset: 3px;
}

.site-nav-link i:first-child {
  color: var(--rb-green);
}

.nav-cta-link {
  border: 1px solid rgba(110, 231, 216, 0.38);
  background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
  color: #04171b;
  box-shadow: 0 10px 28px rgba(56, 189, 248, 0.18);
}

.site-navbar .nav-cta-whatsapp {
  border: 1px solid rgba(110, 231, 216, 0.38);
  background: linear-gradient(145deg, #6ee7b7, #22c55e);
  color: #04171b;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.22);
}

.site-navbar .nav-cta-whatsapp i,
.nav-cta-link i {
  color: inherit;
}

.nav-cta-link:hover,
.nav-cta-link:focus-visible {
  background: linear-gradient(145deg, #99f6e4, #7dd3fc);
  color: #04151a;
  transform: translateY(-1px);
}

.site-navbar .nav-cta-whatsapp:hover,
.site-navbar .nav-cta-whatsapp:focus-visible {
  background: linear-gradient(145deg, #bbf7d0, #4ade80);
  color: #04151a;
  transform: translateY(-1px);
}

.nav-dropdown-caret {
  margin-left: 2px;
  font-size: var(--font-size-xs);
  transition: transform 180ms ease;
}

.nav-dropdown-parent.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--rb-line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--rb-shadow);
  backdrop-filter: blur(22px);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

.nav-dropdown-panel a:hover {
  background: var(--rb-surface-soft);
  color: var(--rb-text);
}

/* Hero */
.hero-section {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rb-line);
  background: #dfeceb;
}

.hero-bg-image,
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-video {
  opacity: 0.96;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(167, 139, 250, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(237, 248, 247, 0.1) 0%, rgba(240, 248, 248, 0.03) 47%, transparent 76%),
    linear-gradient(0deg, rgba(244, 248, 248, 0.35) 0%, rgba(244, 248, 248, 0.03) 22%, transparent 48%);
}

.hero-shade::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 87, 94, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 87, 94, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent 72%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-top: 132px;
  padding-bottom: 72px;
}

.hero-content > .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy-column {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 20px 40px 18px 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--rb-radius-xl);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 80px rgba(31, 75, 82, 0.2), inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
}

.hero-copy-column::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--rb-action-start), var(--rb-action-end));
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.25);
  content: "";
}

.hero-title {
  max-width: none;
  margin: 0 0 22px;
  color: var(--rb-text);
  background: linear-gradient(112deg, #10272c 12%, #0f817a 65%, #0284c7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: none;
}

.hero-title em {
  color: var(--rb-green);
  font-style: normal;
}

.hero-copy {
  max-width: none;
  margin: 0;
  color: var(--rb-muted);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.video-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 15px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.video-link:hover {
  transform: translateY(-2px);
}

.video-link {
  border: 1px solid var(--rb-line-strong);
  background: rgba(255, 255, 255, 0.84);
  color: var(--rb-text);
  backdrop-filter: blur(16px);
}

.video-link span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 231, 216, 0.14);
  color: var(--rb-green);
}

/* Adventure catalogue */
.product-showcase {
  position: relative;
  padding: 100px 0 36px;
}

.showcase-heading {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin-bottom: 18px;
}

.section-kicker,
.paint-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--rb-green);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before,
.paint-label::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.showcase-heading h2 {
  margin: 0;
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.showcase-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--rb-muted);
  font-size: var(--font-size-base);
  line-height: 1.75;
}

.empty-products {
  padding: 28px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius-lg);
  background: var(--rb-surface);
  color: var(--rb-muted);
}

.type-block {
  padding: 66px 0;
}

.type-block + .type-block .container {
  padding-top: 66px;
  border-top: 1px solid var(--rb-line);
}

.type-heading {
  position: relative;
  margin: 0 0 26px;
  padding-left: 19px;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.type-heading::before {
  position: absolute;
  top: 0.17em;
  bottom: 0.12em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--rb-green);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.38);
  content: "";
}

.type-block .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.type-block .grid > div {
  min-width: 0;
}

.product-card,
.type-intro-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 54px rgba(31, 75, 82, 0.12), inset 0 1px rgba(255, 255, 255, 0.9);
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  border-color: var(--rb-line-strong);
  box-shadow: 0 28px 68px rgba(31, 75, 82, 0.17), 0 0 0 1px rgba(15, 129, 122, 0.05), 0 18px 50px rgba(56, 189, 248, 0.08);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--rb-surface-strong);
}

.product-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 24, 29, 0.02), rgba(5, 24, 29, 0.16));
  content: "";
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.product-card:hover .product-card-media img {
  transform: scale(1.045);
}

.product-category,
.product-price {
  position: absolute;
  z-index: 2;
  top: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.product-category {
  left: 14px;
  border: 1px solid rgba(110, 231, 216, 0.3);
  background: rgba(250, 255, 254, 0.9);
  color: var(--rb-green);
}

.product-price {
  right: 14px;
  border: 1px solid rgba(251, 213, 107, 0.34);
  background: rgba(255, 248, 225, 0.92);
  color: var(--rb-yellow);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 10px;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.product-card-body > p {
  margin: 0 0 20px;
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: auto 0 18px;
}

.product-meta span {
  display: flex;
  min-width: 0;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 5px;
  overflow: hidden;
  border: 1px solid var(--rb-line);
  border-radius: 12px;
  background: var(--rb-surface-soft);
  color: #4e686d;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
  text-align: center;
  text-overflow: ellipsis;
}

.product-meta i {
  color: var(--rb-green);
  font-size: var(--font-size-base);
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--rb-line);
}

.product-actions.is-card-only {
  grid-template-columns: 1fr;
}

.product-actions .site-nav-link {
  min-width: 0;
  min-height: 44px;
  padding: 0 9px;
  border: 1px solid var(--rb-line);
  border-radius: 12px;
  font-size: var(--font-size-xs);
}

.product-actions .card-view-link {
  background: rgba(15, 87, 94, 0.045);
  color: var(--rb-text);
}

.product-actions .card-view-link:hover {
  border-color: var(--rb-line-strong);
  background: rgba(15, 87, 94, 0.09);
}

.product-actions .nav-cta-book {
  border-color: rgba(110, 231, 216, 0.36);
  background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
  color: #04171b;
}

/* Editorial overview tile */
.type-intro-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.type-intro-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 253, 252, 0.03) 0%,
    rgba(250, 253, 252, 0.12) 42%,
    rgba(250, 253, 252, 0.82) 68%,
    rgba(250, 253, 252, 0.98) 100%
  );
  content: "";
}

.type-intro-bg-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-intro-title-wrap {
  padding: 22px;
}

.type-intro-title-wrap .paint-label {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(110, 231, 216, 0.29);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  color: var(--rb-green);
  box-shadow: 0 8px 22px rgba(31, 75, 82, 0.12);
}

.type-intro-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 22px;
}

.type-intro-copy {
  padding: 18px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(31, 75, 82, 0.1), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.type-intro-copy:only-child {
  grid-column: 1 / -1;
}

.type-intro-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.type-intro-copy p {
  margin: 0;
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

@media (min-width: 1100px) {
  .intro-span-desktop-2 {
    grid-column: span 2;
  }

  .intro-span-desktop-3 {
    grid-column: span 3;
  }
}

/* Reusable editorial story card */
.front-story-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  width: min(var(--rb-container), calc(100% - 40px));
  min-height: 640px;
  margin: 50px auto 110px;
  overflow: hidden;
  border: 1px solid var(--rb-line-strong);
  border-radius: var(--rb-radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--rb-shadow), inset 0 1px rgba(255, 255, 255, 0.9);
  isolation: isolate;
}

.front-story-card::before {
  position: absolute;
  z-index: 0;
  top: -12rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.2), rgba(167, 139, 250, 0.08) 48%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  content: "";
}

.front-story-card::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 42%;
  background: linear-gradient(0deg, rgba(7, 31, 35, 0.38), transparent);
  pointer-events: none;
  content: "";
}

.front-story-card > .front-story-image {
  position: relative;
  z-index: 0;
  inset: auto;
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.front-story-card > .front-story-content {
  position: relative;
  z-index: 2;
  grid-row: 1;
  grid-column: 2;
  width: 100%;
  max-width: none;
  padding: 54px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 249, 0.9));
}

.front-story-card .front-band-inner {
  display: grid;
  max-width: none;
  gap: 20px;
}

.front-story-card .paint-label {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(15, 129, 122, 0.18);
  border-radius: 999px;
  background: rgba(15, 129, 122, 0.065);
}

.front-story-card .front-stat-feature {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

.front-story-card .front-stat-feature > span {
  max-width: 34rem;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.3;
  text-wrap: balance;
}

.front-story-card .front-stat-copy {
  column-count: 2;
  column-gap: 26px;
  column-rule: 1px solid var(--rb-line);
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

.front-story-card .front-stat-copy p {
  margin: 0 0 11px;
  break-inside: avoid;
}

.front-story-card .front-stat-read-more {
  display: inline-flex;
  min-height: 46px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  padding: 0 17px;
  border: 1px solid rgba(110, 231, 216, 0.38);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
  color: #04171b;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

/* Recognition */
.front-recognition {
  padding: 48px 0 56px;
}

.front-recognition-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 26px;
  text-align: center;
}

.front-recognition-eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(15, 129, 122, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--rb-green-strong);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.front-recognition-eyebrow i {
  font-size: var(--font-size-sm);
}

.front-recognition-heading h2 {
  margin: 0;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.front-recognition-heading p {
  max-width: 42rem;
  margin: 0;
  color: var(--rb-muted);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.front-recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.front-recognition-card {
  display: flex;
  min-height: 0;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rb-line);
  border-radius: var(--rb-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(31, 75, 82, 0.08), inset 0 1px rgba(255, 255, 255, 0.95);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

a.front-recognition-card:hover,
a.front-recognition-card:focus-visible {
  border-color: var(--rb-line-strong);
  box-shadow: 0 26px 62px rgba(31, 75, 82, 0.19), 0 0 0 1px rgba(15, 129, 122, 0.06);
  transform: translateY(-3px);
}

.front-recognition-logo {
  display: grid;
  width: 56px;
  min-width: 56px;
  height: 56px;
  place-items: center;
}

.front-recognition-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.front-recognition-logo-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px dashed var(--rb-line-strong);
  border-radius: 16px;
  background: rgba(15, 129, 122, 0.05);
  color: var(--rb-muted);
  font-size: 1.5rem;
}

.front-recognition-copy {
  display: grid;
  gap: 3px;
}

.front-recognition-copy strong {
  color: var(--rb-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.front-recognition-copy small {
  color: var(--rb-muted);
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: 1.3;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 76px 0 28px;
  overflow: hidden;
  border-top: 1px solid var(--rb-line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--rb-muted);
}

.site-footer::before {
  position: absolute;
  top: -12rem;
  left: 12%;
  width: 30rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  filter: blur(90px);
  content: "";
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.2fr;
  gap: 44px;
}

.footer-logo {
  width: auto;
  height: 64px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border-radius: 16px;
  background: #0b2930;
  box-shadow: 0 12px 30px rgba(31, 75, 82, 0.14);
}

.site-footer p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}

.site-footer h3 {
  margin: 5px 0 18px;
  color: var(--rb-text);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: var(--rb-muted);
  font-size: var(--font-size-sm);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--rb-green);
}

.footer-contact p,
.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p + p {
  margin-top: 8px;
}

.footer-contact i,
.footer-address i {
  margin-top: 3px;
  color: var(--rb-green);
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--rb-line);
  border-radius: 12px;
  background: var(--rb-surface-soft);
  color: var(--rb-text);
}

.social-links a:hover {
  border-color: rgba(110, 231, 216, 0.32);
  background: rgba(110, 231, 216, 0.1);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 23px;
  border-top: 1px solid var(--rb-line);
  color: #718d91;
  font-size: var(--font-size-xs);
  text-align: center;
}

/* Video dialog */
#videoPopup {
  position: fixed;
  z-index: 100;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 9, 12, 0.9);
  backdrop-filter: blur(18px);
}

#videoPopupClose {
  position: absolute;
  top: 22px;
  right: 26px;
  background: transparent;
  color: var(--rb-text);
  font-size: var(--font-size-title);
  cursor: pointer;
}

.video-popup-frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--rb-line-strong);
  border-radius: var(--rb-radius-lg);
  background: #000;
  box-shadow: var(--rb-shadow);
}

#heroVideoPlayer,
#heroVideoFrame {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile dock */
.mobile-site-nav-menu,
.mobile-nav-popup-backdrop {
  display: none;
}

@media (max-width: 1099px) {
  .type-block .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-span-tablet-2 {
    grid-column: span 2;
  }

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

@media (max-width: 820px) {
  .desktop-site-nav-menu {
    display: none;
  }

  .site-navbar {
    top: 12px;
  }

  .site-navbar > .container {
    min-height: 62px;
    justify-content: center;
    padding: 8px 14px;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo img {
    height: 38px;
  }

  .mobile-site-nav-menu {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: block;
    height: 70px;
    border: 1px solid var(--rb-line-strong);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 54px rgba(31, 75, 82, 0.2), inset 0 1px rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px);
  }

  .mobile-site-nav-menu .site-nav-list {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-site-nav-menu .site-nav-item {
    min-width: 0;
  }

  .mobile-site-nav-menu .site-nav-link {
    width: 100%;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 3px;
    padding: 6px 2px;
    overflow: hidden;
    border-radius: 14px;
    font-size: var(--font-size-xs);
    text-overflow: ellipsis;
  }

  .mobile-site-nav-menu .site-nav-link i {
    font-size: var(--font-size-base);
  }

  .mobile-dock-spacer {
    display: block;
  }

  .mob-whatsapp-float,
  .mob-book-float {
    position: absolute;
    z-index: 2;
    top: -26px;
    left: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    color: var(--rb-green);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .wa-diamond,
  .book-diamond {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 2px;
    place-items: center;
    border: 5px solid #eef7f7;
    border-radius: 50%;
    color: #04171b;
    font-size: var(--font-size-title);
  }

  .wa-diamond {
    background: linear-gradient(145deg, #6ee7b7, #22c55e);
    color: #04171b;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 26px rgba(34, 197, 94, 0.28);
  }

  .book-diamond {
    background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), 0 0 26px rgba(56, 189, 248, 0.22);
  }

  .mobile-nav-popup-backdrop:not(.hidden) {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: block;
    background: rgba(2, 10, 13, 0.72);
    backdrop-filter: blur(5px);
  }

  .mobile-nav-popup-panel {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 96px;
    left: 16px;
    max-height: 60vh;
    padding: 9px;
    overflow: auto;
    border: 1px solid var(--rb-line-strong);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--rb-shadow);
  }

  .mobile-nav-popup-link {
    display: block;
    padding: 12px;
    border-radius: 11px;
    color: var(--rb-muted);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
  }

  .mobile-nav-popup-link:hover {
    background: var(--rb-surface-soft);
    color: var(--rb-text);
  }

  .front-story-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .front-story-card::after {
    top: 0;
    bottom: auto;
    width: 100%;
    height: 340px;
  }

  .front-story-card > .front-story-image {
    grid-row: 1;
    grid-column: 1;
    height: 340px;
  }

  .front-story-card > .front-story-content {
    grid-row: 2;
    grid-column: 1;
    padding: 46px 42px;
  }

  .front-recognition {
    padding-top: 32px;
  }

  .front-recognition-grid {
    grid-template-columns: 1fr;
  }

  .front-recognition-card {
    min-height: 0;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (max-width: 640px) {
  .container,
  .front-band {
    width: min(100% - 24px, var(--rb-container));
  }

  .site-navbar > .container {
    width: calc(100% - 24px);
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 48px;
  }

  /* clear the fixed mobile bottom nav on the home hero only */
  .front-page .hero-content {
    padding-bottom: calc(var(--rb-mobile-nav-clearance) + 18px);
  }

  .hero-copy-column {
    padding: 16px 20px 14px 25px;
    border-radius: 22px;
  }

  .hero-title {
    font-size: var(--font-size-hero);
  }

  .hero-copy {
    font-size: var(--font-size-base);
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .video-link {
    width: 100%;
  }

  .product-showcase {
    padding-top: 72px;
  }

  .type-block {
    padding: 46px 0;
  }

  .type-block + .type-block .container {
    padding-top: 46px;
  }

  .type-block .grid {
    grid-template-columns: 1fr;
  }

  .intro-span-tablet-2 {
    grid-column: auto;
  }

  .type-intro-card {
    min-height: 520px;
  }

  .type-intro-content {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .type-intro-copy:only-child {
    grid-column: auto;
  }

  .product-card-body {
    padding: 18px;
  }

  .front-story-card {
    min-height: 0;
    margin: 30px auto 76px;
  }

  .front-story-card::after,
  .front-story-card > .front-story-image {
    height: 260px;
  }

  .front-story-card > .front-story-content {
    padding: 32px 24px;
  }

  .front-story-card .front-stat-copy {
    column-count: 1;
    column-rule: 0;
  }

  .front-recognition {
    padding-bottom: 58px;
  }

  .front-recognition-heading {
    margin-bottom: 22px;
  }

  .front-recognition-card {
    min-height: 0;
    padding: 14px;
  }

  .front-recognition-logo {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer {
    padding-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Homepage navy palette: preserve the shared layout and glass surfaces. */
.front-page {
  --rb-bg: #f3f6fc;
  --rb-bg-deep: #09172f;
  --rb-surface-strong: #e6edf8;
  --rb-surface-soft: rgba(30, 58, 105, 0.055);
  --rb-line: rgba(25, 52, 96, 0.13);
  --rb-line-strong: rgba(25, 52, 96, 0.22);
  --rb-text: #142a4d;
  --rb-muted: #586b87;
  --rb-green: #244c85;
  --rb-green-strong: #285ea8;
  --rb-action-start: #18365f;
  --rb-action-end: #2d5fa6;
  --rb-violet: #769bda;
  --rb-shadow: 0 30px 80px rgba(24, 48, 88, 0.14);
  background:
    radial-gradient(circle at 14% 4%, rgba(88, 139, 215, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(115, 151, 211, 0.14), transparent 30rem),
    linear-gradient(145deg, #fbfcff 0%, #edf3fc 48%, #f3f5fb 100%);
}

.front-page::before { background: #487cc1; }
.front-page::after { background: #294d87; }
.front-page .hero-section { background: #dfe7f3; }
.front-page .hero-title {
  background-image: linear-gradient(112deg, #142a4d 12%, #244c85 65%, #326bb7 100%);
}
.front-page .hero-copy-column {
  background: rgba(245, 249, 255, 0.58);
  box-shadow: 0 30px 80px rgba(24, 48, 88, 0.2), inset 0 1px rgba(255, 255, 255, 0.94);
}
.front-page .hero-shade {
  background:
    radial-gradient(circle at 84% 18%, rgba(115, 151, 211, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(237, 243, 252, 0.1) 0%, rgba(240, 245, 252, 0.03) 47%, transparent 76%),
    linear-gradient(0deg, rgba(243, 246, 252, 0.35) 0%, rgba(243, 246, 252, 0.03) 22%, transparent 48%);
}
.front-page .hero-shade::after {
  background-image: linear-gradient(rgba(25, 52, 96, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 52, 96, 0.025) 1px, transparent 1px);
}
.front-page .site-nav-link:hover,
.front-page .site-nav-link:focus-visible,
.front-page .site-nav-link.active,
.front-page .nav-dropdown-parent.is-open > .site-nav-link,
.front-page .product-actions .card-view-link:hover {
  background: rgba(30, 58, 105, 0.09);
}
.front-page .product-actions .card-view-link { background: var(--rb-surface-soft); }
.front-page .product-meta span { color: #506480; }
.front-page .video-link span,
.front-page .social-links a:hover {
  background: rgba(55, 100, 166, 0.1);
}
.front-page .product-category,
.front-page .type-intro-title-wrap .paint-label,
.front-page .front-recognition-eyebrow,
.front-page .social-links a:hover {
  border-color: rgba(55, 100, 166, 0.28);
}
.front-page .product-category { background: rgba(245, 249, 255, 0.94); }
.front-page .front-recognition-logo-placeholder { background: var(--rb-surface-soft); }
.front-page .front-story-card::before {
  background: radial-gradient(circle, rgba(88, 139, 215, 0.2), rgba(115, 151, 211, 0.08) 48%, transparent 70%);
}
.front-page .front-story-card > .front-story-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 243, 252, 0.9));
}
.front-page .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link),
.front-page .product-actions .nav-cta-book,
.front-page .front-story-card .front-stat-read-more,
.front-page .book-diamond {
  border-color: rgba(55, 100, 166, 0.38);
  background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
  color: #fff;
}
.front-page .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link):hover,
.front-page .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link):focus-visible,
.front-page .product-actions .nav-cta-book:hover,
.front-page .product-actions .nav-cta-book:focus-visible,
.front-page .front-story-card .front-stat-read-more:hover {
  background: linear-gradient(145deg, #224777, #366db7);
  color: #fff;
}
.front-page .product-actions .nav-cta-book i,
.front-page .front-story-card .front-stat-read-more i { color: inherit; }
.front-page .front-story-card .front-stat-read-more {
  min-height: 44px;
  gap: 8px;
  border-radius: 12px;
  font-size: var(--font-size-xs);
}
.front-page .site-footer {
  background: rgba(225, 234, 248, 0.72);
}
.front-page .footer-logo { background: #142a4d; }
.front-page .footer-bottom { color: #586b87; }
.front-page .wa-diamond,
.front-page .book-diamond { border-color: #edf3fc; }
