:root {
  --gub-ink: #321226;
  --gub-copy: #4b302b;
  --gub-gold: #c9912e;
  --gub-gold-soft: rgba(201, 145, 46, 0.62);
  --gub-card-shadow: 0 12px 26px rgba(81, 52, 24, 0.09);
}

.gub-section,
.gub-section * {
  box-sizing: border-box;
}

.gub-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: clamp(46px, 4.2vw, 72px) 18px clamp(44px, 5.5vw, 88px);
  color: var(--gub-copy);
  background:
    radial-gradient(circle at 5.8% 5.6%, rgba(255, 244, 193, 0.78) 0 3px, transparent 4px),
    radial-gradient(circle at 12.6% 8.7%, rgba(255, 241, 184, 0.67) 0 3px, transparent 4px),
    radial-gradient(circle at 2.1% 14.4%, rgba(255, 242, 191, 0.60) 0 2px, transparent 3px),
    radial-gradient(circle at 87% 9%, rgba(237, 197, 118, 0.16), transparent 24%),
    linear-gradient(100deg, #fbf0d7 0%, #fffaf1 39%, #fffdf8 64%, #f9edda 100%);
}

.gub-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px;
  right: -22px;
  width: min(330px, 23vw);
  aspect-ratio: 1 / 1.04;
  pointer-events: none;
  opacity: 0.44;
  background: url("../images/gub-watermark.webp") center / contain no-repeat;
}

.gub-section::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -10%;
  bottom: -28%;
  width: 38%;
  height: 48%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(221, 170, 71, 0.22), transparent 68%);
  transform: rotate(-8deg);
}

.gub-shell {
  width: min(1508px, 100%);
  margin-inline: auto;
}

.gub-heading {
  max-width: 1040px;
  margin: 0 auto clamp(30px, 2.7vw, 44px);
  text-align: center;
}

.gub-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(350px, 82vw);
  margin: 0 auto 16px;
}

.gub-eyebrow-row::before,
.gub-eyebrow-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gub-gold-soft));
}

.gub-eyebrow-row::after {
  transform: scaleX(-1);
}

.gub-eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  color: #a36f25;
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  font-size: clamp(11px, 0.92vw, 15px);
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.gub-eyebrow::after {
  content: "✥";
  position: absolute;
  left: 50%;
  bottom: -7px;
  padding-inline: 5px;
  color: var(--gub-gold);
  font-size: 17px;
  line-height: 1;
  background: #fff9ed;
  transform: translateX(-50%);
}

.gub-title {
  margin: 0;
  color: var(--gub-ink);
  font-family: Didot, "Bodoni MT", "Times New Roman", Georgia, serif;
  font-size: clamp(48px, 5.35vw, 84px);
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 0.97;
  text-transform: uppercase;
}

.gub-subtitle {
  margin: 22px auto 0;
  color: #4a302c;
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  font-size: clamp(15px, 1.27vw, 21px);
  font-weight: 400;
  line-height: 1.62;
}

.gub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.55vw, 26px);
  align-items: stretch;
}

.gub-card {
  --gub-card-bg: #fff6f1;
  --gub-card-bg-2: #fffaf6;
  --gub-card-ink: #321226;
  --gub-product-scale: 1;
  position: relative;
  min-width: 0;
  min-height: clamp(500px, 33vw, 556px);
  padding: 34px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: var(--gub-card-ink);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(201, 145, 46, 0.82);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 37%, rgba(255, 255, 255, 0.86), transparent 45%),
    linear-gradient(145deg, var(--gub-card-bg), var(--gub-card-bg-2));
  box-shadow: var(--gub-card-shadow), inset 0 0 20px rgba(255, 255, 255, 0.55);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: gub-card-in 480ms ease both;
  animation-delay: calc(var(--gub-index) * 55ms);
}

.gub-card--rose {
  --gub-card-bg: #fff1ea;
  --gub-card-bg-2: #fff9f5;
  --gub-card-ink: #35132b;
}

.gub-card--sage {
  --gub-card-bg: #f6f8e9;
  --gub-card-bg-2: #fffdf2;
  --gub-card-ink: #213521;
}

.gub-card--blue {
  --gub-card-bg: #f2f6fa;
  --gub-card-bg-2: #fbfbfa;
  --gub-card-ink: #34112c;
}

.gub-card--lilac {
  --gub-card-bg: #f7edf8;
  --gub-card-bg-2: #fdf7fc;
  --gub-card-ink: #35122f;
}

.gub-card:hover,
.gub-card:focus-visible {
  border-color: #bf8121;
  box-shadow: 0 18px 36px rgba(81, 52, 24, 0.15);
  transform: translateY(-6px);
  outline: none;
}

.gub-card-frame {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(201, 145, 46, 0.52);
  border-radius: 18px;
}

.gub-card-frame::before,
.gub-card-frame::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.34;
  background:
    repeating-conic-gradient(from 0deg, rgba(200, 146, 48, 0.35) 0 5deg, transparent 5deg 14deg);
  border-radius: 50%;
}

.gub-card-frame::before {
  left: 13%;
  top: 26%;
}

.gub-card-frame::after {
  right: 11%;
  top: 28%;
  transform: scale(1.35);
}

.gub-corner {
  position: absolute;
  color: rgba(201, 145, 46, 0.85);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.gub-corner--tl { top: 4px; left: 8px; transform: rotate(-42deg); }
.gub-corner--tr { top: 4px; right: 8px; transform: rotate(42deg) scaleX(-1); }
.gub-corner--bl { bottom: 4px; left: 8px; transform: rotate(-138deg) scaleX(-1); }
.gub-corner--br { right: 8px; bottom: 4px; transform: rotate(138deg); }

.gub-card-tag,
.gub-divider,
.gub-product-visual,
.gub-card-kicker,
.gub-mini-divider,
.gub-card-price,
.gub-price-ornament,
.gub-card-description {
  position: relative;
  z-index: 1;
}

.gub-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 9px 21px 8px;
  color: var(--gub-card-ink);
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  font-size: clamp(10px, 0.81vw, 13px);
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(201, 145, 46, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.gub-divider,
.gub-mini-divider {
  display: flex;
  align-items: center;
  width: min(160px, 70%);
  margin: 13px auto 5px;
  color: var(--gub-gold);
}

.gub-divider::before,
.gub-divider::after,
.gub-mini-divider::before,
.gub-mini-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 145, 46, 0.78));
}

.gub-divider::after,
.gub-mini-divider::after {
  transform: scaleX(-1);
}

.gub-divider i,
.gub-mini-divider i {
  padding-inline: 6px;
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}

.gub-product-visual {
  width: 100%;
  height: clamp(172px, 11.8vw, 196px);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.gub-product-visual img {
  display: block;
  width: auto;
  max-width: min(260px, 92%);
  height: 100%;
  object-fit: contain;
  transform: scale(var(--gub-product-scale));
  filter: drop-shadow(0 10px 10px rgba(72, 45, 22, 0.08));
  transition: transform 240ms ease;
}

.gub-card:hover .gub-product-visual img,
.gub-card:focus-visible .gub-product-visual img {
  transform: scale(calc(var(--gub-product-scale) + 0.025));
}

.gub-card-kicker {
  margin-top: 0;
  color: #4c302b;
  font-family: Didot, "Bodoni MT", "Times New Roman", Georgia, serif;
  font-size: clamp(23px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.gub-mini-divider {
  width: min(110px, 58%);
  margin: 7px auto 3px;
}

.gub-mini-divider i {
  font-size: 13px;
}

.gub-card-price {
  display: block;
  margin-top: 2px;
  color: var(--gub-card-ink);
  font-family: Didot, "Bodoni MT", "Times New Roman", Georgia, serif;
  font-size: clamp(54px, 4.15vw, 69px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 0.96;
}

.gub-price-ornament {
  margin-top: 8px;
  color: var(--gub-gold);
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.gub-card-description {
  max-width: 275px;
  margin-top: 8px;
  color: #583c35;
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.48;
}

.gub-footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 82vw);
  margin: clamp(30px, 3vw, 45px) auto 0;
  color: var(--gub-gold);
}

.gub-footer-ornament::before,
.gub-footer-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 145, 46, 0.58));
}

.gub-footer-ornament::after {
  transform: scaleX(-1);
}

.gub-footer-ornament span {
  font-size: 18px;
  line-height: 1;
}

.gub-footer-ornament span:first-of-type { transform: rotate(18deg); }
.gub-footer-ornament span:last-of-type { transform: rotate(-18deg) scaleX(-1); }

.gub-footer-ornament i {
  padding-inline: 6px;
  font-size: 23px;
  font-style: normal;
  line-height: 1;
}

.gub-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
}

@keyframes gub-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1220px) {
  .gub-shell { width: min(980px, 100%); }
  .gub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gub-card { min-height: 540px; }
  .gub-product-visual { height: 190px; }
}

@media (max-width: 700px) {
  .gub-section {
    padding: 40px 0 50px;
  }

  .gub-section::before {
    width: 190px;
    opacity: 0.28;
  }

  .gub-heading {
    padding-inline: 20px;
    margin-bottom: 28px;
  }

  .gub-eyebrow-row {
    width: min(300px, 82vw);
    margin-bottom: 12px;
  }

  .gub-eyebrow {
    letter-spacing: 3.6px;
  }

  .gub-title {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }

  .gub-subtitle {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .gub-desktop-break { display: none; }

  .gub-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 86vw);
    gap: 15px;
    padding: 5px 18px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .gub-grid::-webkit-scrollbar { display: none; }

  .gub-card {
    min-height: 520px;
    padding: 30px 24px 31px;
    scroll-snap-align: center;
  }

  .gub-card-tag {
    min-height: 39px;
    font-size: 11px;
  }

  .gub-product-visual {
    height: 180px;
  }

  .gub-card-price {
    font-size: 60px;
  }

  .gub-card-description {
    font-size: 14px;
  }

  .gub-footer-ornament {
    margin-top: 24px;
  }
}

@media (max-width: 370px) {
  .gub-grid { grid-auto-columns: minmax(274px, 89vw); }
  .gub-card { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .gub-card,
  .gub-product-visual img {
    animation: none !important;
    transition: none !important;
  }
}


/* Match the final rm-brand-name text color treatment exactly. */
.gub-title {
  background: linear-gradient(90deg, #25170d 0%, #9b6428 48%, #25170d 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: 0 8px 18px rgba(154, 100, 40, .10) !important;
}
