:root {
  color-scheme: light;
  --rb-bg: #f6f4e9;
  --rb-bg-deep: #102c21;
  --rb-surface: rgba(255, 255, 255, 0.84);
  --rb-surface-strong: #e9edde;
  --rb-surface-soft: rgba(66, 102, 43, 0.055);
  --rb-line: rgba(44, 76, 39, 0.13);
  --rb-line-strong: rgba(44, 76, 39, 0.22);
  --rb-text: #193b2b;
  --rb-muted: #596854;
  --rb-green: #376b3e;
  --rb-green-strong: #557b32;
  --rb-action-start: #d5df91;
  --rb-action-end: #b6ca74;
  --rb-yellow: #9a6400;
  --rb-violet: #bba16b;
  --rb-shadow: 0 30px 80px rgba(38, 67, 35, 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(151, 176, 97, 0.2), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(183, 152, 91, 0.16), transparent 30rem),
    linear-gradient(145deg, #fcfbf4 0%, #f0f2e5 48%, #f5efdf 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: #759450;
}

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

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(55, 91, 43, 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(167, 191, 114, 0.38);
  background: linear-gradient(145deg, var(--rb-action-start), var(--rb-action-end));
  color: #04171b;
  box-shadow: 0 10px 28px rgba(132, 156, 76, 0.18);
}

.site-navbar .nav-cta-whatsapp {
  border: 1px solid rgba(167, 191, 114, 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, #e3ebb1, #ccdc94);
  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: #dce5cd;
}

.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(183, 152, 91, 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(55, 91, 43, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(55, 91, 43, 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(38, 67, 35, 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(132, 156, 76, 0.25);
  content: "";
}

.hero-title {
  max-width: none;
  margin: 0 0 22px;
  color: var(--rb-text);
  background: linear-gradient(112deg, #193b2b 12%, #376b3e 65%, #557b32 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(167, 191, 114, 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(132, 156, 76, 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(38, 67, 35, 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(38, 67, 35, 0.17), 0 0 0 1px rgba(55, 107, 62, 0.05), 0 18px 50px rgba(132, 156, 76, 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(167, 191, 114, 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: #54664f;
  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(55, 91, 43, 0.045);
  color: var(--rb-text);
}

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

.product-actions .nav-cta-book {
  border-color: rgba(167, 191, 114, 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(167, 191, 114, 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(38, 67, 35, 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(38, 67, 35, 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(151, 176, 97, 0.2), rgba(183, 152, 91, 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(55, 107, 62, 0.18);
  border-radius: 999px;
  background: rgba(55, 107, 62, 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(167, 191, 114, 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(55, 107, 62, 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(38, 67, 35, 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(38, 67, 35, 0.19), 0 0 0 1px rgba(55, 107, 62, 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(55, 107, 62, 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(132, 156, 76, 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(38, 67, 35, 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(167, 191, 114, 0.32);
  background: rgba(167, 191, 114, 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(38, 67, 35, 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 #f0f2e5;
    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(132, 156, 76, 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 forest palette. */
.front-page {
  --rb-bg: #f6f4e9;
  --rb-bg-deep: #102c21;
  --rb-surface-strong: #e9edde;
  --rb-surface-soft: rgba(66, 102, 43, 0.055);
  --rb-line: rgba(44, 76, 39, 0.13);
  --rb-line-strong: rgba(44, 76, 39, 0.22);
  --rb-text: #193b2b;
  --rb-muted: #596854;
  --rb-green: #376b3e;
  --rb-green-strong: #557b32;
  --rb-action-start: #285437;
  --rb-action-end: #436b37;
  --rb-violet: #bba16b;
  --rb-shadow: 0 30px 80px rgba(38, 67, 35, 0.14);
  background:
    radial-gradient(circle at 14% 4%, rgba(151, 176, 97, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(183, 152, 91, 0.14), transparent 30rem),
    linear-gradient(145deg, #fcfbf4 0%, #f0f2e5 48%, #f5efdf 100%);
}

.front-page::before { background: #759450; }
.front-page::after { background: #42653a; }
.front-page .hero-section { background: #dce5cd; }
.front-page .hero-shade {
  background:
    radial-gradient(circle at 84% 18%, rgba(183, 152, 91, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(242, 244, 226, 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(44, 76, 39, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 76, 39, 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(66, 102, 43, 0.09);
}
.front-page .product-actions .card-view-link { background: var(--rb-surface-soft); }
.front-page .product-meta span { color: #54664f; }
.front-page .video-link span,
.front-page .social-links a:hover {
  background: rgba(83, 116, 51, 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(83, 116, 51, 0.28);
}
.front-page .product-category { background: rgba(250, 249, 237, 0.94); }
.front-page .front-recognition-logo-placeholder { background: var(--rb-surface-soft); }
.front-page .front-story-card::before {
  background: radial-gradient(circle, rgba(151, 176, 97, 0.2), rgba(183, 152, 91, 0.08) 48%, transparent 70%);
}
.front-page .front-story-card > .front-story-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 244, 226, 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(83, 116, 51, 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, #21482e, #365c2e);
  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 .wa-diamond,
.front-page .book-diamond { border-color: #f0f2e5; }

/* JungleBug: warm paper, forest canopy and subtle botanical details. */
body,
body.front-page {
  --rb-radius-xl: 30px 10px 30px 10px;
  --rb-radius-lg: 22px;
  background:
    radial-gradient(ellipse at 0 25%, rgba(116, 145, 73, .12), transparent 40%),
    radial-gradient(ellipse at 100% 65%, rgba(185, 157, 85, .1), transparent 35%),
    #f6f4e9;
}
body::before,
body::after { opacity: .08; }
.site-navbar > .container {
  border-color: rgba(70, 97, 47, .22);
  border-radius: 12px 28px 12px 28px;
  background: rgba(252, 251, 241, .96);
  box-shadow: 0 12px 36px rgba(24, 52, 29, .14);
}
body .hero-copy-column {
  border: 1px solid rgba(218, 229, 179, .55);
  border-radius: 28px 8px 28px 8px;
  background: rgba(17, 48, 31, .42);
  box-shadow: 0 24px 60px rgba(9, 31, 19, .24);
}
body .hero-title {
  background: none;
  color: #fffbed;
  -webkit-text-fill-color: currentColor;
  letter-spacing: -.045em;
  line-height: 1.08;
}
body .hero-title em { color: #d6e39d; }
body .hero-copy { color: #e5ebd6; }
body .hero-copy-column::before {
  background: #bbcf7f;
  box-shadow: none;
}
body .hero-shade {
  background: linear-gradient(0deg, rgba(15, 39, 23, .28), transparent 55%);
}
body .hero-shade::after { background-image: none; }
.section-kicker::before,
.paint-label::before {
  width: 18px;
  height: 10px;
  border-radius: 2px 12px 2px 12px;
  transform: rotate(-25deg);
}
body .product-card,
body .front-recognition-card {
  border-color: #dce2ce;
  border-radius: 24px 8px 24px 8px;
  background: #fffdf5;
  box-shadow: 0 12px 32px rgba(38, 67, 35, .08);
}
body .product-card:hover {
  border-color: #91a477;
  box-shadow: 0 18px 38px rgba(38, 67, 35, .15);
}
body .product-category { background: #f3f5e5; border-color: #b7c798; }
body .product-price { background: #f5e8c6; color: #715018; border-color: #dec88f; }
body .product-meta span { background: #eff2e4; color: #506246; }
body .type-heading::before { background: #6e8b43; box-shadow: none; }
body .front-story-card > .front-story-content {
  background: linear-gradient(135deg, #fbfaee, #edf0dc);
}
body .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link),
body .product-actions .nav-cta-book,
body .front-story-card .front-stat-read-more,
body .book-diamond {
  border-color: #416739;
  background: #315b39;
  color: #fffbed;
  box-shadow: 0 5px 14px rgba(32, 66, 34, .12);
}
body .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link):hover,
body .nav-cta-link:not(.nav-cta-whatsapp):not(.card-view-link):focus-visible,
body .product-actions .nav-cta-book:hover,
body .front-story-card .front-stat-read-more:hover {
  background: #23472d;
  color: #fffbed;
}
body .nav-cta-link i { color: inherit; }
body .site-footer {
  --rb-text: #f6f3de;
  --rb-muted: #d1dac5;
  --rb-green: #c1d58b;
  --rb-line: rgba(217, 228, 185, .18);
  border-top: 5px solid #92a85f;
  background: #173b29;
  color: var(--rb-muted);
}
body .site-footer::before {
  background: rgba(164, 183, 97, .15);
  pointer-events: none;
}
body .footer-logo { background: #fcfaee; border-radius: 10px 20px 10px 20px; }
body .footer-bottom { color: #d1dac5; }
body .social-links a:hover { background: rgba(210, 229, 159, .12); border-color: #91a96c; }
::selection { background: #d3dfac; color: #173b29; }
a:focus-visible,
button:focus-visible { outline: 2px solid #8c9d45; outline-offset: 4px; }

/* Illustrated field notes and botanical framing. */
.hero-section::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 34px;
  background: url("illustrations/paper-edge.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  content: "";
}
.camp-field-notes {
  position: relative;
  padding: 38px 0 32px;
  background: #f6f4e9;
}
.camp-field-notes-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #b8c3a3;
}
.camp-note-heading p,
.camp-note-heading h2 {
  margin: 10px 0 0;
  color: #315b39;
  font-family: "Caveat Brush", cursive;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}
.camp-badges { display: flex; align-items: flex-start; gap: 36px; }
.camp-badge {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #486540;
  text-align: center;
}
.camp-badge svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.camp-badge:nth-child(2) { color: #806536; }
.camp-badge:nth-child(1) svg { transform: rotate(-9deg); }
.camp-badge:nth-child(3) svg { transform: rotate(7deg); }
.camp-badge span { max-width: 130px; font-size: 12px; font-weight: 800; letter-spacing: .025em; }
.product-showcase { isolation: isolate; }
.product-showcase::before,
.product-showcase::after {
  position: absolute;
  z-index: -1;
  width: clamp(150px, 20vw, 290px);
  height: 360px;
  background: url("illustrations/jungle-leaves.svg") center / contain no-repeat;
  opacity: .24;
  pointer-events: none;
  content: "";
}
.product-showcase::before { top: 0; right: 0; transform: rotate(180deg); }
.product-showcase::after { bottom: 20px; left: 0; }
body .site-footer {
  border-top: 0;
  background-image: url("illustrations/jungle-leaves.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 340px;
}
body .site-footer::after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 26px;
  background: url("illustrations/paper-edge.svg") center / 100% 100% no-repeat;
  transform: rotate(180deg);
  pointer-events: none;
  content: "";
}
.site-footer > .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .camp-field-notes-inner { flex-direction: column; gap: 24px; text-align: center; }
  .camp-note-heading .section-kicker { justify-content: center; }
  .camp-badges { width: 100%; justify-content: center; gap: clamp(16px, 5vw, 40px); }
  body .site-footer { background-size: auto 230px; }
}
@media (max-width: 640px) {
  .hero-section::after { height: 22px; }
  .camp-field-notes { padding: 24px 0; }
  .camp-badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .camp-badge svg { width: 64px; height: 64px; }
  .camp-badge span { font-size: 11px; max-width: 95px; }
  .product-showcase::before,
  .product-showcase::after { width: 130px; height: 190px; opacity: .12; }
}

/* One field-journal panel for the JungleBug spirit and its partners. */
.camp-recognition {
  padding: 36px 0 44px;
  background: #f6f4e9;
}
.camp-recognition-panel {
  padding: 32px 36px;
  border: 1px solid #d9dfc9;
  border-radius: 28px 8px 28px 8px;
  background: #fcfbf2;
  box-shadow: 0 12px 32px rgba(38, 67, 35, .06);
}
.camp-recognition .camp-field-notes-inner {
  padding-bottom: 28px;
  border-bottom: 1px dashed #b8c3a3;
}
.camp-recognition-partners { padding-top: 26px; }
.camp-recognition .front-recognition-heading {
  max-width: none;
  gap: 8px;
  margin-bottom: 22px;
}
.camp-recognition .front-recognition-heading h2 { font-size: 28px; }
.camp-recognition .front-recognition-heading p { font-size: 14px; }
.camp-recognition .front-recognition-eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
body .camp-recognition .front-recognition-card {
  min-width: 0;
  background: #f3f4e7;
  box-shadow: none;
}
.camp-recognition .front-recognition-copy { min-width: 0; overflow-wrap: anywhere; }
.camp-recognition .front-recognition-card:focus-visible {
  outline: 2px solid #486540;
  outline-offset: 4px;
}
@media (max-width: 640px) {
  .camp-recognition { padding: 22px 0 30px; }
  .camp-recognition-panel { padding: 24px 18px; }
  .camp-recognition .camp-field-notes-inner { padding-bottom: 22px; }
  .camp-recognition-partners { padding-top: 22px; }
  .camp-recognition .front-recognition-heading h2 { font-size: 25px; }
}

/* Compact spirit and recognition panel. */
.camp-recognition { padding: 20px 0 24px; }
.camp-recognition-panel { padding: 20px 26px; }
.camp-recognition .camp-field-notes-inner { gap: 20px; padding-bottom: 16px; }
.camp-recognition .camp-note-heading h2 { margin-top: 5px; font-size: 30px; }
.camp-recognition .camp-badges { gap: 24px; }
.camp-recognition .camp-badge { gap: 3px; }
.camp-recognition .camp-badge svg { width: 52px; height: 52px; }
.camp-recognition-partners {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
  align-items: center;
  gap: 22px;
  padding-top: 16px;
}
.camp-recognition .front-recognition-heading {
  justify-items: start;
  gap: 5px;
  margin: 0;
  text-align: left;
}
.camp-recognition .front-recognition-heading h2 { font-size: 23px; }
.camp-recognition .front-recognition-heading p { font-size: 12px; line-height: 1.4; }
.camp-recognition .front-recognition-grid { gap: 9px; }
body .camp-recognition .front-recognition-card { gap: 9px; padding: 10px; }
.camp-recognition .front-recognition-logo { width: 40px; min-width: 40px; height: 40px; }
.camp-recognition .front-recognition-copy strong { font-size: 12px; }
.camp-recognition .front-recognition-copy small { font-size: 11px; }
@media (max-width: 1000px) {
  .camp-recognition-partners { grid-template-columns: 1fr; gap: 12px; }
  .camp-recognition .front-recognition-heading { gap: 4px; }
}
@media (max-width: 900px) {
  .camp-recognition .camp-field-notes-inner { gap: 14px; }
  .camp-recognition .front-recognition-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .camp-recognition .front-recognition-card { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .camp-recognition { padding: 14px 0 18px; }
  .camp-recognition-panel { padding: 16px 14px; }
  .camp-recognition .camp-note-heading h2 { font-size: 27px; }
  .camp-recognition .camp-field-notes-inner { padding-bottom: 12px; }
  .camp-recognition .camp-badges { gap: 8px; }
  .camp-recognition .camp-badge svg { width: 42px; height: 42px; }
  .camp-recognition-partners { padding-top: 12px; }
  .camp-recognition .front-recognition-grid { gap: 6px; }
  body .camp-recognition .front-recognition-card { padding: 9px 6px; gap: 6px; border-radius: 14px 5px 14px 5px; }
  .camp-recognition .front-recognition-logo { width: 32px; min-width: 32px; height: 32px; }
  .camp-recognition .front-recognition-copy strong { font-size: 11px; }
  .camp-recognition .front-recognition-copy small { font-size: 10px; }
}

/* Spirit introduces the catalogue; recognition remains a compact partner panel. */
.camp-recognition-partners { padding-top: 0; }
.product-showcase { padding-top: 30px; }
.product-showcase > .container > .camp-field-notes-inner {
  gap: 24px;
  padding-bottom: 20px;
}
.product-showcase .camp-note-heading { min-width: 0; }
.product-showcase .camp-note-heading h2 { overflow-wrap: anywhere; }
.product-showcase .camp-badges { flex-shrink: 0; gap: 24px; }
.product-showcase .camp-badge { gap: 4px; }
.product-showcase .camp-badge svg { width: 52px; height: 52px; }
.product-showcase .camp-badge span { overflow-wrap: anywhere; }
@media (max-width: 640px) {
  .product-showcase { padding-top: 22px; }
  .product-showcase .camp-badges { gap: 10px; }
  .product-showcase .camp-badge svg { width: 42px; height: 42px; }
}
