/* ===========================
   ROOT PAGE: SECTION 1 — HERO
   =========================== */

.gb-hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* Aurora / ice background layers */

.gb-hero__aurora {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(110, 231, 255, 0.16) 0, transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(255, 179, 92, 0.13) 0, transparent 35%),
    radial-gradient(circle at 60% 80%, rgba(0, 255, 214, 0.12) 0, transparent 40%);
  opacity: 0.9;
  filter: blur(4px);
  animation: gb-aurora-drift 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -2;
}

.gb-hero__ice-ring {
  position: absolute;
  left: 50%;
  top: 68%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%) rotate(-12deg);
  border-radius: 50%;
  border: 1px dashed rgba(192, 243, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(192, 243, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.9);
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -1;
}

@keyframes gb-aurora-drift {
  0% {
    transform: translate3d(-10px, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -10px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-12px, 8px, 0) scale(1.02);
  }
}

/* Layout */

.gb-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

/* Left column: text */

.gb-hero__content {
  position: relative;
  z-index: 1;
}

.gb-hero__kicker {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  margin: 0 0 1.1rem;
}

.gb-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--gb-color-text);
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.9);
}

.gb-hero__lead {
  margin-top: 1.2rem;
  font-size: 1rem;
}

.gb-hero__text {
  margin-top: 0.4rem;
}

.gb-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 1.6rem;
}

.gb-hero__ghost-link {
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: var(--gb-radius-pill);
  cursor: pointer;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.gb-hero__ghost-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(192, 243, 255, 0.12), rgba(255, 179, 92, 0.05));
  opacity: 0;
  transition: opacity var(--gb-transition-fast);
}

.gb-hero__ghost-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(192, 243, 255, 0.12);
}

.gb-hero__ghost-link:hover::before {
  opacity: 1;
}

.gb-hero__tags {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-hero__tag {
  font-size: 0.84rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 214, 248, 0.35);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.18), rgba(12, 27, 60, 0.8));
  color: var(--gb-color-ice-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

/* Right column: unique staggered gallery */

.gb-hero__gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: center;
}

.gb-hero__image-card {
  position: relative;
  padding: 10px;
  border-radius: var(--gb-radius-lg);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(2, 7, 19, 0.95));
  border: 1px solid rgba(192, 243, 255, 0.16);
  box-shadow: var(--gb-shadow-elevated);
  overflow: hidden;
  transform-origin: center;
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-hero__image-card img {
  border-radius: 20px;
}

.gb-hero__image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(192, 243, 255, 0.21), transparent 40%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--gb-transition-fast);
}

.gb-hero__image-card--main {
  max-width: 320px;
  margin-left: auto;
  margin-right: 12px;
  transform: translateY(-6px) rotate(-4deg);
  animation: gb-card-float-main 10s ease-in-out infinite alternate;
}

.gb-hero__image-card--side {
  max-width: 240px;
  margin-left: 6%;
  transform: translateY(-38px) rotate(7deg);
  animation: gb-card-float-side 12s ease-in-out infinite alternate;
}

.gb-hero__image-card--bottom {
  max-width: 260px;
  margin-left: auto;
  margin-right: 24%;
  margin-top: -26px;
  transform: rotate(-8deg);
  animation: gb-card-float-bottom 14s ease-in-out infinite alternate;
}

/* Hover elevation */

.gb-hero__image-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
  border-color: rgba(192, 243, 255, 0.32);
}

.gb-hero__image-card:hover::before {
  opacity: 1;
}

/* Captions */

.gb-hero__caption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(197, 214, 241, 0.9);
}

/* Floating card animations */

@keyframes gb-card-float-main {
  0% {
    transform: translateY(-8px) rotate(-4deg);
  }
  50% {
    transform: translateY(0) rotate(-2deg);
  }
  100% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes gb-card-float-side {
  0% {
    transform: translateY(-36px) rotate(7deg);
  }
  50% {
    transform: translateY(-24px) rotate(5deg);
  }
  100% {
    transform: translateY(-40px) rotate(8deg);
  }
}

@keyframes gb-card-float-bottom {
  0% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-4px) rotate(-6deg);
  }
  100% {
    transform: translateY(2px) rotate(-9deg);
  }
}

/* Scroll hint */

.gb-hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  pointer-events: none;
}

.gb-hero__scroll-dot {
  width: 8px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.gb-hero__scroll-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--gb-color-ice-soft);
  animation: gb-scroll-dot 1.6s ease-in-out infinite;
}

@keyframes gb-scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, -3px);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, 6px);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -3px);
  }
}

.gb-hero__scroll-text {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(189, 209, 240, 0.8);
}

/* ===========================
   HERO RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .gb-hero {
    padding: 72px 0 80px;
  }

  .gb-hero__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
  }

  .gb-hero__title {
    font-size: 2.1rem;
  }
}

@media (max-width: 840px) {
  .gb-hero__layout {
    grid-template-columns: 1fr;
  }

  .gb-hero__gallery {
    margin-top: 26px;
    justify-items: center;
  }

  .gb-hero__image-card--main {
    margin-right: auto;
  }

  .gb-hero__image-card--side {
    transform: translateY(-28px) rotate(6deg);
  }

  .gb-hero__image-card--bottom {
    margin-right: auto;
    margin-left: 18%;
  }

  .gb-hero__ice-ring {
    width: 360px;
    height: 360px;
    top: 74%;
  }
}

@media (max-width: 640px) {
  .gb-hero {
    padding: 60px 0 74px;
  }

  .gb-hero__title {
    font-size: 1.7rem;
  }

  .gb-hero__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gb-hero__gallery {
    gap: 12px;
  }

  .gb-hero__image-card--main,
  .gb-hero__image-card--side,
  .gb-hero__image-card--bottom {
    max-width: 260px;
  }

  .gb-hero__ice-ring {
    width: 300px;
    height: 300px;
    top: 78%;
  }

  .gb-hero__scroll-text {
    display: none;
  }
}

@media (max-width: 420px) {
  .gb-hero__title {
    font-size: 1.55rem;
  }

  .gb-hero__image-card--main,
  .gb-hero__image-card--side,
  .gb-hero__image-card--bottom {
    max-width: 240px;
  }

  .gb-hero__ice-ring {
    display: none;
  }
}
/* ===========================
   SHARED SECTION ELEMENTS
   =========================== */

.gb-section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  margin: 0 0 0.8rem;
}

.gb-section-title {
  font-family: var(--gb-font-serif);
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--gb-color-text);
  margin-bottom: 1rem;
}

/* ===========================
   SECTION 2 — FROZEN LAKE SPOTS RIBBON
   =========================== */

.gb-spots {
  padding: 70px 0 60px;
  position: relative;
}

.gb-spots__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.gb-spots__text p {
  max-width: 640px;
}

.gb-spots__lanes {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.gb-spots__lane {
  padding: 14px 16px 14px 18px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(7, 18, 46, 0.92));
  border: 1px solid rgba(188, 214, 248, 0.28);
  box-shadow: var(--gb-shadow-soft);
  position: relative;
  overflow: hidden;
}

.gb-spots__lane::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 90px;
  height: 100%;
  background: radial-gradient(circle at 0 0, rgba(255, 179, 92, 0.32), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--gb-transition-normal), transform var(--gb-transition-normal);
}

.gb-spots__lane:hover::before {
  opacity: 1;
  transform: translateX(6px);
}

.gb-spots__lane-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gb-color-ice-soft);
}

/* Right “map” column */

.gb-spots__map {
  position: relative;
  min-height: 320px;
}

.gb-spots__track {
  position: absolute;
  left: 40%;
  top: 4%;
  bottom: 4%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(192, 243, 255, 0.2),
    rgba(255, 179, 92, 0.45),
    rgba(192, 243, 255, 0.2)
  );
  box-shadow: 0 0 20px rgba(192, 243, 255, 0.35);
}

.gb-spots__photo {
  position: absolute;
  max-width: 260px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.1), rgba(7, 16, 39, 0.96));
  border: 1px solid rgba(192, 243, 255, 0.22);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-spots__photo img {
  border-radius: 14px;
}

.gb-spots__photo--top {
  top: 0;
  right: 0;
  transform: translateY(-6px) rotate(-5deg);
}

.gb-spots__photo--middle {
  top: 34%;
  left: 0;
  transform: translateY(-10px) rotate(5deg);
}

.gb-spots__photo--bottom {
  bottom: -4px;
  right: 16%;
  transform: translateY(4px) rotate(-3deg);
}

.gb-spots__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.96);
}

.gb-spots__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.9);
}

/* ===========================
   SECTION 3 — DAY CURVE ON THE ICE
   =========================== */

.gb-daycurve {
  padding: 64px 0 60px;
  position: relative;
}

.gb-daycurve__header {
  max-width: 720px;
}

.gb-daycurve__shell {
  margin-top: 2.2rem;
  position: relative;
  border-radius: 32px;
  padding: 30px 26px 32px;
  background:
    radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.16), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255, 179, 92, 0.16), transparent 50%),
    linear-gradient(135deg, rgba(2, 7, 19, 0.95), rgba(7, 18, 46, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.2);
  box-shadow: var(--gb-shadow-soft);
  overflow: visible;
}

/* Curved path */

.gb-daycurve__shell::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 20%;
  top: 54%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(192, 243, 255, 0.3),
    rgba(255, 179, 92, 0.7),
    rgba(192, 243, 255, 0.3)
  );
  box-shadow: 0 0 18px rgba(255, 179, 92, 0.6);
  transform-origin: center;
  transform: translateY(-14px) rotate(-3deg);
}

.gb-daycurve__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gb-daycurve__item {
  position: relative;
  padding-top: 18px;
}

.gb-daycurve__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.4);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.18), rgba(7, 18, 46, 0.92));
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  margin-bottom: 0.6rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

.gb-daycurve__label {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.gb-daycurve__item p {
  font-size: 0.86rem;
}

/* Floating photos */

.gb-daycurve__photo {
  position: absolute;
  max-width: 260px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(192, 243, 255, 0.24);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-daycurve__photo img {
  border-radius: 14px;
}

.gb-daycurve__photo--dawn {
  left: -4%;
  top: -18px;
  transform: rotate(-4deg);
}

.gb-daycurve__photo--night {
  right: -5%;
  bottom: -26px;
  transform: rotate(5deg);
}

.gb-daycurve__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.96);
}

.gb-daycurve__caption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(195, 212, 239, 0.9);
}

/* ===========================
   SECTION 4 — SAFETY STRIP & COMPACT GEAR CLUSTER
   =========================== */

.gb-safety-strip {
  padding: 70px 0 72px;
  position: relative;
}

.gb-safety-strip__grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

/* Vertical ribbon */

.gb-safety-strip__ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-safety-strip__ribbon-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255, 179, 92, 0.9);
  padding: 12px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 92, 0.5);
  background: radial-gradient(circle at 0 0, rgba(255, 179, 92, 0.22), rgba(4, 12, 30, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Content column */

.gb-safety-strip__content p {
  max-width: 620px;
}

.gb-safety-strip__list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gb-safety-strip__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.1), rgba(7, 18, 46, 0.94));
  border: 1px dashed rgba(192, 243, 255, 0.28);
}

.gb-safety-strip__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(192, 243, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(192, 243, 255, 0.16);
  margin-top: 6px;
}

.gb-safety-strip__copy h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.gb-safety-strip__copy p {
  font-size: 0.86rem;
}

/* Gear bubble cluster */

.gb-safety-strip__cluster {
  position: relative;
  min-height: 280px;
}

.gb-safety-strip__bubble {
  position: absolute;
  max-width: 230px;
  padding: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), rgba(2, 7, 19, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.25);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-safety-strip__bubble img {
  border-radius: 999px;
}

.gb-safety-strip__bubble--top {
  top: 0;
  left: 12%;
  transform: translateY(-4px) rotate(-4deg);
}

.gb-safety-strip__bubble--mid {
  top: 26%;
  right: 0;
  transform: rotate(4deg);
}

.gb-safety-strip__bubble--bottom {
  bottom: -12px;
  left: 18%;
  transform: rotate(-6deg);
}

.gb-safety-strip__bubble:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(192, 243, 255, 0.42);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.96);
}

.gb-safety-strip__caption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(195, 212, 239, 0.9);
}

/* ===========================
   RESPONSIVE FOR SECTIONS 2–4
   =========================== */

@media (max-width: 1024px) {
  .gb-spots__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 26px;
  }

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

  .gb-daycurve__photo--dawn {
    left: -2%;
  }

  .gb-daycurve__photo--night {
    right: -2%;
  }

  .gb-safety-strip__grid {
    grid-template-columns: 60px minmax(0, 1.5fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 840px) {
  .gb-spots__grid {
    grid-template-columns: 1fr;
  }

  .gb-spots__map {
    margin-top: 22px;
    min-height: 320px;
  }

  .gb-spots__track {
    left: 8%;
    right: auto;
  }

  .gb-spots__photo--top,
  .gb-spots__photo--middle,
  .gb-spots__photo--bottom {
    position: relative;
    margin: 0 auto 14px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: rotate(0deg);
  }

  .gb-daycurve__shell {
    padding: 26px 18px 30px;
  }

  .gb-daycurve__shell::before {
    left: 8%;
    right: 8%;
    transform: translateY(-10px) rotate(-2deg);
  }

  .gb-daycurve__timeline {
    grid-template-columns: 1fr;
  }

  .gb-daycurve__photo--dawn,
  .gb-daycurve__photo--night {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px auto 0;
    transform: rotate(0deg);
  }

  .gb-safety-strip__grid {
    grid-template-columns: 1fr;
  }

  .gb-safety-strip__ribbon {
    justify-content: flex-start;
  }

  .gb-safety-strip__cluster {
    margin-top: 12px;
    min-height: auto;
  }

  .gb-safety-strip__bubble--top,
  .gb-safety-strip__bubble--mid,
  .gb-safety-strip__bubble--bottom {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 auto 12px;
    transform: rotate(0deg);
  }
}

@media (max-width: 520px) {
  .gb-spots {
    padding: 58px 0 52px;
  }

  .gb-daycurve {
    padding: 52px 0 50px;
  }

  .gb-safety-strip {
    padding: 56px 0 60px;
  }

  .gb-daycurve__shell::before {
    display: none;
  }

  .gb-safety-strip__ribbon-text {
    writing-mode: horizontal-tb;
    padding: 8px 14px;
  }
}
/* ===========================
   SECTION 5 — ICE DEPTH LAB
   =========================== */

.gb-icelab {
  padding: 70px 0 70px;
  position: relative;
}

.gb-icelab__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.gb-icelab__layers {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border-left: 2px dashed rgba(192, 243, 255, 0.35);
  padding-left: 16px;
}

.gb-icelab__layer {
  position: relative;
  padding: 12px 14px 12px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), rgba(6, 16, 38, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-soft);
  overflow: hidden;
}

.gb-icelab__layer::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(192, 243, 255, 0.25);
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
}

.gb-icelab__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  margin-bottom: 0.35rem;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.3), rgba(3, 10, 26, 0.95));
}

.gb-icelab__badge--dark {
  border-color: rgba(255, 179, 92, 0.6);
  color: var(--gb-color-accent);
}

.gb-icelab__layer-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Depth bar & image stack */

.gb-icelab__imagestack {
  position: relative;
  min-height: 320px;
}

.gb-icelab__depthbar {
  position: absolute;
  left: 10%;
  top: 4%;
  bottom: 4%;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(110, 231, 255, 0.85),
    rgba(192, 243, 255, 0.9),
    rgba(15, 43, 85, 1)
  );
  box-shadow:
    0 0 18px rgba(110, 231, 255, 0.9),
    0 0 40px rgba(15, 43, 85, 0.9);
  overflow: hidden;
}

.gb-icelab__depthdot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(192, 243, 255, 0.95);
  box-shadow: 0 0 0 6px rgba(192, 243, 255, 0.25);
  transform: translateX(-50%);
  animation: gb-depth-glow 4s ease-in-out infinite alternate;
}

.gb-icelab__depthdot--top {
  top: 12%;
}

.gb-icelab__depthdot--mid {
  top: 48%;
  animation-delay: 0.6s;
}

.gb-icelab__depthdot--bottom {
  bottom: 10%;
  animation-delay: 1.1s;
}

@keyframes gb-depth-glow {
  0% {
    box-shadow: 0 0 0 4px rgba(192, 243, 255, 0.16);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(192, 243, 255, 0.4);
  }
}

.gb-icelab__photo {
  position: absolute;
  max-width: 260px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-icelab__photo img {
  border-radius: 14px;
}

.gb-icelab__photo--top {
  top: -10px;
  right: 2%;
  transform: rotate(-4deg);
}

.gb-icelab__photo--mid {
  top: 32%;
  right: 20%;
  transform: rotate(4deg);
}

.gb-icelab__photo--bottom {
  bottom: -4px;
  right: 4%;
  transform: rotate(-6deg);
}

.gb-icelab__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.98);
}

.gb-icelab__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   SECTION 6 — MINIMAL ROD BENCH
   =========================== */

.gb-setups {
  padding: 72px 0 70px;
  position: relative;
}

.gb-setups__head {
  max-width: 760px;
}

.gb-setups__rail {
  position: relative;
  margin-top: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(192, 243, 255, 0.18),
    rgba(255, 179, 92, 0.7),
    rgba(192, 243, 255, 0.18)
  );
  overflow: hidden;
}

.gb-setups__rail-glow {
  position: absolute;
  left: -20%;
  top: -6px;
  width: 40%;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), transparent 60%);
  opacity: 0.6;
  animation: gb-rail-sweep 5s linear infinite;
}

@keyframes gb-rail-sweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(260%);
  }
}

.gb-setups__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gb-setups__card {
  position: relative;
  border-radius: 26px;
  padding: 16px 16px 18px;
  background:
    radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(5, 14, 36, 0.98), rgba(7, 18, 46, 0.98));
  border: 1px solid rgba(188, 214, 248, 0.26);
  box-shadow: var(--gb-shadow-soft);
  overflow: hidden;
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-setups__card::after {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  opacity: 0.8;
}

.gb-setups__card--light::after {
  background: linear-gradient(90deg, #6ee7ff, #c0f3ff);
}

.gb-setups__card--mid::after {
  background: linear-gradient(90deg, #c0f3ff, #ffb35c);
}

.gb-setups__card--heavy::after {
  background: linear-gradient(90deg, #ffb35c, #ff6b6b);
}

.gb-setups__card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.96);
  border-color: rgba(192, 243, 255, 0.45);
}

.gb-setups__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.gb-setups__card-title {
  font-size: 1rem;
}

.gb-setups__tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.5);
  color: var(--gb-color-ice-soft);
}

.gb-setups__tag--danger {
  border-color: rgba(255, 107, 107, 0.7);
  color: var(--gb-color-danger);
}

.gb-setups__photo {
  margin-bottom: 0.7rem;
}

.gb-setups__caption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

.gb-setups__list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  font-size: 0.86rem;
}

.gb-setups__list li + li {
  margin-top: 0.2rem;
}

/* ===========================
   SECTION 7 — SOUND MAP
   =========================== */

.gb-soundmap {
  padding: 70px 0 78px;
  position: relative;
}

.gb-soundmap__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

.gb-soundmap__list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gb-soundmap__list li {
  padding: 10px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(5, 14, 36, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.26);
}

.gb-soundmap__list strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.gb-soundmap__list span {
  font-size: 0.86rem;
}

/* Visual side */

.gb-soundmap__visual {
  position: relative;
  min-height: 320px;
}

.gb-soundmap__wave {
  position: absolute;
  inset-inline: 4%;
  top: 14%;
  height: 72px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 50%, rgba(110, 231, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 50%, rgba(255, 179, 92, 0.18), transparent 55%);
  border: 1px solid rgba(188, 214, 248, 0.26);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.gb-soundmap__pulse {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(192, 243, 255, 1), rgba(110, 231, 255, 0.1));
  transform: translateY(-50%);
  animation: gb-eq-pulse 1.7s ease-in-out infinite;
}

.gb-soundmap__pulse--low {
  left: 24%;
}

.gb-soundmap__pulse--mid {
  left: 50%;
  height: 48px;
  animation-delay: 0.4s;
}

.gb-soundmap__pulse--high {
  left: 74%;
  height: 60px;
  animation-delay: 0.9s;
}

@keyframes gb-eq-pulse {
  0% {
    transform: translateY(-50%) scaleY(0.6);
  }
  50% {
    transform: translateY(-50%) scaleY(1.2);
  }
  100% {
    transform: translateY(-50%) scaleY(0.7);
  }
}

.gb-soundmap__photo {
  position: absolute;
  max-width: 230px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-soundmap__photo img {
  border-radius: 14px;
}

.gb-soundmap__photo--left {
  left: 0;
  bottom: -10px;
  transform: rotate(-6deg);
}

.gb-soundmap__photo--center {
  left: 50%;
  top: 40%;
  transform: translateX(-50%) rotate(4deg);
}

.gb-soundmap__photo--right {
  right: 0;
  bottom: 4px;
  transform: rotate(-3deg);
}

.gb-soundmap__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.98);
}

.gb-soundmap__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   RESPONSIVE FOR 5–7
   =========================== */

@media (max-width: 1024px) {
  .gb-icelab__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

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

  .gb-soundmap__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 840px) {
  .gb-icelab__grid {
    grid-template-columns: 1fr;
  }

  .gb-icelab__imagestack {
    margin-top: 20px;
    min-height: auto;
  }

  .gb-icelab__depthbar {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    margin: 0 auto 16px;
    height: 220px;
  }

  .gb-icelab__photo {
    position: relative;
    margin: 0 auto 14px;
    top: auto;
    right: auto;
    bottom: auto;
    transform: rotate(0deg);
  }

  .gb-setups__grid {
    grid-template-columns: 1fr;
  }

  .gb-soundmap__grid {
    grid-template-columns: 1fr;
  }

  .gb-soundmap__visual {
    margin-top: 18px;
    min-height: auto;
  }

  .gb-soundmap__wave {
    position: relative;
    inset-inline: auto;
    top: auto;
    margin-bottom: 18px;
  }

  .gb-soundmap__photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: rotate(0deg);
    margin: 0 auto 14px;
  }
}

@media (max-width: 520px) {
  .gb-icelab {
    padding: 56px 0 56px;
  }

  .gb-setups {
    padding: 58px 0 60px;
  }

  .gb-soundmap {
    padding: 58px 0 64px;
  }
}
/* ===========================
   SECTION 8 — PACK LAYOUT GRID
   =========================== */

.gb-packgrid {
  padding: 72px 0 72px;
  position: relative;
}

.gb-packgrid__shell {
  position: relative;
  border-radius: var(--gb-radius-lg);
  padding: 26px 22px 26px;
  background:
    radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 179, 92, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(2, 7, 19, 0.96), rgba(7, 18, 46, 0.98));
  border: 1px solid rgba(188, 214, 248, 0.26);
  box-shadow: var(--gb-shadow-soft);
}

.gb-packgrid__header {
  max-width: 760px;
  margin-bottom: 20px;
}

.gb-packgrid__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}

/* Grid slots */

.gb-packgrid__slot {
  position: relative;
  border-radius: 22px;
  padding: 14px 14px 16px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(5, 14, 36, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.26);
  box-shadow: var(--gb-shadow-soft);
}

.gb-packgrid__slot--notes {
  grid-column: 1 / 3;
}

.gb-packgrid__slot--sled {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.gb-packgrid__slot--bucket {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gb-packgrid__slot--checklist {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gb-packgrid__slot--cozy {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gb-packgrid__title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.gb-packgrid__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   SECTION 9 — NIGHT SHIFT
   =========================== */

.gb-nightshift {
  padding: 72px 0 74px;
  position: relative;
}

.gb-nightshift__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.gb-nightshift__bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gb-nightshift__pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(5, 14, 36, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
}

.gb-nightshift__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 179, 92, 0.8);
  margin-top: 4px;
  box-shadow: 0 0 0 6px rgba(255, 179, 92, 0.24);
}

.gb-nightshift__visual {
  position: relative;
  min-height: 280px;
}

.gb-nightshift__halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 179, 92, 0.35), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(110, 231, 255, 0.25), transparent 60%);
  opacity: 0.9;
  filter: blur(6px);
  pointer-events: none;
}

.gb-nightshift__photo {
  position: absolute;
  max-width: 260px;
  padding: 10px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(3, 10, 26, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.32);
  box-shadow: var(--gb-shadow-elevated);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-nightshift__photo img {
  border-radius: 16px;
}

.gb-nightshift__photo--top {
  top: -6px;
  right: 8%;
  transform: rotate(-5deg);
}

.gb-nightshift__photo--bottom {
  bottom: -8px;
  left: 6%;
  transform: rotate(4deg);
}

.gb-nightshift__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.98);
}

.gb-nightshift__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   SECTION 10 — EXIT ROUTE STRIP
   =========================== */

.gb-routestrip {
  padding: 74px 0 80px;
  position: relative;
}

.gb-routestrip__shell {
  position: relative;
}

.gb-routestrip__header {
  max-width: 760px;
  margin-bottom: 24px;
}

/* Steps band */

.gb-routestrip__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), transparent 50%),
    linear-gradient(135deg, rgba(5, 14, 36, 0.97), rgba(7, 18, 46, 0.98));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-soft);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.gb-routestrip__steps::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(192, 243, 255, 0.3),
    rgba(255, 179, 92, 0.7),
    rgba(192, 243, 255, 0.3)
  );
  opacity: 0.75;
}

.gb-routestrip__step {
  position: relative;
  padding: 10px 10px 10px 0;
}

.gb-routestrip__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(192, 243, 255, 0.6);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gb-color-ice-soft);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.32), rgba(3, 10, 26, 0.96));
  margin-bottom: 0.4rem;
}

.gb-routestrip__step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.gb-routestrip__step p {
  font-size: 0.86rem;
}

/* Photo strip */

.gb-routestrip__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gb-routestrip__photo {
  position: relative;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-soft);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-routestrip__photo img {
  border-radius: 14px;
}

.gb-routestrip__photo--left {
  transform: rotate(-4deg);
}

.gb-routestrip__photo--center {
  transform: translateY(-4px);
}

.gb-routestrip__photo--right {
  transform: rotate(3deg);
}

.gb-routestrip__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.98);
}

.gb-routestrip__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   RESPONSIVE FOR 8–10
   =========================== */

@media (max-width: 1024px) {
  .gb-packgrid__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-packgrid__slot--sled {
    grid-column: 2 / 3;
  }

  .gb-packgrid__slot--cozy {
    grid-column: 1 / 2;
  }

  .gb-nightshift__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

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

@media (max-width: 840px) {
  .gb-packgrid__shell {
    padding: 22px 18px 24px;
  }

  .gb-packgrid__layout {
    grid-template-columns: 1fr;
  }

  .gb-packgrid__slot--notes,
  .gb-packgrid__slot--sled,
  .gb-packgrid__slot--bucket,
  .gb-packgrid__slot--checklist,
  .gb-packgrid__slot--cozy {
    grid-column: 1 / -1;
  }

  .gb-nightshift__grid {
    grid-template-columns: 1fr;
  }

  .gb-nightshift__visual {
    margin-top: 18px;
    min-height: auto;
  }

  .gb-nightshift__photo {
    position: relative;
    margin: 0 auto 14px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: rotate(0deg);
  }

  .gb-routestrip__steps {
    grid-template-columns: 1fr;
  }

  .gb-routestrip__steps::before {
    display: none;
  }

  .gb-routestrip__photos {
    grid-template-columns: 1fr;
  }

  .gb-routestrip__photo--left,
  .gb-routestrip__photo--center,
  .gb-routestrip__photo--right {
    transform: rotate(0deg);
  }
}

@media (max-width: 520px) {
  .gb-packgrid {
    padding: 58px 0 60px;
  }

  .gb-nightshift {
    padding: 58px 0 62px;
  }

  .gb-routestrip {
    padding: 60px 0 66px;
  }
}
/* ===========================
   SECTION 11 — HOLE PATTERN STUDIO
   =========================== */

.gb-holes {
  padding: 70px 0 72px;
  position: relative;
}

.gb-holes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: flex-start;
}

.gb-holes__list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.gb-holes__list li {
  position: relative;
  padding-left: 18px;
}

.gb-holes__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(192, 243, 255, 0.7);
}

/* Visual side */

.gb-holes__visual {
  position: relative;
}

.gb-holes__diagram {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-holes__ring {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px dashed rgba(192, 243, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  background: radial-gradient(circle at 50% 50%, rgba(110, 231, 255, 0.15), transparent 60%);
  animation: gb-hole-spin 18s linear infinite;
}

.gb-holes__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gb-color-ice);
  box-shadow: 0 0 0 6px rgba(110, 231, 255, 0.28);
}

.gb-holes__dot--one {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.gb-holes__dot--two {
  left: 12%;
  bottom: 16%;
}

.gb-holes__dot--three {
  right: 10%;
  bottom: 10%;
}

@keyframes gb-hole-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gb-holes__photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gb-holes__photo {
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.28);
  box-shadow: var(--gb-shadow-soft);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-holes__photo img {
  border-radius: 14px;
}

.gb-holes__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.98);
}

.gb-holes__caption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   SECTION 12 — WEATHER EDGES
   =========================== */

.gb-weather {
  padding: 70px 0 72px;
  position: relative;
}

.gb-weather__header {
  max-width: 720px;
  margin-bottom: 20px;
}

.gb-weather__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gb-weather__card {
  position: relative;
  border-radius: 22px;
  padding: 12px 12px 14px;
  background:
    radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(5, 14, 36, 0.98), rgba(7, 18, 46, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-soft);
  transition:
    transform var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal),
    border-color var(--gb-transition-normal);
}

.gb-weather__card::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6ee7ff, #c0f3ff);
  opacity: 0.8;
}

.gb-weather__card--mid::after {
  background: linear-gradient(90deg, #c0f3ff, #ffb35c);
}

.gb-weather__card--warn::after {
  background: linear-gradient(90deg, #ffb35c, #ff6b6b);
}

.gb-weather__card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.96);
  border-color: rgba(192, 243, 255, 0.45);
}

.gb-weather__figure {
  margin-bottom: 0.6rem;
}

.gb-weather__card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.gb-weather__card p {
  font-size: 0.86rem;
}

/* ===========================
   SECTION 13 — QUIET LOG BOOK
   =========================== */

.gb-log {
  padding: 70px 0 76px;
  position: relative;
}

.gb-log__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: flex-start;
}

.gb-log__list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
}

.gb-log__list li::before {
  content: "— ";
  color: var(--gb-color-ice-soft);
}

.gb-log__stack {
  position: relative;
  min-height: 220px;
}

.gb-log__photo {
  position: absolute;
  max-width: 240px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.3);
  box-shadow: var(--gb-shadow-soft);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-log__photo img {
  border-radius: 14px;
}

.gb-log__photo--top {
  top: -6px;
  left: 6%;
  transform: rotate(-4deg);
}

.gb-log__photo--bottom {
  bottom: -10px;
  right: 4%;
  transform: rotate(3deg);
}

.gb-log__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.98);
}

.gb-log__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   RESPONSIVE FOR 11–13
   =========================== */

@media (max-width: 1024px) {
  .gb-holes__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .gb-log__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 840px) {
  .gb-holes__grid {
    grid-template-columns: 1fr;
  }

  .gb-holes__diagram {
    justify-content: flex-start;
  }

  .gb-log__grid {
    grid-template-columns: 1fr;
  }

  .gb-log__stack {
    margin-top: 18px;
    min-height: auto;
  }

  .gb-log__photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: rotate(0deg);
    margin: 0 auto 12px;
  }
}

@media (max-width: 520px) {
  .gb-holes,
  .gb-weather,
  .gb-log {
    padding: 58px 0 60px;
  }

  .gb-weather__cards {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   SECTION 14 — TRAVEL CORRIDOR
   =========================== */

.gb-travel {
  padding: 70px 0 72px;
  position: relative;
}

.gb-travel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.gb-travel__chips {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gb-travel__chip {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(188, 214, 248, 0.5);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.16), rgba(5, 14, 36, 0.96));
  color: var(--gb-color-ice-soft);
}

.gb-travel__panel {
  position: relative;
  max-width: 280px;
  margin-left: auto;
  padding: 10px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.12), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.32);
  box-shadow: var(--gb-shadow-elevated);
  overflow: hidden;
}

.gb-travel__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(110, 231, 255, 0.22), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(255, 179, 92, 0.2), transparent 50%);
  opacity: 0.9;
  filter: blur(6px);
  pointer-events: none;
}

.gb-travel__panel img {
  border-radius: 16px;
  position: relative;
}

.gb-travel__panel:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.98);
}

.gb-travel__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   SECTION 15 — GLACIER BITE NOTE
   =========================== */

.gb-finale {
  padding: 72px 0 84px;
  position: relative;
}

.gb-finale__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.gb-finale__text p:last-of-type {
  margin-bottom: 0;
}

.gb-finale__stack {
  position: relative;
  min-height: 220px;
}

.gb-finale__photo {
  position: absolute;
  max-width: 240px;
  padding: 8px;
  border-radius: var(--gb-radius-md);
  background: radial-gradient(circle at 0 0, rgba(110, 231, 255, 0.14), rgba(4, 12, 30, 0.96));
  border: 1px solid rgba(188, 214, 248, 0.32);
  box-shadow: var(--gb-shadow-soft);
  transition:
    transform var(--gb-transition-normal),
    border-color var(--gb-transition-normal),
    box-shadow var(--gb-transition-normal);
}

.gb-finale__photo img {
  border-radius: 16px;
}

.gb-finale__photo--front {
  top: -4px;
  left: 4%;
  transform: rotate(-4deg);
  z-index: 2;
}

.gb-finale__photo--back {
  bottom: -12px;
  right: 0;
  transform: rotate(3deg);
  opacity: 0.96;
}

.gb-finale__photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192, 243, 255, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.98);
}

.gb-finale__caption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(198, 214, 239, 0.92);
}

/* ===========================
   RESPONSIVE FOR 14–15
   =========================== */

@media (max-width: 960px) {
  .gb-travel__grid,
  .gb-finale__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 840px) {
  .gb-travel__grid,
  .gb-finale__grid {
    grid-template-columns: 1fr;
  }

  .gb-travel__panel {
    margin: 18px auto 0;
  }

  .gb-finale__stack {
    margin-top: 18px;
    min-height: auto;
  }

  .gb-finale__photo {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: rotate(0deg);
    margin: 0 auto 12px;
  }
}

@media (max-width: 520px) {
  .gb-travel,
  .gb-finale {
    padding: 58px 0 62px;
  }
}
