/* ===========================
   GlacierHook Outfitters
   Root page styles (root.html)
   Dark ice hero
   =========================== */

/* HERO SECTION ---------------------------------------------------- */

.gh-hero {
  padding-block: 5.25rem 5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(64, 189, 255, 0.32), transparent 60%),
    radial-gradient(circle at 90% 0%, rgba(107, 253, 255, 0.32), transparent 60%),
    radial-gradient(circle at 50% 100%, #020314 0, #000108 55%, #000000 100%);
  overflow: hidden;
}

.gh-hero-bg-layer {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 10%, rgba(73, 153, 255, 0.24), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(80, 235, 255, 0.24), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(1, 5, 18, 0.9), transparent 65%);
  opacity: 0.85;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gh-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
  z-index: 1;
}

/* Text column ----------------------------------------------------- */

.gh-hero-text {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.gh-section-kicker {
  color: rgba(157, 206, 255, 0.88);
}

.gh-hero-title {
  font-family: var(--gh-font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  color: #f7fbff;
  text-shadow:
    0 0 24px rgba(81, 208, 255, 0.9),
    0 16px 42px rgba(0, 0, 0, 0.9);
}

.gh-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 0.85rem;
  color: var(--gh-color-ink-main);
}

.gh-hero-copy {
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 0.85rem;
  color: var(--gh-color-ink-soft);
}

.gh-hero-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
}

.gh-hero-list-item {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gh-color-ink-main);
}

.gh-hero-list-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 99px;
  background: radial-gradient(
    circle at 30% 0%,
    var(--gh-color-signal),
    var(--gh-color-accent)
  );
  box-shadow: 0 0 0 4px rgba(77, 184, 255, 0.3);
}

.gh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.gh-hero-microcopy {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: var(--gh-color-ink-muted);
}

/* Visual column --------------------------------------------------- */

.gh-hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  justify-items: stretch;
}

/* Orbit card cluster */
.gh-hero-orbit {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 1.85rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 142, 248, 0.65), transparent 70%),
    radial-gradient(circle at 0% 100%, rgba(33, 186, 232, 0.5), transparent 80%),
    linear-gradient(
      145deg,
      rgba(1, 12, 30, 0.98),
      rgba(1, 5, 19, 0.98)
    );
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 1),
    0 0 44px rgba(71, 217, 255, 0.3);
  overflow: hidden;
}

.gh-hero-orbit-ring {
  position: absolute;
  inset-inline: -40%;
  inset-block-start: 50%;
  transform: translateY(-50%);
  height: 7.8rem;
  background: radial-gradient(
    ellipse at center,
    rgba(77, 223, 255, 0.4) 0,
    rgba(77, 223, 255, 0.08) 45%,
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gh-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 1.1rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(134, 224, 255, 0.24),
      transparent 65%
    ),
    rgba(4, 20, 40, 0.98);
  box-shadow: var(--gh-shadow-subtle);
  transform-origin: center;
  animation: gh-card-drift 16s infinite alternate ease-in-out;
  border: 1px solid rgba(103, 204, 255, 0.4);
}

.gh-hero-card--angler {
  animation-delay: 0s;
}

.gh-hero-card--shelter {
  animation-delay: 1.7s;
}

.gh-hero-card--auger {
  animation-delay: 3.4s;
}

.gh-hero-image {
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
}

.gh-hero-caption {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--gh-color-ink-soft);
}

/* Floating cards animation */

@keyframes gh-card-drift {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: var(--gh-shadow-subtle);
  }
  50% {
    transform: translateY(-6px) scale(1.02) rotate(-0.5deg);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
  }
  100% {
    transform: translateY(2px) scale(0.995) rotate(0.4deg);
    box-shadow: var(--gh-shadow-subtle);
  }
}

/* Metrics strip --------------------------------------------------- */

.gh-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gh-metric {
  position: relative;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(93, 215, 255, 0.4),
      transparent 60%
    ),
    rgba(0, 4, 12, 0.96);
  color: #e2f1ff;
  overflow: hidden;
  border: 1px solid rgba(93, 204, 255, 0.5);
}

.gh-metric::before {
  content: "";
  position: absolute;
  inset-block-start: -40%;
  inset-inline-end: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(
    circle at center,
    rgba(122, 214, 255, 0.9),
    transparent 55%
  );
  opacity: 0.2;
}

.gh-metric-value {
  position: relative;
  font-family: var(--gh-font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.gh-metric-label {
  position: relative;
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #c2ddff;
}

/* Scroll reveal modifiers for hero ------------------------------- */

.gh-hero.js-observe {
  transform: translateY(32px);
}

.gh-hero.js-observe.is-visible {
  transform: translateY(0);
}

/* Responsive: hero ------------------------------------------------ */

@media (max-width: 1100px) {
  .gh-hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }

  .gh-hero-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 960px) {
  .gh-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-hero-text {
    max-width: 100%;
  }

  .gh-hero-visual {
    max-width: 32rem;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .gh-hero {
    padding-block: 4.25rem 4rem;
  }

  .gh-hero-title {
    font-size: 1.8rem;
  }

  .gh-hero-actions {
    flex-direction: row;
  }

  .gh-hero-orbit {
    padding: 1.1rem;
  }

  .gh-hero-card {
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .gh-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gh-metric {
    padding: 0.75rem;
  }
}

@media (max-width: 640px) {
  .gh-hero-inner {
    gap: 2.1rem;
  }

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

  .gh-hero-orbit {
    padding: 1rem;
  }

  .gh-hero-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gh-hero {
    padding-block: 3.75rem 3.25rem;
  }

  .gh-hero-title {
    font-size: 1.6rem;
  }

  .gh-hero-lead,
  .gh-hero-copy {
    font-size: 0.9rem;
  }

  .gh-hero-list-item {
    font-size: 0.9rem;
  }

  .gh-hero-microcopy {
    font-size: 0.8rem;
  }
}
/* ===========================
   SECTION 2: BUNDLED ICE KITS STRIP
   =========================== */

.gh-bands {
  background:
    radial-gradient(circle at 0% 0%, rgba(60, 164, 255, 0.34), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(11, 60, 109, 0.8), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(2, 9, 22, 0.98));
}

.gh-bands-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.gh-bands-text {
  max-width: 24rem;
}

.gh-bands-title {
  font-family: var(--gh-font-display);
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  color: #f6fbff;
}

.gh-bands-lead {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

.gh-bands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.gh-band-card {
  position: relative;
  padding: 1rem 1rem 1rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 249, 255, 0.15), transparent 65%),
    rgba(4, 16, 38, 0.98);
  border: 1px solid rgba(110, 204, 255, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-band-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -40%;
  inset-block-start: -40%;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle at center,
    rgba(77, 249, 255, 0.4),
    transparent 60%
  );
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gh-band-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
  border-color: rgba(143, 233, 255, 0.8);
}

.gh-band-header {
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
}

.gh-band-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 212, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gh-color-ice-soft);
  background: rgba(1, 10, 24, 0.9);
}

.gh-band-pill--accent {
  background: linear-gradient(
    135deg,
    rgba(52, 189, 255, 0.96),
    rgba(103, 240, 255, 0.96)
  );
  border-color: transparent;
  color: #02121f;
}

.gh-band-name {
  font-family: var(--gh-font-display);
  font-size: 1.05rem;
  margin: 0.5rem 0 0;
  color: #f5fbff;
}

.gh-band-media {
  position: relative;
  z-index: 1;
  margin: 0.6rem 0 0.6rem;
}

.gh-band-image {
  width: 100%;
}

.gh-band-caption {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

.gh-band-text {
  position: relative;
  z-index: 1;
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

/* ===========================
   SECTION 3: CONDITIONS RIBBON
   =========================== */

.gh-conditions {
  background:
    radial-gradient(circle at 0% 100%, rgba(71, 178, 255, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(1, 5, 16, 0.98), rgba(1, 2, 8, 0.98));
}

.gh-conditions-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.gh-conditions-headline {
  max-width: 25rem;
}

.gh-conditions-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
  color: #f6fbff;
}

.gh-conditions-text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-conditions-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.gh-conditions-ribbon::before {
  content: "";
  position: absolute;
  inset-inline: -6%;
  inset-block-start: 1.4rem;
  height: 3px;
  background: linear-gradient(
    to right,
    rgba(77, 249, 255, 0),
    rgba(77, 249, 255, 0.9),
    rgba(77, 249, 255, 0)
  );
  opacity: 0.7;
  filter: blur(0.5px);
  pointer-events: none;
}

.gh-condition-card {
  position: relative;
  padding: 1.1rem 1rem 1rem;
  border-radius: 1.25rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(126, 213, 255, 0.2),
      transparent 60%
    ),
    rgba(3, 11, 28, 0.98);
  border: 1px solid rgba(117, 204, 255, 0.5);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.95);
  transform-origin: center bottom;
  transform: translateY(0) rotate(0);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-condition-card--soft {
  transform: translateY(4px) rotate(-2deg);
}

.gh-condition-card--wind {
  transform: translateY(-4px);
}

.gh-condition-card--night {
  transform: translateY(4px) rotate(2deg);
}

.gh-condition-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 1);
  border-color: rgba(156, 233, 255, 0.9);
}

.gh-condition-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(6, 33, 69, 0.96);
  border: 1px solid rgba(131, 214, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gh-color-ice-soft);
}

.gh-condition-badge--accent {
  background: linear-gradient(
    135deg,
    rgba(54, 186, 255, 0.98),
    rgba(96, 238, 255, 0.98)
  );
  border-color: transparent;
  color: #02131f;
}

.gh-condition-media {
  margin: 0.7rem 0 0.6rem;
}

.gh-condition-image {
  width: 100%;
}

.gh-condition-title {
  margin: 0 0 0.25rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f5fbff;
}

.gh-condition-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

/* ===========================
   SECTION 4: DETAIL LAYER ORBIT
   =========================== */

.gh-layers {
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 170, 255, 0.3), transparent 55%),
    linear-gradient(180deg, rgba(1, 4, 15, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-layers-inner {
  display: flex;
  justify-content: center;
}

.gh-layers-core {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding: 2.25rem 2.1rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 249, 255, 0.18), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(14, 79, 153, 0.9), transparent 70%),
    rgba(3, 14, 32, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 1);
  overflow: hidden;
}

.gh-layers-ring {
  position: absolute;
  inset-inline: 8%;
  inset-block-start: 55%;
  transform: translateY(-50%);
  height: 2.85rem;
  background: radial-gradient(
    ellipse at center,
    rgba(94, 212, 255, 0.45),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gh-layers-main {
  position: relative;
  z-index: 1;
  max-width: 13rem;
}

.gh-layers-main-image {
  width: 100%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 1);
}

.gh-layers-main-caption {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

.gh-layers-text {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.gh-layers-title {
  font-family: var(--gh-font-display);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: #f7fbff;
}

.gh-layers-copy {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-layers-list {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-layers-item {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

.gh-layers-item + .gh-layers-item {
  margin-top: 0.2rem;
}

/* Layout inside core: main, text, chips */
.gh-layers-core {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.gh-layers-chip {
  position: absolute;
  width: 9rem;
}

.gh-layers-chip--boot {
  inset-inline-start: 3%;
  inset-block-start: 18%;
}

.gh-layers-chip--auger {
  inset-inline-end: 4%;
  inset-block-end: 5%;
}

.gh-layers-chip-image {
  width: 100%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 1);
}

.gh-layers-chip-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--gh-color-ink-muted);
}

/* Responsive: sections 2–4 ---------------------------------------- */

@media (max-width: 1100px) {
  .gh-bands-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  }
}

@media (max-width: 960px) {
  .gh-bands-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-bands-text {
    max-width: 100%;
  }

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

  .gh-conditions-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .gh-conditions-headline {
    max-width: 100%;
  }

  .gh-layers-core {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 768px) {
  .gh-bands-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-condition-card--soft,
  .gh-condition-card--wind,
  .gh-condition-card--night {
    transform: translateY(0) rotate(0);
  }

  .gh-conditions-ribbon {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-conditions-ribbon::before {
    display: none;
  }

  .gh-layers-core {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.9rem 1.6rem 2.2rem;
  }

  .gh-layers-main {
    max-width: 11.5rem;
  }

  .gh-layers-chip {
    position: static;
    width: 8.5rem;
  }

  .gh-layers-core {
    row-gap: 1.6rem;
  }

  .gh-layers-ring {
    inset-inline: 10%;
  }
}

@media (max-width: 640px) {
  .gh-layers-core {
    padding: 1.7rem 1.4rem 2rem;
  }

  .gh-layers-title {
    font-size: 1.5rem;
  }

  .gh-bands-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gh-bands {
    padding-block: 3.5rem;
  }

  .gh-conditions {
    padding-block: 3.5rem;
  }

  .gh-layers {
    padding-block: 3.4rem;
  }

  .gh-band-card {
    padding: 0.9rem;
  }

  .gh-condition-card {
    padding: 0.95rem;
  }

  .gh-layers-core {
    border-radius: 1.7rem;
  }
}
/* ===========================
   SECTION 4: DETAIL LAYER ORBIT
   =========================== */

.gh-layers {
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 170, 255, 0.3), transparent 55%),
    linear-gradient(180deg, rgba(1, 4, 15, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-layers-inner {
  display: flex;
  justify-content: center;
}

.gh-layers-core {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding: 2.25rem 2.1rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 249, 255, 0.18), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(14, 79, 153, 0.9), transparent 70%),
    rgba(3, 14, 32, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 1);
  overflow: hidden;

  /* сетка вместо абсолютного позиционирования чипов */
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  grid-auto-rows: auto;
  gap: 2.4rem 2.4rem;
  align-items: center;
}

.gh-layers-ring {
  position: absolute;
  inset-inline: 8%;
  inset-block-start: 55%;
  transform: translateY(-50%);
  height: 2.85rem;
  background: radial-gradient(
    ellipse at center,
    rgba(94, 212, 255, 0.45),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* основной кадр слева */
.gh-layers-main {
  position: relative;
  z-index: 1;
  max-width: 13rem;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

.gh-layers-main-image {
  width: 100%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 1);
}

.gh-layers-main-caption {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

/* текст справа */
.gh-layers-text {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  grid-column: 2;
  grid-row: 1;
}

.gh-layers-title {
  font-family: var(--gh-font-display);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: #f7fbff;
}

.gh-layers-copy {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-layers-list {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-layers-item {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

.gh-layers-item + .gh-layers-item {
  margin-top: 0.2rem;
}

/* чипы — второй ряд сетки, разнесены по колонкам */
.gh-layers-chip {
  position: relative;
  width: 9rem;
  z-index: 1;
}

.gh-layers-chip--boot {
  grid-column: 1;
  grid-row: 2;
  justify-self: flex-start;
}

.gh-layers-chip--auger {
  grid-column: 2;
  grid-row: 2;
  justify-self: flex-end;
}

.gh-layers-chip-image {
  width: 100%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 1);
}

.gh-layers-chip-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--gh-color-ink-muted);
}

/* Responsive: section 4 ------------------------------------------ */

@media (max-width: 960px) {
  .gh-layers-core {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem 1.4rem;
    padding: 1.9rem 1.6rem 2.2rem;
  }

  .gh-layers-main {
    grid-column: 1;
    grid-row: 1;
    max-width: 11.5rem;
  }

  .gh-layers-text {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }

  .gh-layers-chip--boot {
    grid-column: 1;
    grid-row: 3;
    justify-self: flex-start;
  }

  .gh-layers-chip--auger {
    grid-column: 1;
    grid-row: 4;
    justify-self: flex-start;
  }

  .gh-layers-ring {
    inset-inline: 10%;
  }
}

@media (max-width: 640px) {
  .gh-layers-core {
    padding: 1.7rem 1.4rem 2rem;
  }

  .gh-layers-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gh-layers {
    padding-block: 3.4rem;
  }

  .gh-layers-core {
    border-radius: 1.7rem;
  }
}
/* ===========================
   SECTION 5: ICE ROUTES TRACK
   =========================== */

.gh-routes {
  background:
    radial-gradient(circle at 0% 100%, rgba(58, 163, 255, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(0, 2, 9, 0.98), rgba(1, 7, 18, 0.98));
}

.gh-routes-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gh-routes-head {
  max-width: 28rem;
}

.gh-routes-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
  color: #f5fbff;
}

.gh-routes-lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-routes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.gh-routes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.gh-routes-list::before {
  content: "";
  position: absolute;
  inset-block: 0.3rem;
  inset-inline-start: 0.7rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(111, 210, 255, 0.2),
    rgba(111, 210, 255, 0.8),
    rgba(111, 210, 255, 0.2)
  );
}

.gh-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.4rem 1.2rem;
}

.gh-route-node {
  position: relative;
  width: 1.4rem;
  display: flex;
  justify-content: center;
}

.gh-route-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 0%,
    var(--gh-color-signal),
    var(--gh-color-accent)
  );
  box-shadow: 0 0 16px rgba(83, 219, 255, 0.9);
}

.gh-route-line {
  position: absolute;
  inset-block-start: 0.9rem;
  width: 2px;
  height: calc(100% - 0.9rem);
  background: linear-gradient(
    to bottom,
    rgba(111, 210, 255, 0.8),
    rgba(111, 210, 255, 0)
  );
}

.gh-route-body {
  padding: 0.4rem 0.9rem 0.9rem;
  border-radius: 1.1rem;
  background: rgba(3, 14, 32, 0.96);
  border: 1px solid rgba(110, 204, 255, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-route:hover .gh-route-body {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 1);
  border-color: rgba(143, 233, 255, 0.9);
}

.gh-route-name {
  margin: 0 0 0.3rem;
  font-family: var(--gh-font-display);
  font-size: 1.05rem;
  color: #f6fbff;
}

.gh-route-text {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--gh-color-ink-soft);
}

.gh-route-media {
  margin: 0;
}

.gh-route-image {
  width: 100%;
}

/* routes side note */
.gh-routes-note {
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(97, 206, 255, 0.2),
      transparent 65%
    ),
    rgba(5, 19, 42, 0.98);
  border: 1px solid rgba(121, 210, 255, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.95);
}

.gh-routes-note-label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gh-color-ice-soft);
}

.gh-routes-note-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

/* ===========================
   SECTION 6: GEAR LANES RAIL
   =========================== */

.gh-lanes {
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 187, 255, 0.3), transparent 55%),
    linear-gradient(180deg, rgba(1, 5, 16, 0.98), rgba(1, 2, 8, 0.98));
}

.gh-lanes-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gh-lanes-head {
  max-width: 30rem;
}

.gh-lanes-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0;
  color: #f6fbff;
}

.gh-lanes-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.4rem 1.3rem;
  border-radius: 2rem;
  background:
    linear-gradient(
      120deg,
      rgba(4, 13, 30, 0.98),
      rgba(5, 24, 50, 0.98),
      rgba(4, 13, 30, 0.98)
    );
  box-shadow: 0 20px 52px rgba(0, 0, 0, 1);
  overflow: hidden;
}

.gh-lanes-rail::before {
  content: "";
  position: absolute;
  inset-inline: -10%;
  inset-block-start: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(77, 249, 255, 0),
    rgba(77, 249, 255, 1),
    rgba(77, 249, 255, 0)
  );
  opacity: 0.75;
  filter: blur(0.6px);
  pointer-events: none;
}

.gh-lane-card {
  position: relative;
  padding: 1rem 1rem 1rem;
  border-radius: 1.35rem;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(118, 218, 255, 0.2),
      transparent 60%
    ),
    rgba(1, 8, 21, 0.98);
  border: 1px solid rgba(117, 210, 255, 0.55);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.95);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-lane-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
  border-color: rgba(149, 235, 255, 0.95);
}

.gh-lane-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 30, 69, 0.95);
  border: 1px solid rgba(133, 216, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gh-color-ice-soft);
}

.gh-lane-label--accent {
  background: linear-gradient(
    135deg,
    rgba(52, 187, 255, 0.98),
    rgba(97, 239, 255, 0.98)
  );
  border-color: transparent;
  color: #02151f;
}

.gh-lane-media {
  margin: 0 0 0.55rem;
}

.gh-lane-image {
  width: 100%;
}

.gh-lane-name {
  margin: 0 0 0.3rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f6fbff;
}

.gh-lane-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

/* ===========================
   SECTION 7: PACKING STRIP
   =========================== */

.gh-pack {
  background:
    radial-gradient(circle at 0% 0%, rgba(71, 178, 255, 0.24), transparent 55%),
    linear-gradient(180deg, rgba(0, 2, 9, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-pack-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.7rem;
  align-items: center;
}

.gh-pack-text {
  max-width: 26rem;
}

.gh-pack-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.7rem;
  color: #f6fbff;
}

.gh-pack-copy {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-pack-list {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-pack-item {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

.gh-pack-item + .gh-pack-item {
  margin-top: 0.2rem;
}

/* gallery */

.gh-pack-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gh-pack-card {
  position: relative;
  padding: 0.75rem;
  border-radius: 1.4rem;
  background: rgba(2, 11, 26, 0.96);
  border: 1px solid rgba(119, 210, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-pack-card--sled {
  transform: translateY(6px);
}

.gh-pack-card--crate {
  transform: translateY(-6px);
}

.gh-pack-card--label {
  transform: translateY(10px);
}

.gh-pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 1);
  border-color: rgba(155, 235, 255, 0.95);
}

.gh-pack-image {
  width: 100%;
}

.gh-pack-caption {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}
@media (max-width: 960px) {
  .gh-routes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-routes-note {
    max-width: 24rem;
  }

  .gh-lanes-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-pack-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-pack-gallery {
    margin-top: 0.6rem;
  }
}

@media (max-width: 768px) {
  .gh-pack-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-pack-card--sled,
  .gh-pack-card--crate,
  .gh-pack-card--label {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .gh-routes-title,
  .gh-lanes-title,
  .gh-pack-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .gh-routes,
  .gh-lanes,
  .gh-pack {
    padding-block: 3.4rem;
  }

  .gh-routes-grid {
    gap: 2rem;
  }
}
/* ===========================
   SECTION 8: MATERIAL BELT
   =========================== */

.gh-materials {
  background:
    radial-gradient(circle at 0% 0%, rgba(71, 178, 255, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(0, 2, 9, 0.98), rgba(1, 6, 18, 0.98));
}

.gh-materials-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gh-materials-head {
  max-width: 26rem;
}

.gh-materials-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0;
  color: #f6fbff;
}

.gh-materials-belt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.gh-material-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 0 0, rgba(110, 213, 255, 0.25), transparent 65%),
    rgba(3, 13, 30, 0.98);
  border: 1px solid rgba(120, 214, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-material-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
  border-color: rgba(149, 235, 255, 0.95);
}

.gh-material-media {
  margin: 0;
}

.gh-material-image {
  width: 100%;
}

.gh-material-body {
  min-width: 0;
}

.gh-material-name {
  margin: 0 0 0.25rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f6fbff;
}

.gh-material-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

/* ===========================
   SECTION 9: SOUND & SILENCE
   =========================== */

.gh-sound {
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 187, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(1, 4, 14, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-sound-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.gh-sound-head {
  max-width: 28rem;
}

.gh-sound-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
  color: #f6fbff;
}

.gh-sound-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-sound-dial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: center;
}

.gh-sound-side {
  padding: 1rem 1.1rem;
  border-radius: 1.6rem;
  background: rgba(3, 14, 32, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-sound-side:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
  border-color: rgba(154, 234, 255, 0.95);
}

.gh-sound-media {
  margin: 0 0 0.6rem;
}

.gh-sound-image {
  width: 100%;
}

.gh-sound-name {
  margin: 0 0 0.2rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f6fbff;
}

.gh-sound-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

.gh-sound-scale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.gh-sound-label {
  font-size: 0.78rem;
  color: var(--gh-color-ink-muted);
}

.gh-sound-label--quiet {
  color: var(--gh-color-ice-soft);
}

.gh-sound-bar {
  width: 0.22rem;
  height: 6rem;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(79, 213, 255, 0),
    rgba(79, 213, 255, 0.95),
    rgba(79, 213, 255, 0)
  );
  box-shadow: 0 0 18px rgba(79, 213, 255, 0.9);
}

/* ===========================
   SECTION 10: NIGHT MAP GRID
   =========================== */

.gh-night {
  background:
    radial-gradient(circle at 50% 0%, rgba(95, 210, 255, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(1, 4, 15, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-night-inner {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.gh-night-intro {
  max-width: 28rem;
}

.gh-night-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0;
  color: #f6fbff;
}

.gh-night-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1.1rem;
}

.gh-night-cell {
  position: relative;
  padding: 0.9rem 1rem;
  border-radius: 1.6rem;
  background: rgba(2, 11, 26, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
}

.gh-night-cell--map {
  grid-column: 1;
  grid-row: 1;
}

.gh-night-cell--copy {
  grid-column: 2;
  grid-row: 1;
}

.gh-night-cell--track {
  grid-column: 2;
  grid-row: 2;
}

.gh-night-cell--note {
  grid-column: 1;
  grid-row: 2;
}

.gh-night-image {
  width: 100%;
}

.gh-night-caption {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

.gh-night-subtitle {
  margin: 0 0 0.3rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f6fbff;
}

.gh-night-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-night-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

/* Responsive: sections 8–10 -------------------------------------- */

@media (max-width: 960px) {
  .gh-materials-belt {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-sound-dial {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-sound-scale {
    flex-direction: row;
    justify-content: center;
  }

  .gh-sound-bar {
    width: 6rem;
    height: 0.22rem;
  }

  .gh-night-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-night-cell--map,
  .gh-night-cell--copy,
  .gh-night-cell--track,
  .gh-night-cell--note {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .gh-materials-title,
  .gh-sound-title,
  .gh-night-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .gh-materials,
  .gh-sound,
  .gh-night {
    padding-block: 3.4rem;
  }
}
/* Общие правки для мобильных (≤ 480px) */
@media (max-width: 480px) {
  .gh-section {
    padding-block: 3.1rem;
  }

  /* Чуть меньше отступы внутри сложных блоков */
  .gh-hero-inner,
  .gh-bands-inner,
  .gh-conditions-inner,
  .gh-layers-core,
  .gh-routes-inner,
  .gh-lanes-inner,
  .gh-pack-inner,
  .gh-materials-inner,
  .gh-sound-inner,
  .gh-night-inner {
    gap: 1.6rem;
  }

  /* Все сложные гриды в один столбец */
  .gh-bands-grid,
  .gh-conditions-ribbon,
  .gh-pack-gallery,
  .gh-materials-belt,
  .gh-night-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Чуть компактнее маршрутная линия */
  .gh-routes-list::before {
    inset-inline-start: 0.5rem;
  }

  /* Карты маршрутов и карты ночи – на всю ширину */
  .gh-route-body,
  .gh-night-cell {
    padding-inline: 0.8rem;
  }

  /* Центруем изображения и не даём им "липнуть" к краям */
  .gh-hero-visual,
  .gh-pack-gallery,
  .gh-materials-belt,
  .gh-night-grid {
    justify-items: stretch;
  }

  /* Подписи немного меньше, чтобы не ломать строки */
  .gh-hero-caption,
  .gh-band-caption,
  .gh-condition-copy,
  .gh-pack-caption,
  .gh-material-text,
  .gh-sound-text,
  .gh-night-caption,
  .gh-night-note {
    font-size: 0.8rem;
  }
}

/* Обрезаем декоративные подсветки, чтобы они не создавали горизонтальный скролл */
.gh-hero-orbit,
.gh-conditions-ribbon,
.gh-lanes-rail,
.gh-layers-core {
  overflow: hidden;
}
/* Fix: materials pills on mobile */
@media (max-width: 540px) {
  /* сама пилюля – один столбец вместо двух */
  .gh-material-pill {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  /* картинка по центру и чуть поменьше */
  .gh-material-media {
    justify-self: center;
    max-width: 9.5rem;
  }

  .gh-material-image {
    width: 100%;
  }

  /* текст на всю ширину, перенос слов если что */
  .gh-material-body {
    min-width: 0;
  }

  .gh-material-name,
  .gh-material-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
/* ===========================
   SECTION 11: COMBO STACK WALL
   =========================== */

.gh-combos {
  background:
    radial-gradient(circle at 0% 100%, rgba(58, 163, 255, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(0, 2, 9, 0.98), rgba(1, 7, 18, 0.98));
}

.gh-combos-inner {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

.gh-combos-head {
  max-width: 30rem;
}

.gh-combos-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
  color: #f6fbff;
}

.gh-combos-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-combos-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.gh-combo-card {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 0 0, rgba(112, 216, 255, 0.2), transparent 60%),
    rgba(3, 13, 30, 0.98);
  border: 1px solid rgba(120, 214, 255, 0.6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.95);
  transform-origin: center;
  transform: translateY(0) rotate(0);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-combo-card--light {
  transform: translateY(4px) rotate(-1.5deg);
}

.gh-combo-card--stay {
  transform: translateY(-2px);
}

.gh-combo-card--crew {
  transform: translateY(4px) rotate(1.5deg);
}

.gh-combo-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 1);
  border-color: rgba(150, 235, 255, 0.95);
}

.gh-combo-media {
  margin: 0 0 0.55rem;
}

.gh-combo-image {
  width: 100%;
}

.gh-combo-caption {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

.gh-combo-name {
  margin: 0.5rem 0 0.3rem;
  font-family: var(--gh-font-display);
  font-size: 1.02rem;
  color: #f6fbff;
}

.gh-combo-list {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-combo-list li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

.gh-combo-list li + li {
  margin-top: 0.15rem;
}

/* ===========================
   SECTION 12: QUIET VOICES
   =========================== */

.gh-voices {
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 187, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(1, 4, 14, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-voices-inner {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.gh-voices-head {
  max-width: 28rem;
}

.gh-voices-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0;
  color: #f6fbff;
}

.gh-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gh-voice {
  position: relative;
  padding: 0.95rem 1rem;
  border-radius: 1.6rem;
  background: rgba(3, 14, 32, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.gh-voice-avatar {
  margin: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  overflow: hidden;
}

.gh-voice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-voice-body {
  min-width: 0;
}

.gh-voice-name {
  margin: 0 0 0.25rem;
  font-family: var(--gh-font-display);
  font-size: 0.98rem;
  color: #f6fbff;
}

.gh-voice-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

.gh-voice--text {
  grid-template-columns: minmax(0, 1fr);
}

.gh-voice-wave {
  height: 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  background: linear-gradient(
    90deg,
    rgba(79, 213, 255, 0),
    rgba(79, 213, 255, 0.9),
    rgba(79, 213, 255, 0)
  );
  box-shadow: 0 0 18px rgba(79, 213, 255, 0.9);
}

/* ===========================
   SECTION 13: PREP & DOORWAY
   =========================== */

.gh-prep {
  background:
    radial-gradient(circle at 50% 0%, rgba(95, 210, 255, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(1, 4, 15, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-prep-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.gh-prep-text {
  max-width: 26rem;
}

.gh-prep-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
  color: #f6fbff;
}

.gh-prep-copy {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-prep-list {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-prep-item {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

.gh-prep-item + .gh-prep-item {
  margin-top: 0.2rem;
}

.gh-prep-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gh-prep-card {
  position: relative;
  padding: 0.75rem;
  border-radius: 1.6rem;
  background: rgba(2, 11, 26, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
}

.gh-prep-card--door {
  transform: translateY(4px);
}

.gh-prep-card--note {
  transform: translateY(-4px);
}

.gh-prep-image {
  width: 100%;
}

.gh-prep-caption {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

/* Responsive for sections 11–13 ---------------------------------- */

@media (max-width: 960px) {
  .gh-combos-wall {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-combo-card--light,
  .gh-combo-card--stay,
  .gh-combo-card--crew {
    transform: translateY(0) rotate(0);
  }

  .gh-voices-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-prep-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-prep-visual {
    margin-top: 0.8rem;
  }
}

@media (max-width: 640px) {
  .gh-combos-title,
  .gh-voices-title,
  .gh-prep-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .gh-combos,
  .gh-voices,
  .gh-prep {
    padding-block: 3.3rem;
  }

  .gh-prep-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-prep-card--door,
  .gh-prep-card--note {
    transform: translateY(0);
  }
}
/* ===========================
   SECTION 14: SERVICE & TUNING
   =========================== */

.gh-service {
  background:
    radial-gradient(circle at 0% 0%, rgba(71, 178, 255, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(0, 2, 9, 0.98), rgba(1, 6, 18, 0.98));
}

.gh-service-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.gh-service-text {
  max-width: 27rem;
}

.gh-service-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
  color: #f6fbff;
}

.gh-service-copy {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-service-steps {
  margin: 0;
  padding-left: 1.1rem;
}

.gh-service-step {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gh-color-ink-main);
}

.gh-service-step + .gh-service-step {
  margin-top: 0.2rem;
}

.gh-service-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.gh-service-card {
  position: relative;
  padding: 0.8rem;
  border-radius: 1.6rem;
  background: rgba(3, 13, 30, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.95);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-service-card--bench {
  transform: translateY(4px);
}

.gh-service-card--notes {
  transform: translateY(-2px);
}

.gh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 1);
  border-color: rgba(150, 235, 255, 0.95);
}

.gh-service-image {
  width: 100%;
}

.gh-service-caption {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

/* ===========================
   SECTION 15: READY STRIP CTA
   =========================== */

.gh-finale {
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 187, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(1, 4, 14, 0.98), rgba(0, 0, 0, 0.98));
}

.gh-finale-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.gh-finale-text {
  max-width: 28rem;
}

.gh-finale-title {
  font-family: var(--gh-font-display);
  font-size: 1.9rem;
  margin: 0 0 0.6rem;
  color: #f6fbff;
}

.gh-finale-copy {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gh-color-ink-soft);
}

.gh-finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.gh-finale-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-color-ink-soft);
}

.gh-finale-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  gap: 0.9rem;
}

.gh-finale-card {
  position: relative;
  padding: 0.8rem;
  border-radius: 1.6rem;
  background: rgba(3, 14, 32, 0.98);
  border: 1px solid rgba(119, 210, 255, 0.6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.95);
  transition:
    transform var(--gh-transition-normal),
    box-shadow var(--gh-transition-normal),
    border-color var(--gh-transition-normal);
}

.gh-finale-card--wide {
  transform: translateY(4px);
}

.gh-finale-card--kit {
  transform: translateY(-4px);
}

.gh-finale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 1);
  border-color: rgba(150, 235, 255, 0.95);
}

.gh-finale-image {
  width: 100%;
}

.gh-finale-caption {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--gh-color-ink-muted);
}

/* Responsive: sections 14–15 ------------------------------------- */

@media (max-width: 960px) {
  .gh-service-inner,
  .gh-finale-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-finale-gallery {
    margin-top: 0.8rem;
  }
}

@media (max-width: 640px) {
  .gh-service-title,
  .gh-finale-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .gh-service,
  .gh-finale {
    padding-block: 3.3rem;
  }

  .gh-service-card--bench,
  .gh-service-card--notes,
  .gh-finale-card--wide,
  .gh-finale-card--kit {
    transform: translateY(0);
  }

  .gh-finale-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
